File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
st2client/st2client/formatters
st2common/st2common/constants Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2424try :
2525 from yaml import CSafeDumperx as YamlSafeDumper
2626except ImportError :
27+ # NOTE: We install libyaml-dev in our packages so libyaml will always be available when using
28+ # official StackStorm packages.
29+ # Only time it may not be available is if the user is doing custom install from source or
30+ # similar.
2731 logging .getLogger (__name__ ).warn (
2832 "libYAML C bindings are not available. This means YAML "
2933 "parsing and serialization will be significantly slower. You are "
Original file line number Diff line number Diff line change 2222try :
2323 from yaml import CSafeLoader as YamlSafeLoader
2424except ImportError :
25+ # NOTE: We install libyaml-dev in our packages so libyaml will always be available when using
26+ # official StackStorm packages.
27+ # Only time it may not be available is if the user is doing custom install from source or
28+ # similar.
2529 logging .getLogger (__name__ ).warn (
2630 "libYAML C bindings are not available. This means YAML "
2731 "parsing and serialization will be significantly slower. You are "
You can’t perform that action at this time.
0 commit comments