Skip to content

Commit

Permalink
Remove unnecessary check for availability guard shutdown in the fullt…
Browse files Browse the repository at this point in the history
…ext update applier
  • Loading branch information
chrisvest committed Sep 19, 2017
1 parent b4d2f64 commit 5dba019
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ private void waitForDatabaseToBeAvailable()
{
isAvailable = availabilityGuard.isAvailable( 100 );
}
while ( !isAvailable && !availabilityGuard.isShutdown() );
while ( !isAvailable );
}

private FulltextIndexUpdate drainQueueAndApplyUpdates(
Expand Down

0 comments on commit 5dba019

Please sign in to comment.