summaryrefslogtreecommitdiff
path: root/lisp/service/rest-service.lisp
diff options
context:
space:
mode:
authorCarlos Konstanski <carlos.konstanski@olo.com>2026-01-08 07:52:36 -0700
committerGitHub <noreply@github.com>2026-01-08 07:52:36 -0700
commit9ad155313346f4e79d2490b4abc286c5ac9e20f8 (patch)
tree10ab821dc7bb749ef5fa41cfbeca18d40e47d152 /lisp/service/rest-service.lisp
parentdb5241f5f05209ca23b380eff9d52bf653bd5b29 (diff)
parentda4f53c33fa1faf267a536bc0a2c5a8dd2871c5e (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/rest-service.lisp')
-rw-r--r--lisp/service/rest-service.lisp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/service/rest-service.lisp b/lisp/service/rest-service.lisp
index a060863..7941630 100644
--- a/lisp/service/rest-service.lisp
+++ b/lisp/service/rest-service.lisp
@@ -34,3 +34,6 @@
(defun type-to-path (rest-type)
(concatenate 'string "/" (ppcre:regex-replace "-service" (string-downcase (type-of rest-type)) "/")))
+
+(defun split-text-input (input)
+ (remove-if (lambda (x) (org-ckons-core::null-or-empty-p x)) (cl-ppcre:split "[, ]" input)))