We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2934bac commit 9270094Copy full SHA for 9270094
servant-server/src/Servant/Server/Internal/RoutingApplication.hs
@@ -240,9 +240,9 @@ runAction :: Delayed (ExceptT ServantErr IO a)
240
-> IO r
241
runAction action respond k = runDelayed action >>= go >>= respond
242
where
243
- go (Fail e) = return $ Fail e
+ go (Fail e) = return $ Fail e
244
go (FailFatal e) = return $ FailFatal e
245
- go (Route a) = do
+ go (Route a) = do
246
e <- runExceptT a
247
case e of
248
Left err -> return . Route $ responseServantErr err
0 commit comments