Skip to content

Commit

Permalink
increase app timeouts to see if this is causing our app scope errors …
Browse files Browse the repository at this point in the history
…in Lucee
  • Loading branch information
jclausen committed Jan 12, 2025
1 parent da03e45 commit 2b3ea30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Application.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ component{
this.sessionManagement = true;
this.setClientCookies = true;
this.clientManagement = true;
this.sessionTimeout = createTimeSpan( 0, 0, 1, 0 );
this.applicationTimeout = createTimeSpan( 0, 0, 1, 0 );
this.sessionTimeout = createTimeSpan( 0, 1, 0, 0 );
this.applicationTimeout = createTimeSpan( 0, 1, 0, 0 );
this.timezone = "UTC";
this.enableNullSupport = shouldEnableFullNullSupport();

Expand Down

0 comments on commit 2b3ea30

Please sign in to comment.