Skip to content
Snippets Groups Projects
Commit 3e75e9e2 authored by Janet Goldstein's avatar Janet Goldstein
Browse files

WS-649: method was misnamed

parent 68001a3c
No related branches found
No related tags found
1 merge request!502WS-649: send CARTA URL to workspaces system
Pipeline #2875 failed
......@@ -309,13 +309,13 @@ class WorkflowConnect:
self.settings = settings
self.url = settings["workflow_url"]
def send_url_message(self):
def send_carta_url_to_rh(self, wrapper_url: str):
"""
Makes REST call to send message containing CARTA URL to workspaces system
:return:
"""
send_url_message = f"{self.settings['workflow_url']}/workflows/carta/requests/{self.settings['wf_request_id']}/send-url-to-ws"
payload = {"carta_url": self.url}
payload = {"carta_url": wrapper_url}
self.logger.info(
"Sending REST call to workflow service for WS CARTA messaging."
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment