-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[Consensus Observer] Fix new pipeline. #15803
base: main
Are you sure you want to change the base?
Conversation
⏱️ 3h 13m total CI duration on this PR
🚨 1 job on the last run was significantly faster/slower than expected
|
@@ -151,7 +151,7 @@ impl Tracker { | |||
.with_label_values(&[self.name, "work_time"]) | |||
.observe(work_time.as_secs_f64()); | |||
info!( | |||
"[Pipeline] Block {} {} {} finishes {}, waits {}, takes {}", | |||
"[Pipeline] Block {} {} {} finishes {}, waits {}ms, takes {}ms", |
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 log message appends ms
to the time values but as_secs_f64()
returns seconds. To avoid misleading logs, either convert the values to milliseconds (multiply by 1000) before logging, or remove the ms
suffix to reflect the actual units in seconds.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
94ab8c4
to
8fd8099
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
8fd8099
to
7b96f39
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
7b96f39
to
920f86f
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
920f86f
to
455a26a
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
Description
How Has This Been Tested?
Key Areas to Review
Type of Change
Which Components or Systems Does This Change Impact?
Checklist