increase HTTP timeout for initial post publication to 60 seconds
After a while, experiments made some publication events time-out. Increasing the timeout just in case, although it i likely to be a mere symptom but the core fault.
This commit is contained in:
parent
d8b2186016
commit
d7355aa04d
|
@ -40,7 +40,7 @@ executeSchedule :: Int -- ^ speedup factor
|
||||||
-> IO ()
|
-> IO ()
|
||||||
executeSchedule speedup events = do
|
executeSchedule speedup events = do
|
||||||
-- initialise HTTP manager
|
-- initialise HTTP manager
|
||||||
httpMan <- HTTP.newManager HTTP.defaultManagerSettings
|
httpMan <- HTTP.newManager $ HTTP.defaultManagerSettings { HTTP.managerResponseTimeout = HTTP.responseTimeoutMicro 60000000 }
|
||||||
forM_ events $ \(delay, tag, (pubHost, pubPort)) -> do
|
forM_ events $ \(delay, tag, (pubHost, pubPort)) -> do
|
||||||
_ <- forkIO $
|
_ <- forkIO $
|
||||||
clientPublishPost httpMan pubHost pubPort ("foobar #" <> tag)
|
clientPublishPost httpMan pubHost pubPort ("foobar #" <> tag)
|
||||||
|
|
Loading…
Reference in a new issue