Skip to content
Snippets Groups Projects
Commit 80e9ae15 authored by Neda Moeini's avatar Neda Moeini
Browse files

Pop run_results key from state after the confirm pop-up.

parent 2ef952ba
Branches
Tags
No related merge requests found
Pipeline #85328 passed
......@@ -135,9 +135,10 @@ def _show_pp_results(state: State) -> FormGenerator:
title: str = f"Execution for {state['subscription']['product']['name']} completed."
run_status: str = ReadOnlyField(state["callback_result"]["status"])
callback_result: LongText = ReadOnlyField(json.dumps(state["callback_result"], indent=4))
run_results: LongText = ReadOnlyField(json.dumps(state["callback_result"], indent=4))
yield ConfirmRunPage
state.pop("run_results")
return state
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment