Stan Hu
Stan Hu
@ashie I suspect we need https://github.com/fluent/fluentd/pull/4336 after all. I'm seeing what looks to be a race condition on a single worker instance.
@ashie `out_cloud_pubsub.rb` is this: ```ruby # Originally copied from https://github.com/yosssi/fluent-plugin-cloud-pubsub # License: MIT require 'google/cloud/pubsub' module Fluent class CloudPubSubOutput < BufferedOutput MAX_REQ_SIZE = 10 * 1024 * 1024 # 10...
Thanks! Could you resolve the conflicts and add some documentation to `README.md`?
I wasn't able to reproduce the problem, but maybe `CFLAGS` would make more sense than `CPPFLAGS`? ```diff diff --git a/ext/charlock_holmes/extconf.rb b/ext/charlock_holmes/extconf.rb index 903c297..e33ff81 100644 --- a/ext/charlock_holmes/extconf.rb +++ b/ext/charlock_holmes/extconf.rb @@ -67,7...
I'm not sue what's going on your system. I have hundreds of team members who have had to compile and install this gem on all sorts of macOS and clang...
The spec failures are fixed by https://github.com/doorkeeper-gem/doorkeeper/pull/1742. Rebase `main`.
I think this issue could be better summarized, "Some native extensions not reinstalled properly with BUNDLE_GLOBAL_GEM_CACHE=1". Here's how I reproduced the problem: 1. `docker run -it ruby:3.0 bash` 1. `apt...
What do you think @kenhys?
@wty-Bryant What do you think about https://github.com/aws/aws-sdk-go-v2/pull/3148? I will do some testing with third-party S3 providers, but I wanted to see if the approach was okay with you.
@wty-Bryant FYI, I tested `awscli` with the `--debug` flag and noticed that it uses `CRC64NVME` by default for both regular and multipart uploads: ``` x-amz-sdk-checksum-algorithm:CRC64NVME x-amz-trailer:x-amz-checksum-crc64nvme ``` I'm curious why...