Skip to content

Commit

Permalink
Replace objectDatabase reference with conflictsDatabase
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Merkle <emerkle@boundlessgeo.com>
  • Loading branch information
Erik Merkle committed Sep 22, 2017
1 parent 722d240 commit ba9eea7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected void configure() {
for (StorageProvider sp : providers) {
VersionedFormat objectDatabaseFormat = sp.getObjectDatabaseFormat();
VersionedFormat indexDatabaseFormat = sp.getIndexDatabaseFormat();
VersionedFormat graphDatabaseFormat = sp.getGraphDatabaseFormat();
VersionedFormat conflictsDatabaseFormat = sp.getConflictsDatabaseFormat();
VersionedFormat refsDatabaseFormat = sp.getRefsDatabaseFormat();

if (objectDatabaseFormat != null) {
Expand All @@ -105,8 +105,8 @@ protected void configure() {
if (indexDatabaseFormat != null) {
GeoServerContextBuilder.bind(indexPlugins, indexDatabaseFormat);
}
if (graphDatabaseFormat != null) {
GeoServerContextBuilder.bind(graphPlugins, graphDatabaseFormat);
if (conflictsDatabaseFormat != null) {
GeoServerContextBuilder.bind(graphPlugins, conflictsDatabaseFormat);
}
if (refsDatabaseFormat != null) {
GeoServerContextBuilder.bind(refPlugins, refsDatabaseFormat);
Expand Down

0 comments on commit ba9eea7

Please sign in to comment.