-
Notifications
You must be signed in to change notification settings - Fork 439
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
Move load_timeline_metadata into separate function #9080
Conversation
b9be500
to
b3d3941
Compare
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.
per the threads.
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.
It should work now just fine. It took me a while to understand why did you make it an fn
instead of async fn
.
5020 tests run: 4856 passed, 0 failed, 164 skipped (full report)Flaky tests (6)Postgres 17
Postgres 15
Code coverage* (full report)
* collected from Rust tests only The comment gets automatically updated with the latest test results
89872e7 at 2024-09-21T12:47:59.449Z :recycle: |
Only the future is instrumented with the timeline_id
test failure is legit:
made commit to fix it. |
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.
move assert into future
Aah yes, makes sense.
I don't understand this.
This is more normal. |
Moves the per-timeline code to load timeline metadata into a new dedicated function called
load_timeline_metadata
. The oldload_timeline_metadata
becomesload_timelines_metadata
.Split out of #8907
Part of #8088