Skip to content

Commit 64bc182

Browse files
authored
extproc: uses consistent default session encryption key (#1588)
**Description** This change the default encryption key used by MCP proxy to the same value as the helm's default setting. Signed-off-by: Takeshi Yoneda <[email protected]>
1 parent b53d74d commit 64bc182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/extproc/mainlib/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func parseAndValidateFlags(args []string) (extProcFlags, error) {
112112
fs.StringVar(&flags.mcpAddr, "mcpAddr", "", "the address (TCP or UDS) for the MCP proxy server, such as :1063 or unix:///tmp/ext_proc.sock. Optional.")
113113
fs.StringVar(&flags.mcpSessionEncryptionSeed,
114114
"mcpSessionEncryptionSeed",
115-
"mcp",
115+
"default-insecure-seed",
116116
"Arbitrary string seed used to derive the MCP session encryption key. "+
117117
"Do not include commas as they are used as separators. You can optionally pass \"fallback\" seed after the first one to allow for key rotation. "+
118118
"For example: \"new-seed,old-seed-for-fallback\". The fallback seed is only used for decryption.",

0 commit comments

Comments
 (0)