[Minor] authenticated flag should be volatile

This commit is contained in:
Robert von Burg 2022-05-05 15:18:44 +02:00
parent c43ba68372
commit d8e51c67ec
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class PlcGwClientHandler extends StrolchComponent implements GlobalPlcLis
private ClientManager gwClient;
private volatile Session gwSession;
private boolean authenticated;
private volatile boolean authenticated;
private ScheduledFuture<?> serverConnectFuture;