Witold Konior

Results 4 issues of Witold Konior

Is it somehow possible to add tags with comma eg. with `mapstructure`: ``` type Friend struct { Person `mapstructure:",squash"` } ``` I tried this but then squash is treated as...

I'm getting very frequently this type of error from query command: `206 Partial Content` From server side it looks like this: ``` ts=2018-03-09T16:24:12.89164847Z level=error component=API op=handleUserQuery error="Get http://100.96.1.240:7650/store/_query?from=2018-03-09T12%3A24%3A07%2B01%3A00&to=2018-03-09T13%3A24%3A07%2B01%3A00&q=blahblah;regex=true: net/http: timeout...

bug

I'm landing in unrecoverable state with following stack trace: ``` panic: short record goroutine 85 [running]: github.com/oklog/oklog/pkg/store.mergeRecords.func1(0x0, 0xc42021550d, 0x22c) /home/wk/go/src/github.com/oklog/oklog/pkg/store/read.go:55 +0x25c github.com/oklog/oklog/pkg/store.mergeRecords(0xaa5840, 0xc420506690, 0xc4203e5a08, 0x1, 0x1, 0xa3be421fb626201, 0x271c65c7a4ee6135, 0x2e7c4d26fb626201, 0x691c061555dc58bb,...

bug

When running the below test time zone is not consistent: ```go func TestDateParseOptions(t *testing.T) { t0, err := dateparse.ParseAny("21/09/2010", dateparse.RetryAmbiguousDateWithSwap(true)) require.NoError(t, err) t1, err := dateparse.ParseAny("09/21/2010", dateparse.RetryAmbiguousDateWithSwap(true)) require.NoError(t, err) require.Equal(t,...