-
Notifications
You must be signed in to change notification settings - Fork 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
Fixes #31 - errors during kafka deserializer (passing) test execution #25
Conversation
@baskaranz can you please squash the commits and also create an issue for this PR? |
I'd be interested to know why this fixed the warnings? Also for reference, I think you need to link to the issue in a comment, not the title for it to connect them properly. eg: #31 |
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.
Can you make sure you are using the google-java-format plugin and reorganise imports and format the code?
you seem to have different import patterns. If you are using the google-java-format plugin it would also keep ContextConfurgation at the bottom.
@tims I've used google-java-format plugin and it didn't reformat my code to keep ContextConfiguration at the bottom. Coming to the fix, I've seen multiple issue raised even with spring and other forums about the same issue, which stated that it fails their jenkins build etc., (assuming we would face the same as well) Here's one spring-projects/spring-kafka#194 I've used |
Make sure it's enabled for your project, you need turn it on, not just install it. |
@tims Intelij was smart enough to suggest me when I installed the plugin to enable for my projects and I did, not sure why it doesn't reorganize the code when it reformats :) |
Sorry to keep harping on about it, but formatting changes in every commit will continue to drive us nuts. I've found I need to enable for every project separately, it's not global, so you may have enabled for another project? Can you check preferences -> other settings -> google-java-format settings Then run cmd-alt-shift-L in the file (assuming on osx) |
Should we make an issue for creating a |
yep I'll make one |
@tims change request addressed |
@baskaranz you mind squashing this into atomic commits? Actually, with Prow we should be able to auto-squash in the future, but for now it is manual. |
3a23ddf
to
98b1cd3
Compare
/retest |
The test wont pass until a rebase is done on current master. Also, @pradithya can you please review this instead of me? You have more familiarity. |
59cb109
to
d1fe42a
Compare
@baskaranz Is it possible to remove dependency to |
@baskaranz @tims the import ordering is not handled by google-java-format plugin, you'll need to import google code style for intelliJ to your code style settings. |
d1fe42a
to
1e2177e
Compare
/lgtm @pradithya since org.springframework.kafka snuck in with a previous pull request, I'm okay if we make |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pradithya The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Closes KE-712, KE-738 Deploys an IaC environment with Feast and Databricks, and runs e2e tests with Redis (using DirectRunner for now, as tests with Databricks runner depend on PR feast-dev#19 and currently fail with timeout issues) Deletes infra/charts/feast/charts/feast-serving/templates/configmap-store.yaml (To be reviewed)Closes KE-712, KE-738 Deploys an IaC environment with Feast and Databricks, and runs e2e tests with Redis (using DirectRunner for now, as tests with Databricks runner depend on PR feast-dev#19 and currently fail with timeout issues) Deletes infra/charts/feast/charts/feast-serving/templates/configmap-store.yaml
Added permission assert check for registry server, offline server, online server functions
This fixes the error being thrown by the test, which breaks the build, although the test passes.