Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matvey-Kuk committed Dec 25, 2024
1 parent e278dbb commit e4e00cf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ def is_elastic_responsive(host, port, user, password):
info = elastic_client._client.info()
print("Elastic still up now")
return True if info else False
except Exception:
print("Elastic still not up")
except Exception as e:
print(f"Elastic still not up: {e}")

return False

Expand Down

0 comments on commit e4e00cf

Please sign in to comment.