Hey we recently upgraded our ESPO version from 6 to 7 and we are currently running v7.1.7.
But the websocket is not working as expected after the upgrade. We use docker containers to run ESPO instance, we have 2 containers one which runs the app itself and one more for websocket which just forwards the 8080 port from inside the container to an port on the outside (say 40100).
So in the config.php I have:
When I load the CRM and check the Network tab in the dev tools, everything is fine, there is the ?authToken entry in the WS section. But if I make any changes to the entity, there is no incoming or outgoing socket requests.
The same setup works in ESPO v6 but not in v7.
Any help would be appreciated.
But the websocket is not working as expected after the upgrade. We use docker containers to run ESPO instance, we have 2 containers one which runs the app itself and one more for websocket which just forwards the 8080 port from inside the container to an port on the outside (say 40100).
So in the config.php I have:
Code:
'useWebSocket' => true, 'webSocketUrl' => 'ws://127.0.0.1:40100', 'webSocketPort' => '8080'
The same setup works in ESPO v6 but not in v7.
Any help would be appreciated.
Comment