fix(db): register legacy task migrations
CI - Build & Test / Backend (.NET) (push) Successful in 50s
CI - Build & Test / Backend integration (PostgreSQL/Toxiproxy) (push) Failing after 58s
CI - Build & Test / Frontend (Vue/TS) (push) Has been cancelled
CI - Build & Test / Security Check (push) Has been cancelled
CI - Build & Test / Deploy Nexus (push) Has been cancelled
CI - Build & Test / Backend (.NET) (push) Successful in 50s
CI - Build & Test / Backend integration (PostgreSQL/Toxiproxy) (push) Failing after 58s
CI - Build & Test / Frontend (Vue/TS) (push) Has been cancelled
CI - Build & Test / Security Check (push) Has been cancelled
CI - Build & Test / Deploy Nexus (push) Has been cancelled
This commit is contained in:
@@ -140,7 +140,14 @@ public sealed class ToxiproxyAgentProvisioningIntegrationTests
|
||||
|
||||
var reconciled = await service.GetByIdAsync(created.Proposal.Id);
|
||||
Assert.NotNull(reconciled);
|
||||
Assert.Equal(AgentProposalStates.Ready, reconciled!.Status);
|
||||
Assert.True(
|
||||
string.Equals(
|
||||
AgentProposalStates.Ready,
|
||||
reconciled!.Status,
|
||||
StringComparison.Ordinal),
|
||||
$"Expected ready after read-only reconciliation, got "
|
||||
+ $"'{reconciled.Status}' ({reconciled.Error?.Code}: "
|
||||
+ $"{reconciled.Error?.Message}).");
|
||||
Assert.Equal("release-analyst", reconciled.OpenClawAgentId);
|
||||
Assert.Equal(1, gateway.CreateCalls);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user