Ondřej Bárta

Results 16 comments of Ondřej Bárta

@rnicholus ` ` ... var manualUploader = new qq.FineUploader({ element: document.getElementById('fine-uploader-manual-trigger'), template: 'qq-template-manual-trigger', request: { endpoint: "/upload-server/upload" }, chunking: { enabled: true, success: { endpoint: "/upload-server/chunksdone" } }, thumbnails: {...

> And also let me know when this last worked (version) I don't know, I tested 5.13.0, 5.10.0 - Not working...

In docs: Providing your own UUID for files > If you would like to track files with your own generated UUID, you can return the new UUID for the file...

same problem, python 3, celery 4... rabbitmq or redis.

I'm rewriting my api in graphene_django to strawberry. Currently the code I use for graphene_django is much more readable: ``` class SiteType(DjangoObjectType): class PlayerSiteDataType(graphene.ObjectType): src = graphene.String() size = graphene.String()...

@vitosamson it looks good. Thank you!

Please leave the default value MAX_ENTRIES to None if you are going to change this..

Its work fine for me: workflow = chord(group(tasks), callback_x_task(url=data["callback"], data=request.data, status="done"), ).on_error(group(( callback_x_task(url=data["callback"], data=request.data, status="failed"), callback_task(url=t.api_url, status=Status.FAILED), ))) or: workflow = chord( task, callback_x_task(url=data["callback"], data=request.data, status="done"), ).on_error(group(( callback_x_task(url=data["callback"], data=request.data, status="failed"),...