Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(config): fix units typo in default config
Browse files Browse the repository at this point in the history
The comment said 3 hours but the value was 30 hours.
  • Loading branch information
rfk committed Mar 16, 2015
1 parent 20076f8 commit 6befc10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module.exports = function (fs, path, url, convict) {
},
badLoginLockoutIntervalSeconds: {
doc: 'Duration which a failed login attempt should be remembered towards account lockout',
default: 60 * 60 * 30, // three hours for now
default: 60 * 60 * 3, // three hours for now
format: 'nat',
env: 'BAD_LOGIN_LOCKOUT_INTERVAL_SECONDS'
}
Expand Down

0 comments on commit 6befc10

Please sign in to comment.