forked from GitHub/gf-core
Fix type error in fastcgi server.
I forgot to fix this after I copied the modified FastCGIUtils from morpho-server.
This commit is contained in:
@@ -25,7 +25,7 @@ main = do initFastCGI
|
||||
loopFastCGI (handleErrors (handleCGIErrors (fcgiMain r)))
|
||||
|
||||
fcgiMain :: DataRef PGF -> CGI CGIResult
|
||||
fcgiMain ref = getData PGF.readPGF ref grammarFile >>= cgiMain
|
||||
fcgiMain ref = getData (liftIO . PGF.readPGF) ref grammarFile >>= cgiMain
|
||||
|
||||
cgiMain :: PGF -> CGI CGIResult
|
||||
cgiMain pgf =
|
||||
|
||||
Reference in New Issue
Block a user