fix(server): Fix comment about timeout interval

The interval for checking for timeout of asynchronous operations
is 1 second, not 100 seconds.
This commit is contained in:
estr Eckerstorfer Andreas 2025-03-10 07:38:08 +01:00 committed by Julius Pfrommer
parent 622318fcca
commit cdb5fa035b

View File

@ -176,7 +176,7 @@ UA_AsyncManager_init(UA_AsyncManager *am, UA_Server *server) {
UA_LOCK_INIT(&am->queueLock);
/* Add a regular callback for cleanup and sending finished responses at a
* 100s interval. */
* 1s interval. */
addRepeatedCallback(server, (UA_ServerCallback)checkTimeouts,
NULL, 1000.0, &am->checkTimeoutCallbackId);
}