Skip to content

Commit 3a28cd6

Browse files
committed
Fix queue not ready on administrator account
1 parent 917e2de commit 3a28cd6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

zorro_websocket_proxy/src/zorro_websocket_proxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "websocket.h"
1010

11-
#define SHM_OWNER TEXT("Local\\ZorroWebsocketProxy_shm_owner")
11+
#define SHM_OWNER TEXT("ZorroWebsocketProxy_shm_owner")
1212

1313
using namespace zorro::websocket;
1414

zorro_websocket_proxy_client/include/types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
namespace zorro {
88
namespace websocket {
99

10-
#define CLIENT_TO_SERVER_QUEUE "Local\\ZorroWebsocketProxy_client_server"
11-
#define SERVER_TO_CLIENT_QUEUE "Local\\ZorroWebsocketProxy_server_client"
10+
#define CLIENT_TO_SERVER_QUEUE "ZorroWebsocketProxy_client_server"
11+
#define SERVER_TO_CLIENT_QUEUE "ZorroWebsocketProxy_server_client"
1212
#define HEARTBEAT_INTERVAL 500 // 500ms
1313
#define HEARTBEAT_TIMEOUT 15000 // 15s
1414

0 commit comments

Comments
 (0)