Skip to content

Commit 2b3ea30

Browse files
committed
increase app timeouts to see if this is causing our app scope errors in Lucee
1 parent da03e45 commit 2b3ea30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Application.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ component{
99
this.sessionManagement = true;
1010
this.setClientCookies = true;
1111
this.clientManagement = true;
12-
this.sessionTimeout = createTimeSpan( 0, 0, 1, 0 );
13-
this.applicationTimeout = createTimeSpan( 0, 0, 1, 0 );
12+
this.sessionTimeout = createTimeSpan( 0, 1, 0, 0 );
13+
this.applicationTimeout = createTimeSpan( 0, 1, 0, 0 );
1414
this.timezone = "UTC";
1515
this.enableNullSupport = shouldEnableFullNullSupport();
1616

0 commit comments

Comments
 (0)