Skip to content

Commit

Permalink
fix: Remove secret dsn
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Jun 4, 2018
1 parent 88be515 commit c5f192c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.10.2

* Remove secret DSN part check for prompt

## v0.10.1

* Use opn in favor of open
Expand Down
3 changes: 0 additions & 3 deletions lib/Steps/PromptForParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@ export class PromptForParameters extends BaseStep {
if (match[1] !== 'http' && match[1] !== 'https') {
return 'Unsupported protocol for DSN: ' + match[1];
}
if (!match[3]) {
return 'Missing secret in DSN';
}
return true;
}
}

0 comments on commit c5f192c

Please sign in to comment.