Matt Mc
Matt Mc
This is not clear from the documentation, but if I use a type that implements `driver.Value` in a `Where()` or a `Find()`, will this package call `Value()` on the type...
Hey there, very interested in trying out this project. Wondering where MS SQLServer support would be on the roadmap? Thanks.
Use [go-bindata](https://github.com/kevinburke/go-bindata) or comparable to package the dashboard into the binary.
More documentation is needed, in general. More specifically, there should be samples of schedule strings. For example, a job with no schedule will run immediately, but a one-off job would...
Currently the MySQL storage driver uses https://github.com/lestrrat-go/test-mysqld to perform some test with a real database (in addition to the fully mocked ones provided by the datadog library). However, the lestrrat...
The following test will produce a panic in the Postgres and Mongo storage methods: ```go func TestPersistEpsilon(t *testing.T) { db := NewDatabase(dsn) // placeholder for connecting to the applicable database...
Was thinking of adding a Firestore backend: https://godoc.org/cloud.google.com/go/firestore Was curious if anyone had input on the feasibility of such?
I'm using a Lua module that modifies `string` to add additional functions for handling utf8. I would like to write some Teal definition files so my linter doesn't complain when...
With a couple hours of hacking I got `tl check` working as a linter in Sublime, via [SublimeLinter](https://github.com/SublimeLinter/SublimeLinter). There are a couple of adjustments to the output that would increase...
Currently looks like the retry mechanism will only engage if there's an actual [error in sending the request](https://github.com/gojek/heimdall/blob/master/httpclient/client.go#L155), or if it's a [5xx response code](https://github.com/gojek/heimdall/blob/master/httpclient/client.go#L164). It would be handy to...