From 87760f5ee43ed49df897a8eff35995dc29ab48fc Mon Sep 17 00:00:00 2001 From: GitBluub Date: Thu, 3 Mar 2022 17:00:01 +0100 Subject: [PATCH] rm: debug print --- api/src/Api/Pipeline.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/src/Api/Pipeline.hs b/api/src/Api/Pipeline.hs index 457e4fc..a5eba94 100644 --- a/api/src/Api/Pipeline.hs +++ b/api/src/Api/Pipeline.hs @@ -136,12 +136,10 @@ informWorker method id = do url <- envAsString "WORKER_URL" "worker/" request <- parseRequest url - print request response <- httpBS $ setRequestMethod method $ setRequestPath (encodeUtf8 (pack $ "/workflow/" <> show id)) request - print response return ()