-
Notifications
You must be signed in to change notification settings - Fork 22
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
Add SKR test for creating more than 10 bindings #1283
Add SKR test for creating more than 10 bindings #1283
Conversation
Add one of following labels |
062312a
to
ed4b30e
Compare
/kind enhancement |
/kind enhancement |
errorOccurred = false; | ||
count = 0; | ||
while (!errorOccurred && count < 13) { |
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.
We don't know how many bindings have been created in the previous test before we start this one.
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.
Could you add such comment in the code?
/hold |
errorOccurred = false; | ||
count = 0; | ||
while (!errorOccurred && count < 13) { | ||
bindingID = Math.random().toString(36).substring(2, 18); |
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.
Could we replace it with uuid generation?
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 problem, I will replace it also in the existing parts of code.
/unhold |
Description
Changes proposed in this pull request:
Related issue(s)
See #1204