vitidev
vitidev
@tomMoral >kill_workers=True in shutdown to immediately stop the workers on shutdown. I do not want to kill workers. I want to stop gracefully It doesn't work anyway. Execution doesn't even...
results = list(...) + executor.shutdown(kill_workers=True) works for **hard** interruption. Thanks. But what if I want to gracefully interrupt - let me finish the current executing tasks (not queued) and exit....
>I think improving the cancellation policy would prove valuable and it would be a good new feature. if it is possible. I am develop on C#. There are "thread abort"...
Dapper shows sql in output window, but fastcrud not. and it saddens
Or download vsix from marketplace and modify 2 files: extension.vsixmanifest and catalog.json Replace "[15.0,16.0)" with "[15.0,17.0)"
>The complexity of caching across multiple directories is pretty high Mmm. Key management and journal remains the same, but change the final locations. Something like this DiskLruCache > Entry val...
>I don’t think we can rely on the first two characters of the file name being unique for the directory’s name. What kind of uniqueness are we talking about? This...
@mgravell Yes. I found `QueryAsync(this IDbConnection cnn, CommandDefinition command) ` But it was expected that synchronous and asynchronous versions will have "mirror" signatures. Sometimes you have to convert Query into...
The error still exists and seems never to be fixed. Thanks @ravimpatel for a good solution.
I expect that with open('src.txt', 'r') as f: for line in f: and with the same file resp = requests.get('http://127.0.0.1:5000/src.txt', stream=True) for line in resp.iter_lines(delimiter=b"\n"): Should be equivalent file `src.txt`...