Print to stderr instead of raising error if version does not match
This commit is contained in:
parent
3980c2dd01
commit
da9f4230a8
1 changed files with 3 additions and 2 deletions
|
@ -29,8 +29,9 @@ try:
|
||||||
current_version = _lttng.get_version()
|
current_version = _lttng.get_version()
|
||||||
LTTNG_MIN_VERSION = '2.10.7'
|
LTTNG_MIN_VERSION = '2.10.7'
|
||||||
if current_version is None or current_version < StrictVersion(LTTNG_MIN_VERSION):
|
if current_version is None or current_version < StrictVersion(LTTNG_MIN_VERSION):
|
||||||
raise RuntimeError(
|
print(
|
||||||
f'lttng module version >={LTTNG_MIN_VERSION} required, found {str(current_version)}'
|
f'lttng module version >={LTTNG_MIN_VERSION} required, found {str(current_version)}',
|
||||||
|
file=sys.stderr,
|
||||||
)
|
)
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# Fall back on stub functions so that this still passes linter checks
|
# Fall back on stub functions so that this still passes linter checks
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue