fix(azure-e2e-tests): Update ephemeral summary trees to format v3 #25947
+2
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This change updates the ephemeral summary trees used in Azure client E2E tests to use EditManager format version 3 instead of version 2.
The SharedTree ephemeral container tests are consistently failing in our Service Clients E2E pipeline with the error:
Cannot decode data to format 2. The codec was discontinued in FF version 2.73.0..The problem here is the ephemeral summary trees in
ephemeralSummaryTrees.tswere originally created with Fluid Framework version 2.0.0-rc.4.0.0 and used EditManager format version 2, which has been discontinued as of version 2.73.0. The fix here is updating the EditManager format version from 2 to 3 in thetree7andtree8summary trees, which are used by:createContainerWithSharedTreecreateLoadContainerWithSharedTreeI verfied this change by running "test:realsvc:azure" locally to run these tests against AFR.
Reviewer Guidance
I see that the removal was done in this #25893. My knowledge of EditManager codec format versions is limited, but it seems v3 and v2 share the same structure. I verfied this change by manually running the real service tests but unsure if additional changes would need to made here as well.