Skip to content

Commit

Permalink
Convert playgroundEnabled: bool to string
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
  • Loading branch information
rr83019 committed Jan 7, 2022
1 parent e1505a7 commit fabd5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/lc/core/config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Config(configFilePath: String) {
(AttributesEnum.CAPTCHA_EXPIRY_TIME_LIMIT.toString -> 5) ~
(AttributesEnum.THROTTLE.toString -> 1000) ~
(AttributesEnum.THREAD_DELAY.toString -> 2) ~
(AttributesEnum.PLAYGROUND_ENABLED.toString -> true) ~
(AttributesEnum.PLAYGROUND_ENABLED.toString -> "true") ~
(AttributesEnum.CORS_HEADER.toString -> "") ~
(AttributesEnum.MAX_ATTEMPTS.toString -> 10) ~
("captchas" -> List(
Expand Down

0 comments on commit fabd5dd

Please sign in to comment.