Douglas Drinka

Results 34 comments of Douglas Drinka

After some tinkering, it appears doing what I proposed is a non-trivial task. Setting a new hostname in Alpine requires the SYS_ADMIN capability which Fargate does not grant. Setting `/etc/hostname`...

This is important functionality for our builds because we have long repository names. We're getting paths like: `D:\a\VeryLongRepositoryNameAAAAAAAAAAAAAAAAAAA\VeryLongRepositoryNameAAAAAAAAAAAAAAAAAAAA\src\ALongProjectNameBBBBBBBBBBBBBBBB\ALongProjectNameBBBBBBBBBBBBBBBB.csproj` We're hitting MAX_PATH on Windows builds. We need to be able to...

Ok, using the daily build the exception went away, so now this issue is just around auto-detection of VSCode when using Remote Containers.

`os.environ`: ```javascript environ = {'HOSTNAME': '68948ad90c70', 'PIPX_HOME': '/usr/local/py-utils', 'PYTHON_PIP_VERSION': '22.0.4', 'HOME': '/home/vscode', 'PIPX_BIN_DIR': '/usr/local/py-utils/bin', 'NVM_SYMLINK_CURRENT': 'true', 'GPG_KEY': '', 'PYTHON_PATH': '/usr/local/python/current', 'NVM_DIR': '/usr/local/share/nvm', 'PYTHON_GET_PIP_URL': 'https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py', 'PATH': '/usr/local/bin:/vscode/vscode-server/bin/linux-x64/74b1f979648cc44d385a2286793c226e611f59e7/bin/remote-cli:/usr/local/share/nvm/current/bin:/usr/local/python/current/bin:/usr/local/bin:/usr/local/share/nvm/current/bin:/usr/local/python/current/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/py-utils/bin:/home/vscode/.local/bin:/usr/local/py-utils/bin', 'VSCODE_AGENT_FOLDER': '/home/vscode/.vscode-server', 'LANG': 'C.UTF-8',...

Those environment variables are from the Python kernel's perspective, on the remote machine. "Remote Machine" is just a docker container running locally.

I'm using the simple repro code from https://github.com/microsoft/vscode-jupyter/issues/1714 to test: ```python import xarray as xr import hvplot.xarray import numpy as np arr = xr.DataArray( np.random.random((2, 3, 4)), dims=['x', 'y', 'time'],...

At first when I began testing today I wasn't able to reproduce the issue. I was able to re-run the `renderer.app` cell repeatedly and always got a chart and no...

Trying to replicate that behavior: starting VS Code with the Terminal visible, and running the cells described above, did not yield what I'd hoped. At this time nothing I do...

I'll test with a static port. Notably I'm not getting a connection timeout error as that port comes online. I'm getting this `net::ERR_FAILED` in the service worker. I don't have...

Today I'm not able to replicate the race condition, so I can't tell if the static port helps... It's not a great long term solution though because there may be...