Skip to content

Commit

Permalink
Rename setting archive_count -> max_archives
Browse files Browse the repository at this point in the history
  • Loading branch information
cleishm committed May 6, 2015
1 parent b434db4 commit 3722f08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -134,7 +134,7 @@ public abstract class GraphDatabaseSettings
public static final Setting<Integer> store_internal_log_rotation_delay = setting("store.internal_log.rotation_threshold", INTEGER, "300", min(0), max( Integer.MAX_VALUE ) );

@Description( "Maximum number of history files for the internal log." )
public static final Setting<Integer> store_internal_log_archive_count = setting("store.internal_log.archive_count", INTEGER, "7", min(1) );
public static final Setting<Integer> store_internal_log_max_archives = setting("store.internal_log.max_archives", INTEGER, "7", min(1) );

// Indexing
@Description("Controls the auto indexing feature for nodes. Setting it to `false` shuts it down, " +
Expand Down
Expand Up @@ -186,7 +186,7 @@ protected LogService createLogService(LogProvider userLogProvider)

long internalLogRotationThreshold = config.get( GraphDatabaseSettings.store_internal_log_rotation_threshold );
int internalLogRotationDelay = config.get( GraphDatabaseSettings.store_internal_log_rotation_delay );
int internalLogMaxArchives = config.get( GraphDatabaseSettings.store_internal_log_archive_count );
int internalLogMaxArchives = config.get( GraphDatabaseSettings.store_internal_log_max_archives );
LogService logService;
try
{
Expand Down

0 comments on commit 3722f08

Please sign in to comment.