diff options
| author | Carlos Konstanski <carlos.konstanski@olo.com> | 2026-01-08 07:52:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-08 07:52:36 -0700 |
| commit | 9ad155313346f4e79d2490b4abc286c5ac9e20f8 (patch) | |
| tree | 10ab821dc7bb749ef5fa41cfbeca18d40e47d152 /lisp/service/octopus-environments-with-roles-service.lisp | |
| parent | db5241f5f05209ca23b380eff9d52bf653bd5b29 (diff) | |
| parent | da4f53c33fa1faf267a536bc0a2c5a8dd2871c5e (diff) | |
Merge pull request #16 from ololabs/inf-18492-automate-queue-retry-and-log-streaming-retry-octopus-fix
[INF-18492] Automate Queue Retry and Log Streaming Retry octopus fix
Diffstat (limited to 'lisp/service/octopus-environments-with-roles-service.lisp')
| -rw-r--r-- | lisp/service/octopus-environments-with-roles-service.lisp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/service/octopus-environments-with-roles-service.lisp b/lisp/service/octopus-environments-with-roles-service.lisp index 8cd494e..588d32d 100644 --- a/lisp/service/octopus-environments-with-roles-service.lisp +++ b/lisp/service/octopus-environments-with-roles-service.lisp @@ -40,8 +40,6 @@ (with-octopus (octopus) (let ((environments (get-octopus-environments-with-roles octopus :ode-only-p (string= "true" ode_only_p) - :roles (remove-if (lambda (x) - (org-ckons-core::null-or-empty-p x)) - (cl-ppcre:split "[, ]" roles))))) + :roles (split-text-input roles)))) (setf (results instance) environments) (setf (session-value :octopus-roles) roles))))) |
