Skip to content

Commit

Permalink
UHF-9125: Fix artemis login credential default value
Browse files Browse the repository at this point in the history
  • Loading branch information
tuutti committed Oct 10, 2023
1 parent 7a59ddb commit 15f955b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/sites/default/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ function drupal_get_env(string|array $variables) : mixed {
if ($artemis_brokers && $artemis_destination) {
$settings['stomp']['default'] = [
'clientId' => getenv('ARTEMIS_CLIENT_ID') ?: 'artemis',
'login' => getenv('ARTEMIS_LOGIN'),
'passcode' => getenv('ARTEMIS_PASSCODE'),
'login' => getenv('ARTEMIS_LOGIN') ?: NULL,
'passcode' => getenv('ARTEMIS_PASSCODE') ?: NULL,
'destination' => sprintf('/queue/%s', $artemis_destination),
'brokers' => $artemis_brokers,
'timeout' => ['read' => 15000],
Expand Down

0 comments on commit 15f955b

Please sign in to comment.