nim-chronos icon indicating copy to clipboard operation
nim-chronos copied to clipboard

Chronos - An efficient library for asynchronous programming

Results 84 nim-chronos issues
Sort by recently updated
recently updated
newest added

When `TLSFlags.NoVerifyServerName` is specified, in `tlsstream.nim`, BearSSL is configured with `sslClientReset(res.ccontext, "", 0)`. While this disables server name verification, it also disables sending SNI, leading to connection failure when connecting...

ref https://github.com/status-im/nim-chronos/pull/296#pullrequestreview-1060182626 Creating an issue to avoid forgetting about it

In `stream.readLoop`, a finished `Future` was left in `transp.reader` if there was an error in `resumeRead`. Set it to `nil` as well.

We've been porting our `threadpool` based TCP and UDP servers over to `chronos` instead, which has been quite lovely for the most part. One thing I've hit though, is the...

I know this is a compiler regression when using Nim devel. But I cannot pinpoint or how to reproduce without chronos. This issue is to remind us because we often...

I suspect a bug with the TokenBucket update calculation. I think due to the lastUpdate field is updated wrong thus leads false calculation in update method and result in refilling...

### The Problem I've recently tried to compile docs of a project of mine which makes use of the `chronos/threadsync` module in 2 places. I've come to notice that it...

Heyho, While writing code for a library of mine with chronos I noticed that some of my tests were showing leaks under address sanitizer, but only under `--mm:arc`. I managed...