Skip to content

Commit

Permalink
Increase BDB test ID timeout: 20 to 150 ms
Browse files Browse the repository at this point in the history
20 ms is too tightly tuned for some test environments
  • Loading branch information
dalaro committed Sep 19, 2015
1 parent 893be38 commit 8aa0aac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class BerkeleyGraphProvider extends AbstractTitanGraphProvider {

@Override
public ModifiableConfiguration getTitanConfiguration(String graphName, Class<?> test, String testMethodName) {
return BerkeleyStorageSetup.getBerkeleyJEConfiguration(StorageSetup.getHomeDir(graphName)).set(GraphDatabaseConfiguration.IDAUTHORITY_WAIT, Duration.ofMillis(20));
return BerkeleyStorageSetup.getBerkeleyJEConfiguration(StorageSetup.getHomeDir(graphName)).set(GraphDatabaseConfiguration.IDAUTHORITY_WAIT, Duration.ofMillis(150L));
}

@Override
Expand Down

0 comments on commit 8aa0aac

Please sign in to comment.