File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export class Config {
3232 Config . log_index_mngt = Config . parseBoolean ( Config . getEnv ( "log_index_mngt" , "true" ) ) ;
3333 Config . log_watches = Config . parseBoolean ( Config . getEnv ( "log_watches" , "false" ) ) ;
3434 Config . log_watches_notify = Config . parseBoolean ( Config . getEnv ( "log_watches_notify" , "false" ) ) ;
35+ Config . log_missing_jwt = Config . parseBoolean ( Config . getEnv ( "log_missing_jwt" , "true" ) ) ;
3536
3637 Config . openflow_uniqueid = Config . getEnv ( "openflow_uniqueid" , "" ) ;
3738 Config . enable_openflow_amqp = Config . parseBoolean ( Config . getEnv ( "enable_openflow_amqp" , "false" ) ) ;
@@ -206,6 +207,8 @@ export class Config {
206207 public static log_index_mngt : boolean = Config . parseBoolean ( Config . getEnv ( "log_index_mngt" , "true" ) ) ;
207208 public static log_watches : boolean = Config . parseBoolean ( Config . getEnv ( "log_watches" , "false" ) ) ;
208209 public static log_watches_notify : boolean = Config . parseBoolean ( Config . getEnv ( "log_watches_notify" , "false" ) ) ;
210+ public static log_missing_jwt : boolean = Config . parseBoolean ( Config . getEnv ( "log_missing_jwt" , "true" ) ) ;
211+
209212 public static openflow_uniqueid : string = Config . getEnv ( "openflow_uniqueid" , "" ) ;
210213 public static enable_openflow_amqp : boolean = Config . parseBoolean ( Config . getEnv ( "enable_openflow_amqp" , "false" ) ) ;
211214 public static openflow_amqp_expiration : number = parseInt ( Config . getEnv ( "openflow_amqp_expiration" , ( 60 * 1000 * 25 ) . toString ( ) ) ) ; // 25 min
You can’t perform that action at this time.
0 commit comments