Skip to content

Commit

Permalink
Merge pull request #204 from well-typed/edsko/introduce-203
Browse files Browse the repository at this point in the history
Fix regression
  • Loading branch information
edsko authored Jul 25, 2024
2 parents 23b2f35 + e341213 commit 492c351
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Network/GRPC/Client/Session.hs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ instance SupportsClientRpc rpc => InitiateSession (ClientSession rpc) where
case verifyAllIf connVerifyHeaders responseHeaders of
Left err -> throwIO $ CallSetupInvalidResponseHeaders err
Right hdrs -> do
-- TODO: <https://github.com/well-typed/grapesy/issues/203>
-- If we omit this call to 'updateConnectionMeta', no tests fail.
Connection.updateConnectionMeta conn responseHeaders
cIn <- getCompression $ requiredResponseCompression hdrs
return $ FlowStartRegular $ InboundHeaders {
inbHeaders = responseHeaders
Expand Down

0 comments on commit 492c351

Please sign in to comment.