Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Mar 9, 2020
1 parent b66fb96 commit e49926e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion durablefunctionsmonitor-vscodeext/src/BackendProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class BackendProcess {
.then(resolve, reject)
.finally(stopProgress);

}, (err: any) => { stopProgress(); reject(err); });
}, (err: any) => { stopProgress(); reject(`Failed to choose port for backend: ${err.message}`); });
}));
});

Expand Down

0 comments on commit e49926e

Please sign in to comment.