diff options
| author | Carlos Konstanski <carlos.konstanski@olo.com> | 2025-12-18 16:01:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-18 16:01:49 -0700 |
| commit | b040de7070e9ece5e1ffe73bd7d7ae6c6310cb7c (patch) | |
| tree | b7cf7de15b45846506901048f6c4953699bc13c5 /lisp/service/octopus-projects-with-roles-service.lisp | |
| parent | e7268f15f90251933edb07df2366bc40e1bc1fb5 (diff) | |
| parent | 16e45f92cc92bc1e61659be66567131de18a9a96 (diff) | |
Merge pull request #11 from ololabs/inf-18465-create-an-unhealthy-targetgroup-report
[INF-18465] Create an unhealthy targetgroup report
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, 3 insertions, 1 deletions
diff --git a/lisp/service/octopus-projects-with-roles-service.lisp b/lisp/service/octopus-projects-with-roles-service.lisp index c3d9a67..627f346 100644 --- a/lisp/service/octopus-projects-with-roles-service.lisp +++ b/lisp/service/octopus-projects-with-roles-service.lisp @@ -38,7 +38,9 @@ (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 (remove-if (lambda (x) + (org-ckons-core::null-or-empty-p x)) + (cl-ppcre:split "[, ]" roles)) :stdout (pathname f))) (setf (stdout instance) (uiop:native-namestring (pathname f)))) (setf (session-value :octopus-roles) roles))) |
