File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit/Conway/Config
cardano-db-sync/src/Cardano Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ configJsonbInSchemaTrue ioManager metadata = do
23
23
where
24
24
action = \ _interpreter _mockServer dbSync -> do
25
25
startDBSync dbSync
26
- threadDelay 2_000_000
26
+ threadDelay 7_000_000
27
27
assertEqQuery
28
28
dbSync
29
29
DB. queryJsonbInSchemaExists
@@ -52,7 +52,7 @@ configJsonbInSchemaFalse ioManager metadata = do
52
52
where
53
53
action = \ _interpreter _mockServer dbSync -> do
54
54
startDBSync dbSync
55
- threadDelay 2_000_000
55
+ threadDelay 7_000_000
56
56
assertEqQuery
57
57
dbSync
58
58
DB. queryJsonbInSchemaExists
@@ -81,7 +81,7 @@ configJsonbInSchemaShouldError ioManager metadata = do
81
81
where
82
82
action = \ _interpreter _mockServer dbSync -> do
83
83
startDBSync dbSync
84
- threadDelay 2_000_000
84
+ threadDelay 7_000_000
85
85
stopDBSync dbSync
86
86
let newDbSyncEnv =
87
87
dbSync
@@ -94,7 +94,7 @@ configJsonbInSchemaShouldError ioManager metadata = do
94
94
}
95
95
}
96
96
startDBSync newDbSyncEnv
97
- threadDelay 2_000_000
97
+ threadDelay 7_000_000
98
98
-- Expected to fail
99
99
checkStillRuns dbSync
100
100
Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ runSyncNode metricsSetters trce iomgr dbConnString ranMigrations runMigrationFnc
224
224
case dncShelleyHardFork cfg of
225
225
HardFork. TriggerHardForkAtEpoch (EpochNo 0 ) -> True
226
226
_other -> False
227
- -- isJsonBInSchemaConfig = isAddJsonbToSchemaEnabled (sioAddJsonbToSchema (dncInsertOptions syncNodeConfigFromFile))
228
227
isJsonBInSchemaConfig = ioAddJsonbToSchema $ soptInsertOptions syncOptions
229
228
maybeLedgerDir = enpMaybeLedgerStateDir syncNodeParams
230
229
You can’t perform that action at this time.
0 commit comments