From fc167eda88ae53a0c115b3eed73438538a079c5f Mon Sep 17 00:00:00 2001 From: Phil Renaud Date: Fri, 2 Dec 2022 10:58:58 -0500 Subject: [PATCH] Exec does not seem to have been updated when we added namespaces explicitly --- ui/app/controllers/exec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/app/controllers/exec.js b/ui/app/controllers/exec.js index 0049cc1e2391..040f1cf1cf43 100644 --- a/ui/app/controllers/exec.js +++ b/ui/app/controllers/exec.js @@ -17,7 +17,10 @@ export default class ExecController extends Controller { @service system; @service token; - queryParams = ['allocation']; + queryParams = [ + 'allocation', + 'namespace' + ]; @localStorageProperty('nomadExecCommand', '/bin/bash') command; socketOpen = false;