Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ public async Task Rebalancer_Should_Be_Controllable_And_Report_To_Listeners()
await Task.Delay(100);
}

report = await rebalancer.GetRebalancingReport(true);
Assert.False(report.SuspensionDuration.HasValue);
Assert.Equal(RebalancerStatus.Executing, report.Status);
Assert.Null(report.SuspensionDuration);
Assert.Equal(host, report.Host);

await rebalancer.SuspendRebalancing(); // Suspend indefinitely
Expand All @@ -89,4 +89,4 @@ private class Listener : IActivationRebalancerReportListener
public RebalancingReport? Report { get; private set; }
public void OnReport(RebalancingReport report) => Report = report;
}
}
}