试图避免让RQmeta
显示关于使用字典进行任意属性使用的警告消息(向控制台) 。我们按照指定使用它,并且警告继续显示。
显示的警告如下:
/usr/local/lib/python2.7/site-packages/rq/job.py:381: SyntaxWarning: Getting custom properties from the job instance directly will be unsupported as of RQ 0.4. Please use the meta dict to store all custom variables. So instead of this:
job.foo
Use this:
job.meta['foo']
SyntaxWarning)
基本上,这很烦人,因为它会干扰正常的调试活动。
关于如何禁用此功能的任何想法?