Konstantin Shabanov

Results 18 comments of Konstantin Shabanov

```elixir iex(11)> ~N[2021-03-14 01:59:59] |> Timex.Timezone.convert("America/Chicago") #DateTime iex(12)> ~N[2021-03-14 02:00:00] |> Timex.Timezone.convert("America/Chicago") {:error, {:could_not_resolve_timezone, "America/Chicago", 63782906400, :wall}} iex(13)> ~N[2021-03-14 02:59:59] |> Timex.Timezone.convert("America/Chicago") {:error, {:could_not_resolve_timezone, "America/Chicago", 63782909999, :wall}} iex(14)> ~N[2021-03-14 03:00:00]...

@nertzy this is still the issue. Your spec don't fail with activerecord 4.2 because `.all` returns `Relation` in latest versions. If you replace `.all` with `.to_a` you'll see an exception.

@dblock I dunno. I decided to close it as stale because it wasn't caught by anyone else for the whole 3 years.

@dblock unfortunately not :) I don't use grape anymore (so as Ruby).

Actually, there is a way to provide the password through address url. If a redis instance has: ``` requirepass "hello world" ``` ``` trigger = {type = "redis", address =...

I couldn't reproduce it using (with and w/o `--release` flag) spin 0.5.0 (1ce374a 2022-09-20) grain-linux-x64 0.5.3

As it passes on CI, it looks like there are some breaking changes between 0.22 and 0.26 - https://github.com/fermyon/spin/actions/runs/3245485308/jobs/5323079898 This is from the log on CI (0.22): ``` make -C...

I did a little research about it - it works fine up to 0.25.0 (incl). Also, I've figured out the commit that is causing the issue - https://github.com/tinygo-org/tinygo/commit/03d1c44265e1f628b2730b9c214db2390a745ee6 Reverting it...

@itowlson I've added decoding support for the following `DbValue`s so as their NULLable variants: - `boolean(bool)` - `int16(s16)` - `int32(s32)` - `int64(s64)` - `floating32(float32)` - `floating64(float64)` - `str(string)` - `binary(list)`...

> such as whether to go for a more resource-oriented view of connections and transactions and so on Yeah, I was looking into more resource-oriented approach but wit-bindgen [is currently...