Skip to content

Commit

Permalink
Merge pull request #1410 from input-output-hk/lc/disable-mithril-preview
Browse files Browse the repository at this point in the history
Disable mithril-client testing on Preview
  • Loading branch information
locallycompact committed May 2, 2024
2 parents fbffd68 + e52df31 commit 24c6bd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hydra-cluster/src/Hydra/Cluster/Mithril.hs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ data MithrilLog
-- directory.
downloadLatestSnapshotTo :: Tracer IO MithrilLog -> KnownNetwork -> FilePath -> IO ()
downloadLatestSnapshotTo tracer network directory = do
when (network == Sanchonet) $
pendingWith "Mithril deployment of testing-sanchonet requires mithril-client 0.7.8, which is not yet released and does not work on other networks."
when (network == Sanchonet || network == Preview) $
pendingWith "Mithril deployment of testing-sanchonet requires mithril-client 0.8.0, which is not yet released and does not work on other networks."

traceWith tracer StartSnapshotDownload{network, directory}
genesisKey <- parseRequest genesisKeyURL >>= httpBS <&> getResponseBody
Expand Down

0 comments on commit 24c6bd8

Please sign in to comment.