1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore(api): updated endpoint description

This commit is contained in:
Yury
2024-10-31 14:08:56 +03:00
parent 73df102422
commit ca17e7c192
2 changed files with 5 additions and 2 deletions

View File

@@ -1859,7 +1859,8 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/SessionState'
summary: "Get session state (initialising, pending, running, completed, failed).\nPolling session state won't work in a load-balanced situation."
description: "The polling endpoint is currently implemented for single-server deployments only.<br>\nLoad balanced / grid topologies will be supported in a future release.<br>\nIf your site requires this, please reach out to SASjs Support."
summary: 'Get session state (initialising, pending, running, completed, failed).'
tags:
- Session
security:

View File

@@ -30,8 +30,10 @@ export class SessionController {
}
/**
* The polling endpoint is currently implemented for single-server deployments only.<br>
* Load balanced / grid topologies will be supported in a future release.<br>
* If your site requires this, please reach out to SASjs Support.
* @summary Get session state (initialising, pending, running, completed, failed).
* Polling session state won't work in a load-balanced situation.
* @example completed
*/
@Get('/:sessionId/state')