Andrey Novikov

Results 33 issues of Andrey Novikov

As this gem actually stores runtime data in Anycable's Redis instance it is comparatively easy to use all available space by stale data about subscriptions (if for some reason it...

discussion

In #457 handling of integer keys with a value equal to just zero (`0`) has been broken. They should be treated consistently with other integer-like keys, like `1`, `2` or...

Context: I'm using Postman to test API endpoints that are located on API Gateway (and backed by Lambda functions) with request authentication by AWS signature. And everything works great except...

This is related, but different from #710. I'm not sure that there is a bug, maybe I just need use these packages differently as I'm using them at quite low...

Given the current implementation of `group` method for DSL: https://github.com/yabeda-rb/yabeda/blob/bd3b49fe0fd293fe6ac2d29f9e04fa5bdde79b0c/lib/yabeda/dsl/class_methods.rb#L31-L37 We can configure sibling groups ```ruby Yabeda.configure do group :g1 # config group :g2 # config end ``` or attempt...

Currently Fullstaq Ruby is being compiled only against jemalloc 3 and docs state following in README [here](https://github.com/fullstaq-ruby/server-edition/blob/7ff94fde818ecea413d425412984529d5f07e209/README.md#vs-ld_preloading-jemalloc-yourself): > Only Jemalloc 3 yields reduced memory usage, Jemalloc 5 does not. However,...

enhancement

It seems that by mistake I chose the ambigous name `worker` for use in metric or label names. It led to my confusion several times (e.g. in https://github.com/yabeda-rb/yabeda-sidekiq/pull/11#discussion_r429628493 or https://github.com/yabeda-rb/yabeda-sidekiq/pull/13#discussion_r456476182)...

This fixes https://github.com/aidan-/httpie-aws-authv4/issues/10 (see this original issue for more details) **The problem** Sometimes body can be not only string, but some complex objects-generators like [`request_toolbelt`'s `MultipartEncoder`](https://toolbelt.readthedocs.io/en/latest/uploading-data.html). In that case following...

First of all, thank you very much for this plugin! It works awesome, but not in the following use case: When I'm trying to make a `multipart/form-data` request with `http...

This doesn't work: ```rb require 'representable' require 'representable/json/hash' require 'base64' class FooRepresenterHash < Representable::Decorator include Representable::JSON::Hash property :binary1, getter: proc { |represented:, **| represented['binary1'] && Base64.strict_encode64(represented['binary1']) } property :binary2, render_filter:...