fix: trace daemon apply in materialization runs

Run supertest materialization with apply --wait --trace so daemon-backed apply still waits for completion and streams progress logs in command artifacts.
This commit is contained in:
2026-06-04 20:52:40 +02:00
parent 5d4b2e92ad
commit 6bb9bebdfd
+5 -1
View File
@@ -2321,7 +2321,11 @@ class LegionAdapter {
}
async materialize(timeoutMs: number): Promise<void> {
await this.expectLegionSuccess("nodes-materialize", ["apply", "--json"], timeoutMs)
await this.expectLegionSuccess(
"nodes-materialize",
["apply", "--json", "--wait", "--trace"],
timeoutMs
)
}
async destroyNode(nodeId: string, timeoutMs: number): Promise<void> {