NotSqrt
NotSqrt
:+1: Would be happy to see this implemented ! I've seen the following fork implementing related things: https://github.com/qianthinking/ember-select-2 Any other examples that I could build upon in the mean time...
Is there actually a way to be hooked into options.formatResult (https://github.com/iStefo/ember-select-2/blob/master/addon/components/select-2.js#L102) or options.formatSelection ?
Oh, I've seen #35
I hit this bug when plugging the `RedisStorage` in my project, but my current pool uses: `pool = await aioredis.create_redis_pool(redis_url, encoding='utf-8')`. The `encoding` parameter already apply `.decode('utf-8')`, no need to...
So regroup decoding and unserializing ? `decoder=lambda data: json.loads(data.decode('utf-8'))`, so that everyone can customize the decoder/encoder ?
This issue is about multiple problems: * mine, where it's not necessary to re-decode data if the redis client is already configured to do the decoding * @alex-eri , who...
Yep, seems interesting. I'll look into it. I had enabled the auto sync from Transifex side. But we still need to manually retrieve the translations and commit them. If this...
No issues currently reported on http://status.quay.io/ .. Edit: it seems my ISP is having trouble with traffic routing to AWS. A mirror would be very helpful to circumvent this problem...
It seems something like this helps: ```diff - let outgoing_resp = outgoing_resp_builder.body(upstream_resp.body().await?); + let outgoing_resp = outgoing_resp_builder.body(upstream_resp.body().limit(20_000_000).await?); ``` See https://docs.rs/awc/2.0.3/awc/struct.MessageBody.html#method.limit By default, the limit is 256kB
Well, maybe not for big uploads, but for big downloads, it definitely solved my error.