Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion charon/cmd/cmd_sign.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ def sign(
"ignore_patterns": ig_patterns,
"radas_config": radas_conf
}
logger.debug("params: %s", args)
sign_in_radas(**args) # type: ignore
except Exception:
print(traceback.format_exc())
Expand Down
2 changes: 2 additions & 0 deletions charon/pkgs/radas_sign.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,12 @@ def __init__(self, payload: Any, rconf: RadasConfig):

def on_start(self, event):
self._container = event.container
self.log.debug("Start creating connection for sender")
conn = self._container.connect(
url=self.rconf.umb_target(),
ssl_domain=self._ssl
)
self.log.debug("Connection to %s is created.", conn.hostname)
if conn:
self._sender = self._container.create_sender(conn, self.rconf.request_channel())

Expand Down