Skip to content

Commit

Permalink
fix: Do not warn on mismatched cli/sandbox version (#1894)
Browse files Browse the repository at this point in the history
Due to #1892, the check implemented in #1849 always fails when run
against the Sandbox docker image. This PR disables it temporarily.
  • Loading branch information
spalladino authored Aug 30, 2023
1 parent 193b5c6 commit a44a0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/aztec-cli/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function createCompatibleClient(rpcUrl: string, logger: DebugLogger
await checkServerVersion(client, expectedVersionRange, logger);
} catch (err) {
if (err instanceof VersionMismatchError) {
logger.warn(err.message);
logger.debug(err.message);
} else {
throw err;
}
Expand Down

0 comments on commit a44a0f6

Please sign in to comment.