Skip to content

Commit

Permalink
Updated RollingLogFile.EXPIRATION_TIME.
Browse files Browse the repository at this point in the history
The RollingLogFile.EXPIRATION_TIME has been changed to 0 such that
log expiration is disabled in case the log.instance.*.expirationTime
parameter is missing from the CS.cfg.

https://pagure.io/dogtagpki/issue/2656

Change-Id: I8c8c7a1560f986920244f9660b0de10e197f93b4
  • Loading branch information
edewata committed Jan 26, 2018
1 parent 7097815 commit e2a72ff
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -66,7 +66,7 @@ public class RollingLogFile extends LogFile {
/**
* The default expiration time in seconds
*/
static final String EXPIRATION_TIME = "2592000";
static final String EXPIRATION_TIME = "0";

/**
* The maximum file size in bytes
Expand Down

0 comments on commit e2a72ff

Please sign in to comment.