refactor session ID handling in worker communication protocol; replace subscriptionIdentifier with displayIdentifier
Some checks failed
Build Backend Application and Docker Image / build-docker (push) Failing after 8s

This commit is contained in:
Siwat Sirichai 2025-07-14 11:05:17 +07:00
parent 700d3b3efe
commit 112ca9325d

View file

@ -267,7 +267,7 @@ Allows the backend to instruct the worker to associate a session ID with a subsc
{
"type": "setSessionId",
"payload": {
"subscriptionIdentifier": "display-001;cam-002",
"displayIdentifier": "display-001",
"sessionId": 12345
}
}
@ -279,7 +279,7 @@ Or to clear the session:
{
"type": "setSessionId",
"payload": {
"subscriptionIdentifier": "display-001;cam-002",
"displayIdentifier": "display-001",
"sessionId": null
}
}