-
Notifications
You must be signed in to change notification settings - Fork 168
Replace describeStream with listStream #164
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
Conversation
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.
Thanks for the fix.
Would you mind to reconsider changes to the classes where you only fix a Copyright year?
We don't change that date until we really do some changes in the class.
Thanks for understanding!
done! |
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.
Too many not feature related code reformatting...
Please, consider in the future to concentrate just on the issue-related fixes.
Or you can add one commit for the real fix and another for code style reformatting to make it easier to review.
Please, address my two concerns for now and I'll merger this shortly.
Thanks
|
||
/** | ||
* Sets the interval between 2 checkpoints. Only used when checkpointMode is periodic. | ||
* |
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.
No blank lines in method JavaDoc, please: https://github.com/spring-projects/spring-framework/wiki/Code-Style#javadoc-formatting
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.
Done.
|
||
if (retryCount > this.describeStreamRetries) { | ||
throw new IllegalStateException( | ||
"Kinesis could not read shards from stream with name:[" + stream + "] "); |
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.
Need space between :
and [
.
Although do we need a colon at all...
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.
Done
- revert unnecassary formatting changes
See kinesis issue spring-cloud/spring-cloud-stream-binder-aws-kinesis#134
fixes #163