Patrick Huber

Results 45 comments of Patrick Huber

I'll try to break it down into the specific issues I ran into that ultimately led me down the CRD path. Working code exists here https://github.com/patrickhuber/dapr ### Loading / Pulling:...

Launching is launching a GRPC Server. It could be the act of starting a container or a process. When communicating, I use the term "Plugin" to represent this GRPC Server...

Correct, I moved all of the code out of components-contrib On Tue, Jan 18, 2022, 12:32 PM Joni Collinge ***@***.***> wrote: > Ah I think I see the root of...

I've done some porting of the python [component model MVP](https://github.com/WebAssembly/component-model/tree/main/design/mvp/canonical-abi) to pure go here: https://github.com/patrickhuber/go-wasm/tree/6015b8d07aaa1fc902fee44b01d1ebd6fded3d65/abi More tests are needed for records, variants etc but strings and basic types are working.

I completed the unit tests suite included in the component model MVP. I'm going to try to replace some of the generated code with the go abi I created and...

No, but I found out where it is happening. When direnv creates a sub shell, it wraps the commands in a call to bash. I would think it should use...

> I suspect it has something to do with WSL2: > 1. When I run a powershell in git bash (which is based on MSYS2) and move to a directory...

Direnv is calling into bash to run its stdlib shell scripts. Wsl is invoked when you call bash.exe from powershell. Because it is invoked from windows, it is using a...

I dug through the code a bit more and this seems like the best place for a fix https://github.com/direnv/direnv/blob/master/internal%2Fcmd%2Fconfig.go#L102 It appears paths are already being manipulated here for mysys. Some...

That may fix it in your particular circumstance. The bug will still exist for users who do not have mysys installed. I think a better workaround for you may be...