-
Notifications
You must be signed in to change notification settings - Fork 399
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
[0.1] Cut 0.1.2 #3698
[0.1] Cut 0.1.2 #3698
Conversation
👋 Thanks for assigning @valentinewallace as a reviewer! |
model. Note that by default historical buckets are only decayed if no new | ||
datapoints have been added for a channel for two weeks (#3562). |
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.
Is this new behavior after the fix? The commit message is pretty sparse on details bb468dd
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, that was existing (but is configurable)
👋 The first review has been submitted! Do you think this PR is ready for a second reviewer? If so, click here to assign a second reviewer. |
Ah benchmark is failing |
lightning-liquidity/Cargo.toml
Outdated
@@ -38,6 +38,7 @@ lightning-background-processor = { version = "0.1.0", path = "../lightning-backg | |||
|
|||
proptest = "1.0.0" | |||
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] } | |||
parking_lot = { version = "0.12", default-features = false } |
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.
If we're willing to take on that dependency, why not just drop all the different cases and use parking_lot
types everywhere? IIRC it would have additional benefits, including that it offers RwLockReadGuard
variants that could potentially be held across await
boundaries?
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.
I'm not super happy taking it as a dependency, no, just a dev one.
it offers RwLockReadGuard variants that could potentially be held across await boundaries?
We shouldn't be doing that to begin with...
2bc944c
to
c0866f5
Compare
c0866f5
to
4b90166
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 0.1 #3698 +/- ##
==========================================
- Coverage 88.41% 88.39% -0.02%
==========================================
Files 149 149
Lines 113859 113859
Branches 113859 113859
==========================================
- Hits 100663 100648 -15
- Misses 10744 10753 +9
- Partials 2452 2458 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
LGMT
Depends on #3697 for now