Jamie

Results 9 comments of Jamie

It works for me. 😄 - Find out the podman socket ```bash $ podman machine inspect| jq ".[].ConnectionInfo.PodmanSocket.Path" "/Users/jamie/.local/share/containers/podman/machine/podman-machine-default/podman.sock" ``` - Terraform block ```tf terraform { required_providers { docker =...

No, I think I couldn't. I've tried run `go test -v -count=1 -race ./...` after `alias docker="podman"`. It failed in: https://github.com/kreuzwerker/terraform-provider-docker/blob/0588c2071bbe77459e4b7e4cee7e6c050ba499a5/internal/provider/data_source_docker_plugin_test.go#L13 But it's still an awesome terraform provider to me....

Dear @markphelps , do you mind review this PR or give some suggestion?

Dear @dgsb, do you mind review this PR or give some suggestion?

Dear @markphelps , do you mind review this PR or give some suggestion?

Dear @dgsb, do you mind review this PR or give some suggestion?

I have similar requirement for `UpdateContext` to set something like trace id. But there is sometimes unexpected on AWS Lambda warm start. I can find out something like `{"level":"debug","traceId":"xxx","traceId":"xxx","traceId":"xxx"} `...

Dear @boyan-soubachov , do you mind review this PR or give some suggestion?

I think yes. Please refer this unit test: [assert/colorize_test.go#L31](https://github.com/hcmlinj/testify/blob/colorize-expected-and-actual/assert/colorize_test.go#L31) ```golang func TestColorize_Message(t *testing.T) { failureMessage := fmt.Sprintf("Not equal: \n"+ "expected: %s\n"+ "actual : %s%s", "expected", "actual", "diff") fmt.Println(WrapColorize(t).Message(failureMessage)) } ```...