refactor(server): Set the max timeout value for the EventLoop to 500ms

This commit is contained in:
Julius Pfrommer 2025-03-06 17:38:01 +01:00 committed by Julius Pfrommer
parent c4193c53f5
commit 622318fcca

View File

@ -647,7 +647,7 @@ UA_Server_getStatistics(UA_Server *server) {
/* Main Server Loop */ /* Main Server Loop */
/********************/ /********************/
#define UA_MAXTIMEOUT 200 /* Max timeout in ms between main-loop iterations */ #define UA_MAXTIMEOUT 500 /* Max timeout in ms between main-loop iterations */
void void
setServerLifecycleState(UA_Server *server, UA_LifecycleState state) { setServerLifecycleState(UA_Server *server, UA_LifecycleState state) {