turn off exchange kopia assists (#4503)

Protective measure to prevent further details merging issues.
will need a follow-up to enable via a feature flag for testing.

---

#### Does this PR need a docs update or release note?

- [x]  No

#### Type of change

- [x] 🐛 Bugfix

#### Issues

- #2023

#### Test Plan

- [x]  Unit test
- [x] 💚 E2E
This commit is contained in:
Keepers 2023-10-16 11:15:30 -06:00 committed by GitHub
parent 5d90483bfa
commit c0cd7cf2f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,7 +160,7 @@ func populateCollections(
ictx = clues.Add(ictx, "previous_path", prevPath)
added, validModTimes, removed, newDelta, err := bh.itemEnumerator().
added, _, removed, newDelta, err := bh.itemEnumerator().
GetAddedAndRemovedItemIDs(
ictx,
qp.ProtectedResource.ID(),
@ -199,7 +199,11 @@ func populateCollections(
bh.itemHandler(),
added,
removed,
validModTimes,
// TODO: produce a feature flag that allows selective
// enabling of valid modTimes. This currently produces
// rare-case failures with incorrect details merging.
// Root cause is not yet known.
false,
statusUpdater)
collections[cID] = edc