Jason Thomas
                                            Jason Thomas
                                        
                                    After investigating further it didn't look like this was supported. So I achieved the same result by doing this: ``` Dir.chdir(@current_dir) # Create a temp file to be deleted later...
I am on Windows and I just expected it to be consistent. I noticed it wasn't merging the results and quickly saw it was because of the different paths. Just...
Turns out the domain doesn't really matter if you're using something like traefik. I set mine to `MINIO_BROWSER_REDIRECT_URL: "http://openc3.com/minio"` and then in my traefik.yaml rule I created a router to...
@byroot It seems like the redis-client code does not allow Boolean parameters yet the original redis gem defines them. Here is a relavent stack trace: TypeError : Unsupported command argument...
I'm also seeing an error trying to call `call` on the client: NoMethodError : undefined method `call' for # synchronize { |client| client.call(args) } ^^^^^ Did you mean? call_v We...
So I guess the issue is that your documentation in the code is now incorrect: https://github.com/redis/redis-rb/blob/fdf61e578ae8438e466961cfda91aa9727f914b5/lib/redis/commands/streams.rb#L45. It indicates taking a Boolean and the [example](https://github.com/redis/redis-rb/blob/fdf61e578ae8438e466961cfda91aa9727f914b5/lib/redis/commands/streams.rb#L37) actually shows `approximate: true`. I've been...
@byroot I really think you need to support Boolean and nil arguments or anything in the message hash that is Boolean or nil will throw this error. It seems like...
Makes sense. We were able to fix our own client in [this PR](https://github.com/OpenC3/openc3/pull/211) by adding a bunch of `.to_s`. Seems like there's still a bunch of work to do in...
You might want to just start using: https://github.com/Shopify/httpclient. The Shopify folks forked and updated the certificate due to https://shopify.engineering/that-old-certificate-expired-and-started-an-outage-this-is-what-happened-next
@rfratto I see that loki-promtail is in alpine edge here: https://pkgs.alpinelinux.org/packages?name=loki-promtail&branch=edge&repo=testing&arch=&maintainer=. Will this continue to be maintained and move to community and main? It currently works with my application but...