mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-24 23:51:48 +00:00
After v2026.3.24 introduced a gateway.mode guard, startup fails on Windows (and other platforms) when the config file exists but doesn't contain an explicit gateway.mode value. This happens after 'openclaw onboard' writes a minimal config without gateway settings. Default to 'local' when the mode is unset, restoring pre-3.24 behavior where the gateway started without requiring an explicit mode. Fixes #54801 Co-authored-by: Brad Groux <bradgroux@users.noreply.github.com>
This commit is contained in:
@@ -24,8 +24,8 @@ import { createSubsystemLogger } from "../../logging/subsystem.js";
|
||||
import { defaultRuntime } from "../../runtime.js";
|
||||
import { formatCliCommand } from "../command-format.js";
|
||||
import { inheritOptionFromParent } from "../command-options.js";
|
||||
import { withProgress } from "../progress.js";
|
||||
import { forceFreePortAndWait, waitForPortBindable } from "../ports.js";
|
||||
import { withProgress } from "../progress.js";
|
||||
import { ensureDevGatewayConfig } from "./dev.js";
|
||||
import { runGatewayLoop } from "./run-loop.js";
|
||||
import {
|
||||
@@ -348,7 +348,12 @@ async function runGatewayCommand(opts: GatewayRunOpts) {
|
||||
const configExists = snapshot?.exists ?? fs.existsSync(CONFIG_PATH);
|
||||
const configAuditPath = path.join(resolveStateDir(process.env), "logs", "config-audit.jsonl");
|
||||
const effectiveCfg = snapshot?.valid ? snapshot.config : cfg;
|
||||
const mode = effectiveCfg.gateway?.mode;
|
||||
// Default to "local" when gateway.mode is unset. Prior to v2026.3.24 the
|
||||
// gateway started without an explicit mode; the guard added in 3.24
|
||||
// regressed startup on Windows (and other platforms) when the config file
|
||||
// exists but doesn't contain gateway.mode — e.g. after `openclaw onboard`
|
||||
// writes a minimal config. (#54801)
|
||||
const mode = effectiveCfg.gateway?.mode ?? "local";
|
||||
if (!opts.allowUnconfigured && mode !== "local") {
|
||||
if (!configExists) {
|
||||
defaultRuntime.error(
|
||||
|
||||
Reference in New Issue
Block a user