Dmitry Kotik

Results 11 issues of Dmitry Kotik

I love the program, but it cannot tell me time for example in Dallas, which would be very handy. It would take a map of large cities to timezones. I...

I was writing a custom thematic break parser for a side project and noticed that the original contains a typographical error. I fixed the error. I also added a few...

Package jsonendpoint provides a generic adapter that converts a validated JSON request into a [message.Message] published to a certain topic. Use together with an HTTP router to build gateways to...

@roblaszczak, @m110 I hope to contribute an SQLite driver some time this summer. I am opening this issue to collect ideas and to hear suggestions from you and the community....

New Pub/Sub

It is expected for Golang APIs to be context-aware by default. I assume many projects are relying on context to pass a localizer down the call stack as I am...

### Describe the feature There is currently no command to stop the tunnel that I can find. How do I stop it? ### Additional information - [ ] Would you...

### Steps to Reproduce 1. Go to login screen. 2. Select login field. 3. The screen jumps as keyboard pulls up. 4. The login field is deselected. 5. Password field...

bug

Go module path is moving to a new path. At this time, it is best to create a new go.mod file. This also removes the need to provide alternative name...

https://github.com/ThreeDotsLabs/watermill-sql/blob/master/pkg/sql/pubsub_test.go#L466 has null payloads: ```go messagesToPublish := []*message.Message{ message.NewMessage("0", nil), message.NewMessage("1", nil), message.NewMessage("2", nil), } ``` The acceptance tests never run a scenario with a NULL payload. Using that test...

When publishing, the official Posgres uses a background context. When I was working on SQLite implementation, @roblaszczak recommended that I use context from the fist message being published. > publish...