Skip to content

Commit 5ebe834

Browse files
authoredJun 13, 2023
BAP-21789: websocket_frontend healthcheck is not working (#35850)
- disabled websocket server by default
1 parent 927ff1f commit 5ebe834

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎.env-app

+6-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ ORO_SESSION_DSN=native:
3939
###< session config ###
4040

4141
###> websocket config ###
42-
ORO_WEBSOCKET_SERVER_DSN=//0.0.0.0:8080
43-
ORO_WEBSOCKET_FRONTEND_DSN=//*:8080/ws
44-
ORO_WEBSOCKET_BACKEND_DSN=tcp://127.0.0.1:8080
42+
# websocket server DSN example: //0.0.0.0:8080
43+
ORO_WEBSOCKET_SERVER_DSN=
44+
# websocket client frontend DSN example: //*:8080/ws
45+
ORO_WEBSOCKET_FRONTEND_DSN=
46+
# websocket client backend DSN example: tcp://127.0.0.1:8080
47+
ORO_WEBSOCKET_BACKEND_DSN=
4548
###< websocket config ###
4649

4750
###> message queue config ###

0 commit comments

Comments
 (0)
Please sign in to comment.