Skip to content

Commit

Permalink
Merge pull request #1002 from cdapio/bugfix-ui/cdap-20603
Browse files Browse the repository at this point in the history
CDAP-20603 Ensure error messages are shown when creating a Wrangler workspace
  • Loading branch information
njbriggs authored May 3, 2023
2 parents 0de2bbe + cfd26e6 commit 58eb149
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export function GenericBrowser({ initialConnectionId, onEntityChange, selectedPa

const onCreateWorkspace = async (entity, parseConfig = {}) => {
try {
createWorkspaceInternal(entity, parseConfig);
await createWorkspaceInternal(entity, parseConfig);
} catch (e) {
setError(`Failed to create workspace. Error: ${e}`);
setLoading(false);
Expand Down

0 comments on commit 58eb149

Please sign in to comment.