-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix kotlin warnings in azure-destination, datastore-{bigquery,mongo,postgres} CDK submodules #37479
Conversation
…ostgres} CDK submodules
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @stephane-airbyte and the rest of your teammates on Graphite |
@@ -47,16 +47,18 @@ abstract class AzureBlobStorageStreamCopier( | |||
) | |||
protected val azureStagingFiles: MutableSet<String> = HashSet() | |||
|
|||
@get:VisibleForTesting val tmpTableName: String = nameTransformer.getTmpTableName(streamName) | |||
@Suppress("DEPRECATION") | |||
@get:VisibleForTesting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious if these annotations are still relevant in kotlin. I know it's for the benefit of the findbugs linter, but perhaps making these internal
instead are the way to go?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
haven't looked at that. Was focusing on kotlin warnings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
those are all over the place. Will need another pass for that :(
.setType(StandardSQLTypeName.STRING) | ||
.build() | ||
} | ||
.collect(Collectors.toList()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
params.map { ... }.toList()
…ostgres} CDK submodules (#37479) cleaning kotlin warnings in some CDK submodules
cleaning kotlin warnings in some CDK submodules