Skip to content
Open
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
3 changes: 2 additions & 1 deletion demisto_sdk/commands/run_playbook/playbook_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def run_playbook(self) -> int:
if self.should_wait:
logger.info(
f"Waiting for the playbook to finish running.. \n"
f"To see the playbook run in real-time, visit: {work_plan_link}"
f"To see the playbook run in real-time, visit: {work_plan_link}\n"
f"Or for the web console: {work_plan_link.replace('/#/', '/').replace('//api-', '//')}"
)
try:
playbook_state_raw_response = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def run_and_check_tpb_status(self, test_playbook_id, work_plan_link, incident_id
status_code = SUCCESS_RETURN_CODE
logger.info(
f"<green>Waiting for the test playbook to finish running.. \n"
f"To see the test playbook run in real-time please go to : {work_plan_link}</green>"
f"To see the test playbook run in real-time please go to : {work_plan_link}\n"
f"Or for the web console: {work_plan_link.replace('/#/', '/').replace('//api-', '//')}</green>"
)

elapsed_time = 0
Expand Down