chore(connector): disable connector flag and WS server by default (#16139)
Fixes #16101
This commit is contained in:
parent
ac4990a9fa
commit
7e623e0a44
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue