-
Notifications
You must be signed in to change notification settings - Fork 30
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
Fix issues in e2e test #442
Merged
Merged
Changes from 8 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6d5c9f2
Fix issues in e2e test
kevinliu24 00b0170
Increase timeout for cluster wait
kevinliu24 1488b9c
Remove unneeded comments
kevinliu24 2379e22
Remove unneeded blank line
kevinliu24 0624d6d
Merge remote-tracking branch 'origin/master' into fix_e2e_tests
kevinliu24 ff4b689
Merge remote-tracking branch 'origin/master' into fix_e2e_tests
kevinliu24 86cd3cb
Merge remote-tracking branch 'origin/master' into fix_e2e_tests
kevinliu24 448718d
Add nebula backup e2e tests
kevinliu24 6e36261
Merge remote-tracking branch 'origin/master' into fix_e2e_tests
kevinliu24 c3f1899
Fix pull request according to review and add cron backup tests
kevinliu24 47ca53f
add env values to github action e2e and delete created nr after each …
kevinliu24 7a4c104
Fix review comments on nebula backup and restore tests.
kevinliu24 662dd71
leave annotation.AnnLastReplicas alone
kevinliu24 138352d
Fix cronbackup and env issue
kevinliu24 f4981b0
Merge remote-tracking branch 'origin/master' into fix_e2e_tests
kevinliu24 b6aed4b
Fix timeout
kevinliu24 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
why remove this annotation
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.
@MegaByte875 I removed this check to fix the Graphd is stuck in "Scale In" though the nebula cluster is ready issue. This is due to new_replicas not equal to last_replicas which is because last_replicas wasn't updated to the correct value. So we shouldn't ignore the annotation AnnLastReplicas when checking equality so we can perform an update.
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.
According to @MegaByte875
k == annotation.AnnLastReplicas
was added to fix a bug. Will leave alone for know. @MegaByte875 will look into why the replicas are not equal.