-
Notifications
You must be signed in to change notification settings - Fork 16
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
Integration tests clean up #342
Integration tests clean up #342
Conversation
connectorConfig.put(INPUT_FORMAT_KEY, parquet.getValue()); | ||
connectorConfig.put(SCHEMA_REGISTRY_URL, schemaRegistry.getSchemaRegistryUrl()); | ||
connectorConfig.put("value.converter", "io.confluent.connect.avro.AvroConverter"); | ||
connectorConfig.put(valueConverterSchemaRegistryUrl, schemaRegistry.getSchemaRegistryUrl()); |
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.
connectorConfig.put(valueConverterSchemaRegistryUrl, schemaRegistry.getSchemaRegistryUrl()); | |
connectorConfig.put("value.converter.schema.registry.url", schemaRegistry.getSchemaRegistryUrl()); |
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.
or VALUE_CONVERTER_SCHEMA_REGISTRY_URL
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.
Huh, thanks, missed that. Good catch!
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.
Fixed.
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.
Looks good, just one minor comment
7152f73
to
5a13efb
Compare
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.
LGTM, thanks.
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.
LGTM
Some clean up of integration tests + fixes for comments that were not addressed in previous PRs