Skip to content

Commit

Permalink
Fix domain:add bug after client library change
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcdawkins committed Sep 6, 2015
1 parent 06bd7b3 commit 05f872d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Command/Domain/DomainAddCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

try {
// @todo the wildcard argument has no effect: update it upstream
$domain = $this->getSelectedProject()
->addDomain($this->domainName, false, $this->sslOptions);
->addDomain($this->domainName, $this->sslOptions);
}
catch (ClientException $e) {
// Catch 409 Conflict errors.
Expand Down

0 comments on commit 05f872d

Please sign in to comment.