[review] remove traceStack call

parent eb095af2
Pipeline #6553 failed with stages
in 5 minutes and 3 seconds
...@@ -41,7 +41,6 @@ import Control.Concurrent.STM (atomically) ...@@ -41,7 +41,6 @@ import Control.Concurrent.STM (atomically)
import Control.Concurrent.STM.TVar (readTVarIO, newTVarIO, writeTVar) import Control.Concurrent.STM.TVar (readTVarIO, newTVarIO, writeTVar)
import Control.Exception.Safe (catches, Handler(..), throwIO, SomeException, Exception) import Control.Exception.Safe (catches, Handler(..), throwIO, SomeException, Exception)
import Control.Monad (forever, void, when) import Control.Monad (forever, void, when)
import Debug.Trace (traceStack)
import System.Timeout qualified as Timeout import System.Timeout qualified as Timeout
...@@ -223,9 +222,7 @@ handleJobError _state@(State { .. }) brokerMessage = do ...@@ -223,9 +222,7 @@ handleJobError _state@(State { .. }) brokerMessage = do
void $ sendJob broker queueName (job { metadata = mdata { readCount = readCt + 1 } }) void $ sendJob broker queueName (job { metadata = mdata { readCount = readCt + 1 } })
handleUnknownError :: State b a -> SomeException -> IO () handleUnknownError :: State b a -> SomeException -> IO ()
handleUnknownError state err = do handleUnknownError state err = putStrLn $ formatStr state $ "unknown error: " <> show err
let _ = traceStack ("unknown error: " <> show err)
putStrLn $ formatStr state $ "unknown error: " <> show err
sendJob :: (HasWorkerBroker b a) => Broker b (Job a) -> Queue -> Job a -> IO (MessageId b) sendJob :: (HasWorkerBroker b a) => Broker b (Job a) -> Queue -> Job a -> IO (MessageId b)
sendJob broker queueName job = do sendJob broker queueName job = do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment