Skip to content

Commit

Permalink
Fixed fetch policy issue (#3194)
Browse files Browse the repository at this point in the history
Signed-off-by: Amit Kumar Das <[email protected]>
  • Loading branch information
amityt authored Sep 14, 2021
1 parent b8d2e74 commit 148bf6d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const TuneWorkflow = forwardRef((_, ref) => {
});
setAllExperiments([...allExp]);
},
fetchPolicy: 'cache-and-network',
fetchPolicy: 'network-only',
});

/**
Expand All @@ -180,6 +180,7 @@ const TuneWorkflow = forwardRef((_, ref) => {
manifest: YAML.stringify(updatedManifest),
});
},
fetchPolicy: 'network-only',
}
);

Expand Down

0 comments on commit 148bf6d

Please sign in to comment.