Brad Rydzewski

Results 251 comments of Brad Rydzewski

I think for Go projects it is standard to build on the host machine (using `go build`, `make`, etc) and then to `ADD` or `COPY` the pre-compiled binary in the...

@tamasf97 thanks, this is looking really good and I appreciate your patience while I work through my review backlog :) The only remaining piece of feedback I have is that...

yes, I will mark it as archived

I have an initial prototype in `feature/reconnect` branch that implements a very simple, non-configurable heartbeat. I will test and merge into master if this works, and submit a follow-up PR...

Thanks! I have drone/drone:1.0.1 image available for testing. I have a docker compose file w/ Nginx that I can post later too

Oops, sorry, meant drone/mq:1.0.1

question: should an unexpected disconnect provide some sort of reconnection period before adding all pending acks back to the queue? food for thought ...

some recent progress on this ... list of active sessions: ``` GET /meta/sessions ``` ``` json [ { "address": "127.0.0.1:60168", "username": "johnsmith", "headers": { "x-real-ip": "127.0.0.1" } }, { "address":...

we might be able to simplify by using `context` and `WithTimeout` like this: http://ixday.github.io/post/golang-cancel-copy/ ```diff -numBytes, err := io.Copy(dst, object) +err := Copy(ctx, dst, object) ``` I am not sure...