File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,9 @@ Changed
71
71
This functionality should never be used in production, but only in development environments or
72
72
similar when debugging code. #5199
73
73
74
+ * Silence pylint about dev/debugging utility (tools/direct_queue_publisher.py) that uses pika because kombu
75
+ doesn't support what it does. If anyone uses that utility, they have to install pika manually. #5380
76
+
74
77
Fixed
75
78
~~~~~
76
79
Original file line number Diff line number Diff line change 18
18
from __future__ import absolute_import
19
19
import argparse
20
20
21
- import pika
21
+ try :
22
+ import pika # pylint disable=import-error
23
+ except ImportError :
24
+ raise ImportError (
25
+ "Pika is not installed with StackStorm. Install it manually to use this tool."
26
+ )
22
27
23
28
24
29
def main (queue , payload ):
You can’t perform that action at this time.
0 commit comments