debugging in ci
This commit is contained in:
parent
0addcc5740
commit
7b015a9805
|
@ -46,8 +46,8 @@ method logFileContains*(node: CodexProcess, text: string): bool =
|
|||
without logFile =? config.logFile.?string:
|
||||
raiseAssert "codex node does have a --log-file option set (use .withLogFile())"
|
||||
|
||||
without logContents =? logFile.readAllChars:
|
||||
raiseAssert "failed to open codex log file, aborting"
|
||||
without logContents =? logFile.readAllChars, error:
|
||||
raiseAssert "failed to open codex log file, aborting, error: " & error.msg
|
||||
|
||||
return logContents.contains(text)
|
||||
|
||||
|
|
|
@ -51,10 +51,7 @@ marketplacesuite "Slot reservations":
|
|||
var slotIdxFilled: seq[UInt256] = @[]
|
||||
proc onSlotFilled(event: SlotFilled) =
|
||||
slotIdxFilled.add event.slotIndex
|
||||
proc onSlotReservationsFull(event: SlotReservationsFull) =
|
||||
echo "Slot reservations full for slot ", event.slotIndex
|
||||
|
||||
let subscriptionFull = await marketplace.subscribe(SlotReservationsFull, onSlotReservationsFull)
|
||||
let subscription = await marketplace.subscribe(SlotFilled, onSlotFilled)
|
||||
|
||||
# client requests storage but requires multiple slots to host the content
|
||||
|
@ -74,4 +71,3 @@ marketplacesuite "Slot reservations":
|
|||
check logsDoNotContain(Role.Provider, "Nonce too high")
|
||||
|
||||
await subscription.unsubscribe()
|
||||
await subscriptionFull.unsubscribe()
|
||||
|
|
Loading…
Reference in New Issue