Merge pull request #1795 from rhelmot/dev

Use libunicorn.so.2 as fallback path
This commit is contained in:
lazymio 2023-03-02 20:15:52 +01:00 committed by GitHub
commit ca7e0e7f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ _path_list = [os.getenv('LIBUNICORN_PATH', None),
for _path in _path_list:
if _path is None: continue
_uc = _load_lib(_path, _lib.get(sys.platform, "libunicorn.so"))
_uc = _load_lib(_path, _lib.get(sys.platform, "libunicorn.so.2"))
if _uc is not None:
break