Evgeny Filatov
Evgeny Filatov
I've got the same issue on Ubuntu 18.04. It's not safe to use ClientSession from several coroutines asyncroneously (`gather()`-ing them or from Tasks). For examle, concurent coroutines that scrape different...
I've come across the same issue. In my case it is caused because 'in_app' list can be empty. ``` return response.receipt.last_in_app File "/home/vagrant/.local/share/virtualenvs/Server/lib/python3.6/site-packages/itunesiap/receipt.py", line 310, in last_in_app self.in_app, key=lambda x:...
It occurred to me, that the algo used to retrieve last_in_app is wrong. There can be several transactions having the same original_purchase_date. For example, it's true for subscriptions which share...
> If everything is as you describe, then the bug was not there, but there is an unfortunate situation, but yes, from a user perspective to fall is not good....
@michaellukashov, Far 3.0 build 4550 x86 Now it's much more difficult to crash it down but still possible. I open a file on the server, modify it, close down the...
smux-anki-converter 1.8 snapshot The same problem with "EE Proficiency" deck dated September 2009. There is also a notable thing during parsing: a lot of generated files and directories have names...
Found a similar discussion where this issue left unresolved: http://markmail.org/message/dv73bduccaj564xs#query:+page:1+mid:kwghjks6dsbjpoz7+state:results
A short debug has helped: the proficiency deck has been successfully parsed after adding +1 to this line: SmPakParser.java, LIne 231 `int currentNamePos = this.namePos + readInt() >>> + 1;
Got the same issue on Windows 10 with vagrant ssh and mc inside. Vagrantfile ```ruby Vagrant.configure("2") do |config| config.vm.box = "ubuntu/bionic64" config.vm.provider "virtualbox" do |vb| vb.memory = "1024" end config.vm.provision...
It's likely you need "partial" functions ```python >>> from functools import partial >>> def a(arg1: int): ... print(arg1) ... >>> a_with_2 = partial(a, 2) >>> a_with_2() 2 ```