-
Notifications
You must be signed in to change notification settings - Fork 31
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: Fix intermittent failing compaction job test in functional test #1244
Conversation
/// to the remote secondary. Only the latest commit entry of the key is retained. | ||
/// Uncommitted entries that are duplicates will not be removed/compacted. | ||
Future<void> startCompactionJob( | ||
{int commitLogCompactionTimeIntervalInMins = 11}); |
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.
Please make this parameter a Duration
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.
Sure Gary,
The functional and e2e tests fail because monitor fails to start. Attaching the log snippet below. Debugging the issue.
|
Found the root cause of the issue: When #0 Metadata.toJson (package:at_commons/src/keystore/at_key.dart:687:60) |
All tests passed after retracting at_commons 4.0.2 version. |
- What I did
- How I did it
startCompactionJob
andstopCompactionJob
in AtClientSpec.stopCompactionJob
method.- How to verify it