-
Notifications
You must be signed in to change notification settings - Fork 2
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
Change OpLogFilter::agent_id
to be optional
#826
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #826 +/- ##
==========================================
+ Coverage 76.98% 77.45% +0.46%
==========================================
Files 31 32 +1
Lines 24875 25362 +487
==========================================
+ Hits 19151 19643 +492
+ Misses 5724 5719 -5 ☔ View full report in Codecov by Sentry. |
880ab3d
to
3c66f2e
Compare
3c66f2e
to
d173f83
Compare
OpLogFilter
development directionOpLogFilter::agent_id
to be optional
6b211c0
to
be77ab4
Compare
be77ab4
to
fe5bc59
Compare
src/storage/migration.rs
Outdated
@@ -216,6 +221,20 @@ fn migrate_0_19_to_0_21_0(db: &Database) -> Result<()> { | |||
Ok(()) | |||
} | |||
|
|||
#[allow(clippy::too_many_lines)] |
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 please remove the #[allow(clippy::too_many_lines)]
?
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.
The change has been completed.
Thank you.
Close #724 The RocksDB keys in the `oplog` are currently in the form agent_id-0-timestamp. This change modifies the keys to the form timestamp-0-sequence.
fe5bc59
to
4bef708
Compare
Close #724
The RocksDB keys in the
oplog
are currently in the form agent_id-0-timestamp. This change modifies the keys to the form timestamp-0-sequence.