Stan Hu
Stan Hu
The tests were previously failing due to keyword argument changes in Ruby 3.0. - [ ] Did you create an [Apache Jira](https://issues.apache.org/jira/projects/THRIFT/issues/) ticket? (not required for trivial changes) - [...
Right now it appears `Pry.config.color = false` can be set (https://github.com/pry/pry/wiki/Customization-and-configuration#color), but `irb` and other programs support `NO_COLOR` to disable color output: https://no-color.org/. What do you think about supporting this?
In Sidekiq 6, there was one connection pool of size concurrency + 5. In Sidekiq 7, a capsule has its own connection pool of size concurrency, and there is an...
Previously if you had a template with `variables` that used the `lazy` keyword, previously it was not possible to validate that the blocks were evaluated in the template. The rendered...
At GitLab, we've been running [prometheus-client-mmap](https://gitlab.com/gitlab-org/ruby/gems/prometheus-client-mmap) to record and report Prometheus metrics. It's an early fork of this project and uses a C extension with `mmap()` to optimize both the...
Previously when a service account attempted to use the IAM SignBlob API, the request would fail with a 403 `ACCESS_TOKEN_SCOPE_INSUFFICIENT` because the wrong scope was requested. As documented in https://cloud.google.com/iam/docs/reference/credentials/rest/v1/projects.serviceAccounts/signBlob,...
This was added in the upstream AWS library: https://github.com/aws/aws-sdk-ruby/pull/2924 I think `credential_fetcher` would needed to be updated to avoid GET requests (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html) and only use PUT requests.
pycrc could be even faster if it supported the slicing-by-8 or slicing-by-4 algorithms, which would just require additional tables to be generated: https://matt.sh/redis-crcspeed http://create.stephan-brumme.com/crc32/ Is this something you would want...
In https://github.com/mudge/re2/pull/76, using a precompiled gem with `alpine` or other musl-based systems requires: ```shell apk add libstdc++ gcompat ``` For now, we should just document this requirement. Using a musl...