1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-09 07:20:05 +00:00

fix: session should be marked as consumed

This commit is contained in:
Saad Jutt
2022-01-07 16:34:46 +05:00
parent 0a6ebe6e62
commit 7a3d710153
3 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ export interface Session {
deathTimeStamp: string
path: string
inUse: boolean
consumed: boolean
completed: boolean
crashed?: string
}