We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
)> jhack show-relation hexanator:send-ca-cert ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮ │ /code/jhack/jhack/utils/show_relation.py:980 in sync_show_relation │ │ │ │ 977 │ - ``$ jhack utils show-relation my_app:peers`` - peer relation\n │ │ 978 │ - ``$ jhack utils show-relation my_app:foo cross_model_app:bar`` - CMRs\n │ │ 979 │ """ │ │ ❱ 980 │ return _sync_show_relation( │ │ 981 │ │ endpoint1=endpoint1, │ │ 982 │ │ endpoint2=endpoint2, │ │ 983 │ │ n=n, │ │ │ │ ╭──────────────────── locals ────────────────────╮ │ │ │ color = 'auto' │ │ │ │ endpoint1 = 'hexanator:send-ca-cert' │ │ │ │ endpoint2 = None │ │ │ │ format = <Format.auto: 'auto'> │ │ │ │ hide_empty_databags = False │ │ │ │ model = None │ │ │ │ n = None │ │ │ │ show_juju_keys = False │ │ │ │ watch = False │ │ │ ╰────────────────────────────────────────────────╯ │ │ │ │ /code/jhack/jhack/utils/show_relation.py:1019 in _sync_show_relation │ │ │ │ 1016 │ while True: │ │ 1017 │ │ start = time.time() │ │ 1018 │ │ │ │ ❱ 1019 │ │ table = asyncio.run( │ │ 1020 │ │ │ render_relation( │ │ 1021 │ │ │ │ endpoint1, │ │ 1022 │ │ │ │ endpoint2, │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ color = 'auto' │ │ │ │ Console = <class 'rich.console.Console'> │ │ │ │ console = <console width=181 ColorSystem.TRUECOLOR> │ │ │ │ endpoint1 = 'hexanator:send-ca-cert' │ │ │ │ endpoint2 = None │ │ │ │ format = <Format.auto: 'auto'> │ │ │ │ hide_empty_databags = False │ │ │ │ model = None │ │ │ │ n = None │ │ │ │ rich = <module 'rich' from │ │ │ │ '/code/jhack/.ahh-venv/lib/python3.13/site-packages/rich/__init__.py'> │ │ │ │ show_juju_keys = False │ │ │ │ start = 1741588711.6658273 │ │ │ │ watch = False │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /home/dima.linux/.local/share/uv/python/cpython-3.13.0-linux-aarch64-gnu/lib/python3.13/asyncio/ │ │ runners.py:194 in run │ │ │ │ 191 │ │ │ "asyncio.run() cannot be called from a running event loop") │ │ 192 │ │ │ 193 │ with Runner(debug=debug, loop_factory=loop_factory) as runner: │ │ ❱ 194 │ │ return runner.run(main) │
py 3.13 venv jhack show-relation hexanator:send-ca-cert
...
The text was updated successfully, but these errors were encountered:
Basically, starting from some Python version, it's no longer legal to go async -> sync -> async
Sorry, something went wrong.
No branches or pull requests
Bug Description
To Reproduce
py 3.13 venv
jhack show-relation hexanator:send-ca-cert
Environment
...
Relevant log output
Additional context
...
The text was updated successfully, but these errors were encountered: