Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
fix: Pathological iteration in name resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
cdata committed Oct 30, 2023
1 parent 392ee58 commit f61f740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/report_test_flakes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
body = "No test results to analyze. Maybe none of the test runs passed?";
} else {
let table = "\n\n| status | platform | features | toolchain |\n|---|---|---|---|\n";
let table = "\n\n| status | platform | features | toolchain |\n|:---:|---|---|---|\n";
const flakeSummaries = [];
Expand Down
2 changes: 1 addition & 1 deletion rust/noosphere-gateway/src/handlers/v0alpha2/push.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ where

if let Err(error) = self.name_system_tx.send(NameSystemJob::ResolveSince {
context: self.sphere_context.clone(),
since: push_body.local_base,
since: push_body.counterpart_tip,
}) {
warn!("Failed to request name system resolutions: {}", error);
};
Expand Down

0 comments on commit f61f740

Please sign in to comment.