Skip to content

Commit

Permalink
TLS defaultSupported from def change in test suite
Browse files Browse the repository at this point in the history
Change-Id: I3823d30328eda4c47929dd6f247fd3fb9b0ba115
  • Loading branch information
chessai committed Oct 29, 2024
1 parent 23e84c4 commit 523bbfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Chainweb/Test/Utils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ import Data.Bifunctor hiding (second)
import qualified Data.ByteString as B
import qualified Data.ByteString.Lazy as BL
import Data.Coerce (coerce)
import Data.Default (def)
import Data.Foldable
import qualified Data.HashMap.Strict as HashMap
import Data.IORef
Expand All @@ -157,6 +156,7 @@ import Network.Socket (close)
import qualified Network.Wai as W
import qualified Network.Wai.Handler.Warp as W
import Network.Wai.Handler.WarpTLS as W (runTLSSocket)
import Network.TLS.QUIC qualified as TLS

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.8.2, 3.12, macos-latest, true)

Could not load module ‘Network.TLS.QUIC’.

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.8.2, 3.12, macos-latest, true)

Could not load module ‘Network.TLS.QUIC’.

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.6.6, 3.12, ubuntu-22.04, false)

Could not load module ‘Network.TLS.QUIC’

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.6.6, 3.12, ubuntu-22.04, false)

Could not load module ‘Network.TLS.QUIC’

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.8.2, 3.12, ubuntu-22.04, false)

Could not load module ‘Network.TLS.QUIC’.

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.10.1, 3.12, ubuntu-22.04, false)

Could not load module ‘Network.TLS.QUIC’.

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.8.2, 3.12, ubuntu-22.04, true)

Could not load module ‘Network.TLS.QUIC’.

Check failure on line 159 in test/Chainweb/Test/Utils.hs

View workflow job for this annotation

GitHub Actions / Build (9.8.2, 3.12, ubuntu-22.04, true)

Could not load module ‘Network.TLS.QUIC’.

import Numeric.Natural

Expand Down Expand Up @@ -1143,7 +1143,7 @@ getClientEnv :: BaseUrl -> IO ClientEnv
getClientEnv url = flip mkClientEnv url <$> HTTP.newTlsManagerWith mgrSettings
where
mgrSettings = HTTP.mkManagerSettings
(HTTP.TLSSettingsSimple True False False def)
(HTTP.TLSSettingsSimple True False False TLS.defaultSupported)
Nothing

-- | Backoff up to a constant 250ms, limiting to ~40s
Expand Down

0 comments on commit 523bbfe

Please sign in to comment.