chore(connector): disable connector flag and WS server by default (#16139)

Fixes #16101
This commit is contained in:
Jonathan Rainville 2024-08-19 10:59:36 -04:00 committed by GitHub
parent ac4990a9fa
commit 7e623e0a44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import os
const DEFAULT_FLAG_DAPPS_ENABLED = false
const DEFAULT_FLAG_SWAP_ENABLED = true
const DEFAULT_FLAG_CONNECTOR_ENABLED = true
const DEFAULT_FLAG_CONNECTOR_ENABLED = false
proc boolToEnv(defaultValue: bool): string =
return if defaultValue: "1" else: "0"

View File

@ -265,12 +265,12 @@ type StatusDesktopConfig = object
name: "USE_MOCKED_KEYCARD"
abbr: "use-mocked-keycard" .}: bool
httpApiEnabled* {.
defaultValue: true
defaultValue: false
desc: "Enable HTTP RPC API"
name: "HTTP_API"
abbr: "http-api" .}: bool
wsApiEnabled* {.
defaultValue: true
defaultValue: false
desc: "Enable WebSocket RPC API"
name: "WS_API"
abbr: "ws-api" .}: bool