Cnaged commandqueue to use an actually thread safe queue. Server now using String for setting backend.

This commit is contained in:
lieght
2025-09-13 14:28:16 +02:00
parent fd20837e32
commit d17c1e010d
4 changed files with 70 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ public class ServerTest {
@BeforeEach
public void setUp() {
server = new Server(Server.ServerBackend.LOCAL, "127.0.0.1", "8080");
server = new Server("LOCAL", "127.0.0.1", "8080");
}
@Test