-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
CDK s3-destinations: fixes for s3 connector compilation #36868
Conversation
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. |
7a07bb3
to
d3ef2dd
Compare
@@ -43,6 +43,7 @@ class DataArgumentsProvider : ArgumentsProvider { | |||
} | |||
|
|||
companion object { | |||
@JvmField |
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.
I thought we wanted to avoid jvmfield? (from https://www.notion.so/Converting-the-Java-CDK-to-Kotlin-a29997b7bc7b40c689588e6ce4b1bb66)
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.
To facilitate same pattern like ClassName.CONSTANT_STATIC_FIELD
. without this it'll look like ClassName.Companion.getCONSTANT_STATIC_FIELD()
d3ef2dd
to
9f7a953
Compare
@@ -429,6 +429,7 @@ abstract class DestinationAcceptanceTest { | |||
val configuredCatalog = CatalogHelpers.toDefaultConfiguredCatalog(catalog) | |||
val messages: List<io.airbyte.protocol.models.v0.AirbyteMessage> = | |||
MoreResources.readResource(messagesFilename) | |||
.trim() |
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.
There is a difference in String.java#lines() vs Kotlin's lines() which is emitting an extra empty string if there is \n at the end of file.
49efc12
to
38192b8
Compare
38192b8
to
a3a67e2
Compare
/publish-java-cdk
|
No description provided.