Skip to content

Commit

Permalink
fix: make sure to unblock other storage open operations only when mig…
Browse files Browse the repository at this point in the history
…ration is complete, issue #9974
  • Loading branch information
tglman committed May 9, 2023
1 parent 41cf52f commit 605d7df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -623,12 +623,12 @@ public final void open(final OContextConfiguration contextConfiguration) {
status.name());
return;
}
migration.countDown();

// we need to check presence of ridbags for backward compatibility with previous
// versions
atomicOperationsManager.executeInsideAtomicOperation(null, this::checkRidBagsPresence);
status = STATUS.OPEN;
migration.countDown();
} finally {
stateLock.writeLock().unlock();
}
Expand Down

0 comments on commit 605d7df

Please sign in to comment.