Florent Aide

Results 8 comments of Florent Aide

After inspection it seems kallax uses the `DBProxyContext` but only uses the interface of `DBProxy` so a simple replacement could do the trick. But, unfortunately it seems squirel Master also...

After even more code sifting I infer that you are indeed using squirrel `v1` instead of `master` (master not being used by squirrel itself) So in fact I think kallax...

I am using go 1.10.3 Le 1 juil. 2018 2:30 PM, "Roberto Santalla" a écrit : > Which go version are you using? According to squirrel's README: > > NOTE:...

I have nearly the same issue with such code: ```golang assert.Equal(t, decimal.Zero, decimal.NewFromFloat(0)) ``` which fails because of the exp value: ```golang Error: Not equal: expected: decimal.Decimal{value:(*big.Int)(0xc00000e760), exp:1} actual :...

Well, this is not perfect but at least you can use: ```golang assert.True(t, struct1.DecimalField.Equal(struct2.DecimalField)) ``` as @Martin91 pointed out above. The point here is to use decimal1.Equal(decimal2) or decimal1.Cmp(decimal2) before...

Hello, I can confirm I have encountered this bug "reliably" (ie: each time I try to run kubespray to install a multimaster cluster) I confirm that the patch works and...

More info: on the 6 machines I asked for 3 masters and 3 workers each time

I can confirm that the issue still exists as of cset 4baa2c870 and that this PR fixes the issue for multi-master clusters. Can we help in some way to make...