Krystian Chmura
Krystian Chmura
Currently `Unmarshal` return error as soon as it is possible, which means that in the case of invalid env configuration we need to check it in a loop: 1. Check...
Why these methods use a different mechanism for `interface{}` marshalling? ```go func ExampleInterface () { log := zerolog.New(os.Stdout) log.Info().Interface("foo", ``).Send() // Output: // {"level":"info","foo":"\u003csomeXml\u003e\u003c/someXml\u003e"} } func ExampleFields () { log...
```dockerfile # Dockerfile EXPOSE 11211 CMD ["memcached"] ``` ```golang // Code port := "11211/tcp" rq := testcontainers.ContainerRequest{ Image: "memcached:1.6.10", ExposedPorts: []string{port}, WaitingFor: wait.ForListeningPort(nat.Port(port)), } memcachedC, err := testcontainers.GenericContainer(context.Background(), testcontainers.GenericContainerRequest{ ContainerRequest:...
* fix the doc: `c.FollowOutput()` MUST be called before `c.StartLogProducer()` due to date race * do not allow multiple `c.StartLogProducer()` without calling a `c.StopLogProducer()` * run `c.StopLogProducer()` in `c.Terminate()` to...
I don't see any progress in the repository, which is a pity, because VSCode is currently the most popular code editor. Are there any plans to implement more features like...
Right now we have only `gitlab_ci_pipeline_job_duration_seconds` or similar metrics, which cannot be used to answer questions like this: * how 95th percentile of particular job duration changes over time *...
please tell me, if you like the approach tests need a little bit more cleaning and polishing, but i post it early to gather a feedback i can also test...
to make it faster