VSilantyev

Results 7 comments of VSilantyev

I've resolved this issue with --no-patch option. The problem is in the openssl patch: https://github.com/phpbrew/phpbrew/pull/1186

Agreed, that will be a good feature. For now I wrote a small plugin to implement this feature, almost entirely copy-pasted from the user-prefs plugin. Save as puppeteer-extra-plugin-local-state.js ```js 'use...

I think performance is O(n) from number of unique items in the queue. Seems like there is linked list for holding cache entities: https://github.com/noxdafox/rabbitmq-message-deduplication/blob/b2227b72f7eb55d23b5ce7fb42ef0b9c7cef52dd/lib/rabbitmq_message_deduplication/cache.ex#L189 List.keyfind: https://hexdocs.pm/elixir/1.13/List.html

@noxdafox Thank you for such detailed reply. Indeed I was wrong about O(n), missed a part about Mnesia.read. My bad, I do not know erlang. It would be great to...

I have the same scenario, added "case 'help'" to my branch.

@bcismariu Did you succeed with this PR? I got the error on fluentbit side, when testing this PR: ``` [ warn] [input:forward:forward.0] invalid data format, type=4 ```

Thank you. I believe this PR will work with fluentd, and will not work with fluentbit. fluentbit expects nanoseconds as msgpack ext type https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v0#eventtime-ext-format Implemented it with https://github.com/rybakit/msgpack.php#custom-types ```php $secs...