Rafał Pitoń
Rafał Pitoń
This comes up once in a while, but seems that @mdo's opinion is "nope, those are crap on mobile": https://github.com/twbs/bootstrap/issues/21026#issuecomment-314134412
Seeing that `size` is calculated attribute, I would rather drop `file` and update those few tests that use it to always `write()` like how formparser does it anyway. It shouldn't...
Only scenario for end users doing this that comes to my mind is people creating custom `UploadFile` instances in their app's tests to see how their upload handling logic is...
@tomchristie Other frameworks: Django: `UploadedFile` has `size` attribute that contains uploaded file's size in bytes. [ref](https://docs.djangoproject.com/en/4.0/ref/files/uploads/#django.core.files.uploadedfile.UploadedFile.size) Flask: `FileStorage` has `content_length` attribute that was extracted from upload's header. [ref](https://werkzeug.palletsprojects.com/en/2.0.x/datastructures/#werkzeug.datastructures.FileStorage.content_length) Use-case for...
Not really an solution to the problem, but if you are okay with dropping versions from your sentry logs, adding `'include_versions': False` to `RAVEN_CONFIG` seems to do the trick for...
This error means that database service failed to start, or it started but PostgreSQL service inside docker is not accepting connections. To debug this run `db` service: ``` docker-compose up...
I'm using broadcaster with Redis backend and it works fine, but AFAIR that's only backend that does. Something is very wrong with our tests suite IMHO. It's supposed to test...
@tomchristie could you please help with this?
@tomchristie it does, thanks! 👍 I'll reach back to you about the token when CI is setup!
@hramezani I've merged your PR but test cases aren't good - they hang causing tests suite to timeout.