Mihai Todor

Results 184 comments of Mihai Todor

Slightly off topic: I believe you can avoid hardcoding all those handlers by using this: `router.Handler(http.MethodGet, "/debug/pprof/:item", http.DefaultServeMux)` (where `:item` serves as a dummy placeholder variable which pprof will ignore)....

For anyone bumping into this, it looks like replacing the `\` with the `%5C` escape sequence works. So `sqlserver://MYCOMPANYDOMAIN\bob.jones@SQL-SERVER` needs to be rewritten as `sqlserver://MYCOMPANYDOMAIN%5Cbob.jones@SQL-SERVER`. @kardianos Would you be interested...

It seems that Microsoft has taken over the maintenance of this project: https://github.com/Azure/go-amqp

Looks like this fork has been started: https://github.com/Azure/go-amqp Hope the plan is to have it maintained long-term.

I tested a few combinations of different Go versions and older versions of Convey and I can still replicate it. I think it might be some edge case that was...

@riannucci I can take a stab at fixing it and adding tests if you can provide some insight into how it should behave. Right now, it simply ends up [here](https://github.com/smartystreets/goconvey/blob/af8e7d560364b90f732a1d119d17b5506e50447d/convey/context.go#L270),...

@riannucci I'm still able to reproduce this issue. Would you be able to share some insights into what is going wrong? I'll polish it into a fix & PR once...

@FunkyGod Thanks for trying out Tunny! It looks like you're missing some code logic to wait for the goroutines to complete before `Test_pools` exits and calls `pool.Close()`. It's up to...

@huahuayu I looked into this a bit and it's not clear what the issue is. Are you getting a panic or some deadlock? If possible, it would help a lot...

I attempted to get this driver to connect to a MySQL Docker container, but, unfortunately, it doesn't work. Since [this code](https://github.com/snowflakedb/gosnowflake/blob/74e351e5e110c5b4c409730b47d5fa4058ab1c6f/auth.go#L45-L91) doesn't allow the `authenticator` parameter to be set to...