shanedell commented on PR #926:
URL: https://github.com/apache/daffodil-vscode/pull/926#issuecomment-1876023514

   So I found what my issue was, if you configure the `dataEditor` item 
multiple times it takes the last instance that shows up. So I had this in my 
launch.json:
   
   ```json
               ...
               "dataEditor": {
                   "port": 9001,
                   "logging": {
                       "file": 
"${workspaceFolder}/dataEditor-${omegaEditPort}.log",
                       "level": "info"
                   }
               ...
               "dataEditor": {
                   "port": 9010,
                   "logFile": 
"${workspaceFolder}/dataEditor-${omegaEditPort}.log",
                   "logLevel": "info"
               }
              ...
   ```
   So that is why it was always trying to use 9010. If I remove that and try 
again everything is working. However, one thing is that if I change that port I 
need to reload the extension before it will actually pick it up for some reason.


-- 
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]

Reply via email to