Skip to content
New issue

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

fix: handle fullInputs for relaunch workflow #171

Merged
merged 2 commits into from
Jun 3, 2021
Merged
Changes from 1 commit
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
12 changes: 11 additions & 1 deletion src/components/Executions/useWorkflowExecution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,17 @@ export const fetchWorkflowExecutionInputs = async (
if (execution.closure.computedInputs) {
return execution.closure.computedInputs;
}
const { inputs } = await getExecutionData(execution.id);
/** Note:
* getExecutionData will retun signed urls (`inputs`) as well as raw values
* (`fullInputs`) if input payload isn't too large.
*
* If a signed URL is returned `fullInputs` will be null; use `fullInputs`
* when available.
*/
const { inputs, fullInputs } = await getExecutionData(execution.id);
if (fullInputs) {
return LiteralMap.create(fullInputs);
}
if (
!inputs.url ||
!inputs.bytes ||
Expand Down