You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before job added to the queue, we executing adv_bind_arguments here
If processor has **kwargs defined inside, all data will be lost and "Argument missing" error will be raised. This is example of adv_bind_arguments behaviour with **kwargs function:
As you can see a=1 is lost and "Argument missing" error will be raise when processor will try to execute this job.
This is especially critical when you want to decorate your sqs processor, because you should have *args, **kwargs statement inside a decorator.
The text was updated successfully, but these errors were encountered:
Before job added to the queue, we executing
adv_bind_arguments
hereIf processor has
**kwargs
defined inside, all data will be lost and "Argument missing" error will be raised. This is example of adv_bind_arguments behaviour with**kwargs
function:As you can see
a=1
is lost and "Argument missing" error will be raise when processor will try to execute this job.This is especially critical when you want to decorate your sqs processor, because you should have
*args, **kwargs
statement inside a decorator.The text was updated successfully, but these errors were encountered: