shanedell commented on PR #926:
URL: https://github.com/apache/daffodil-vscode/pull/926#issuecomment-1876010394
@stricklandrbls So I don't think it does with that because I have nothing
running, I had another service on 9000 that I killed. But now when I try to run
it says its logging to `/Users/sdell/Library/Application\
Support/omega_edit/dataEditor-9010.log` and when I lookup the omega-edit
process using `ps -ef | grep "omega"` I see it is being ran with `--port 9010`.
However, the connection is trying to connect to port 9000 instead of 9010. So,
there is a disconnect somewhere on the port.
In the launch config to have this snippet:
```json
...
"dataEditor": {
"port": 9001,
"logging": {
"file":
"${workspaceFolder}/dataEditor-${omegaEditPort}.log",
"level": "info"
}
}
...
```
It will still say /Users/sdell/Library/Application\
Support/omega_edit/dataEditor-9010.log`, the omega-edit process using is still
being ran with `--port 9010` and the server still tries hitting 9000 not 9010.
So, this configuration is not being honored. If I change
`DEFAULT_OMEGA_EDIT_PORT` inside of `src/dataEditor/dataEditorClient.ts` I can
open the data editor.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]