Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
John BerquistJohn BerquistPriority
CriticalFix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
John Berquist
John BerquistPriority
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 21 October 2015 at 01:16
Updated 18 November 2021 at 10:23
Resolved 28 June 2018 at 20:16
If I use the following Application.cfc (with an empty index.cfm file):
component { this.name = 'testApp'; this.sessionManagement = true; variables.templateId = createUuid(); function onSessionStart() { request.templateId = variables.templateId; } function onRequestStart( string targetPage ) { writeOutput( "variables.templateId: " & variables.templateId ); writeOutput( chr(10) ); writeOutput( "request.templateId: " & request.templateId ); } }
and hit it with a number of simultaneous new session requests, there will always be at least one request where
variables.templateId
does not matchrequest.templateId
. Instead the outputtedrequest.templateId
will match thevariables.templateId
of one of the other requests.