Use explicit server URL for migration CLI calls
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
Codex
2026-04-29 14:43:48 +08:00
parent cff631d0c5
commit 17bfa25f73

View File

@@ -93,6 +93,8 @@ export function buildSpacetimeCallArgs(options, procedureName, input) {
args.push('call');
if (options.server) {
args.push('-s', options.server);
} else if (options.serverUrl) {
args.push('-s', options.serverUrl);
}
args.push(...options.passthrough);
args.push(options.database, procedureName, JSON.stringify(input), '-y');