Bert Barabas
Bert Barabas
I have a similar crash on import with: ``` from dataclasses import dataclass from typing import ClassVar @dataclass class TestClassVar: start_position: ClassVar[int] = 0x7FFFFFFFFFFFFFFE end_position: ClassVar[int] = 0x7FFFFFFFFFFFFFFF size: ClassVar[int]...
Thanks! This was exactly the information I needed. I used a slight variation. Instead of updating the spec since I was using the autogenerated spec file, I used the --add-binary...
Looks like flickering only starts after a resize. Still true that the presence of a WebView is necessary for the flickering to occur.
I had a similar issue with using rx.asset with the css file appearing and then disappearing: https://discord.com/channels/1029853095527727165/1355930435393159368
I can confirm this still happens on 0.6.1 and this time I was able to more easily reproduce it with a 1MB file rather than a large file.
Hi @masenf, any luck with this one? It pretty much blocks development since it requires stopping reflex run and restarting after most changes...
@masenf - Thinking about your point above that this exception is a problem with vite HMR, I tried both env variables: VITE_FORCE_FULL_RELOAD=1 VITE_HMR=0 But the useContext exception still happens...
Another odd behavior for upload is the on_upload_progress which claims the upload is 100% done but then spends another 10% of the time before returning from rx.upload_files and passing the...
I should point out that the very large memory consumption only happens at the end of the upload just as the file write is starting. It seems fairly moderate during...
I have one more observation that seems to point the root of the issue at gunicorn. I decided to see if it was any faster to upload when running reflex...