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-projects-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-projects-with-roles-service.lisp')
| -rw-r--r-- | lisp/service/octopus-projects-with-roles-service.lisp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/service/octopus-projects-with-roles-service.lisp b/lisp/service/octopus-projects-with-roles-service.lisp index 627f346..ee55782 100644 --- a/lisp/service/octopus-projects-with-roles-service.lisp +++ b/lisp/service/octopus-projects-with-roles-service.lisp @@ -38,9 +38,7 @@ (with-noauth (instance octopus-projects-with-roles/results-service) (cl-fad:with-output-to-temporary-file (f :template "/tmp/snow/temp-%") (get-octopus-projects-with-roles (make-instance 'octopus-process-step - :target-roles (remove-if (lambda (x) - (org-ckons-core::null-or-empty-p x)) - (cl-ppcre:split "[, ]" roles)) + :target-roles (split-text-input roles) :stdout (pathname f))) (setf (stdout instance) (uiop:native-namestring (pathname f)))) (setf (session-value :octopus-roles) roles))) |
