Tami Takamiya
Tami Takamiya
@davisagli Hello, we also want to have a solution of this issue. I created sample projects for easier problem recreation. - [sdfx-proj1](https://github.com/TamiTakamiya/sfdx-proj1) - [sdfx-proj2](https://github.com/TamiTakamiya/sfdx-proj2) sfdx-proj2 defines two tasks. 1. dxtask...
IMO, if the rule is documented, just allowing one from multiple tasks with a same name would be fine. For example, dependencies in Maven is resolved by the first dependency...
I could recreate the problem on Windows 10 WSL2. It looks like the manifestUrl is set to `https://developer.salesforce.com/media/salesforce-cli/sfdx-cli/channels/stable/wsl-x64`, which is not available. I tried to override it to `https://developer.salesforce.com/media/salesforce-cli/sfdx-cli/channels/stable/linux-x64` by...
I wonder if this wsl-x64 update issue could be resolved just by creating a symbolic link `wsl-x64` to `linux-x64` on the server that stores updated codes. Or isn't that simple?
I am also very interested in this feature primarily because the disk usage of our InfluxDB increases > 1 GB/hour when our test is running. Unless we pay extra attention,...
I could build a workaround described above: https://github.com/TamiTakamiya/k6/commit/566b0e666d604fdc253f96f9756f0cf6245d1ce4 This simply suppress saving metrics specified in the environment variable `K6_INFLUXDB_METRICS_SUPPRESSED` into InfluxDB. As metrics are still being collected internally and appear...
I am also interested in this feature. Though I have not tried it out by myself yet, according to [the Codespaces documentation](https://code.visualstudio.com/api/advanced-topics/remote-extensions#callbacks-and-uri-handlers) and [this article](https://www.eliostruyf.com/authentication-provider-work-github-gitpod-codespaces/) on a similar topic, Codespaces...
Update on this topic: For last few weeks, I have been working on enabling OAuth2 authorization code flow from our VSCode extension running in code-server and found `vscode.env.asExternalUri` could be...
> @TamiTakamiya > > Is there a way to call `vscode.env.asExternalUri` in my code-server without an extension? Hmm... I am not sure if it is possible... I wrote [a very...
@bilogic So far I have opened external URIs with our VSCode extensions. When code-server is used, I think the scheme needs to be set to `code-oss:` instead of `vscode:`. By...