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

Commit

Permalink
Downgrade "Could not parse daemon_version" log to debug
Browse files Browse the repository at this point in the history
Parsing daemon_version can fail with legacy clients with version: "<=0.4.7".
  • Loading branch information
klochowicz authored and bonomat committed Jul 23, 2022
1 parent 7e6716b commit 707fa35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion maker/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,8 @@ impl Actor {
can_remove_heartbeats.matches(&daemon_semver)
}
Err(e) => {
tracing::error!("{e:#}");
// parsing can fail with legacy clients with version: "<=0.4.7"
tracing::debug!("{e:#}");
false
}
};
Expand Down

0 comments on commit 707fa35

Please sign in to comment.