mirror of
https://github.com/sasjs/server.git
synced 2025-12-11 03:34:35 +00:00
fix(session): increased session + bug fixed
This commit is contained in:
@@ -23,7 +23,9 @@ export class FileUploadController {
|
|||||||
|
|
||||||
const sessionController = getSessionController()
|
const sessionController = getSessionController()
|
||||||
session = await sessionController.getSession()
|
session = await sessionController.getSession()
|
||||||
session.inUse = true
|
// marking consumed true, so that it's not available
|
||||||
|
// as readySession for any other request
|
||||||
|
session.consumed = true
|
||||||
|
|
||||||
req.sasSession = session
|
req.sasSession = session
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ export class SessionController {
|
|||||||
? readySessions[0]
|
? readySessions[0]
|
||||||
: await this.createSession()
|
: await this.createSession()
|
||||||
|
|
||||||
if (readySessions.length < 2) this.createSession()
|
if (readySessions.length < 3) this.createSession()
|
||||||
|
|
||||||
return session
|
return session
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -143,9 +143,8 @@ const executeReturnRaw = async (
|
|||||||
query
|
query
|
||||||
)) as ExecuteReturnRaw
|
)) as ExecuteReturnRaw
|
||||||
|
|
||||||
// Should over-ride response header for
|
// Should over-ride response header for debug
|
||||||
// debug on GET request to see entire log
|
// on GET request to see entire log rendering on browser.
|
||||||
// rendering on browser.
|
|
||||||
if (isDebugOn(query)) {
|
if (isDebugOn(query)) {
|
||||||
httpHeaders['content-type'] = 'text/plain'
|
httpHeaders['content-type'] = 'text/plain'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user