Skip to content

Commit

Permalink
Merge branch 'release/3.15.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisCarden committed Mar 10, 2022
2 parents 266668e + bd8109a commit a22e6d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.15.0
v3.15.1
7 changes: 4 additions & 3 deletions config/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ drupal/acsf: []
drupal/acsf_sso:
enable: false

drupal/acquia_search:
version: 3.x
version_dev: 3.x-dev
# @todo Temporarily remove drupal/acquia_search due to conflicts with drupal/acquia_cms.
#drupal/acquia_search:
# version: 3.x
# version_dev: 3.x-dev

acquia/blt:
type: composer-plugin
Expand Down
6 changes: 5 additions & 1 deletion src/Domain/Drush/DrushFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ public function getDrushStatus(): array {
$data = json_decode($json, TRUE);

if (json_last_error()) {
throw new OrcaParseError('Invalid Drush output.');
throw new OrcaParseError(sprintf(
'Invalid Drush JSON output: (%s) %s',
json_last_error(),
json_last_error_msg()
));
}

return $data;
Expand Down

0 comments on commit a22e6d9

Please sign in to comment.