任意のプロパティの使用に辞書を使用することについて、 RQが (コンソールに) 警告メッセージを表示することを回避しようとしています。meta
指定どおりに使用しており、警告が引き続き表示されます。
表示される警告は次のとおりです。
/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)
基本的に、通常のデバッグ アクティビティに干渉するため、かなり面倒です。
これを無効にする方法についてのアイデアはありますか?