New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove IContainerRuntime.flush #11519
Conversation
- batch metadata is now added regardless if the container is connected (needs this information when replaying Immediate batches)
⯅ @fluid-example/bundle-size-tests: +15.41 KB
Baseline commit: b7b2bd3 |
|
|
||
| ### Remove ISummaryConfigurationHeuristics.idleTime | ||
| `ISummaryConfigurationHeuristics.idleTime` has been removed. See [#10008](https://github.com/microsoft/FluidFramework/issues/10008) | ||
| Please move all usage to the new `minIdleTime` and `maxIdleTime` properties in `ISummaryConfigurationHeuristics`. | ||
|
|
||
| ### Move `TelemetryNullLogger` and `BaseTelemetryNullLogger` to telemetry-utils package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why where these moved?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't catch the weird ordering in my last PR into next. These moved items belong under the upcoming changes section
|
Hello @kian-thompson! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
AB#1076
For more information about how to contribute to this repo, visit this page.
Description
IContainerRuntime.flushwas deprecated in a previous version.It's removal introduces a breaking change. If a more manual flush functionality is needed, migrate all usage to
IContainerRuntimeBase.orderSequentiallyif possible.