cli: demote version mismatch to warning for now (#35548)
This commit is contained in:
parent
0bba8c780a
commit
41d11a8a89
2 changed files with 3 additions and 3 deletions
|
|
@ -31,8 +31,8 @@ const attach = Effect.fn("cli.daemon.attach")(function* (options: AttachOptions)
|
||||||
catch: (cause) => attachError(options, cause),
|
catch: (cause) => attachError(options, cause),
|
||||||
})
|
})
|
||||||
if (health.version !== InstallationVersion)
|
if (health.version !== InstallationVersion)
|
||||||
return yield* Effect.fail(
|
process.stderr.write(
|
||||||
new Error(`Server at ${options.url} has version ${health.version}; this client requires ${InstallationVersion}`),
|
`Warning: Server at ${options.url} has version ${health.version}; this client is ${InstallationVersion}. Continuing anyway.\n`,
|
||||||
)
|
)
|
||||||
return transport
|
return transport
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@ describe("mini command", () => {
|
||||||
expect(JSON.parse(result.stdout)).toMatchObject({
|
expect(JSON.parse(result.stdout)).toMatchObject({
|
||||||
type: "error",
|
type: "error",
|
||||||
sessionID: "",
|
sessionID: "",
|
||||||
error: { type: "unknown", message: expect.stringContaining("requires") },
|
error: { type: "unknown", message: "Failed to resolve server directory" },
|
||||||
})
|
})
|
||||||
} finally {
|
} finally {
|
||||||
server.stop(true)
|
server.stop(true)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue