Skip to content

Commit

Permalink
Merge d1cbe8c into 28959ff
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed Nov 3, 2022
2 parents 28959ff + d1cbe8c commit fce226e
Show file tree
Hide file tree
Showing 18 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public List<String> getEnvironments() {

Object currentOrNewMap;
if (expectedPrefix.get().equals(currentKey)) {
currentOrNewMap = new LinkedHashMap<>();
currentOrNewMap = multilayer.computeIfAbsent(currentKey, key -> new LinkedHashMap<>());
multilayer.put(currentKey, currentOrNewMap);
} else {
currentOrNewMap = currentLevelMap.computeIfAbsent(part, key -> new LinkedHashMap<>());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class GrailsSimpleNotificationServiceConfig {
.addByType(SimpleNotificationService)
.addByType(SimpleNotificationServiceConfiguration)
.addByQualifiers('notificationsQueueService', SimpleQueueService, Qualifiers.byName('notifications'))
.addByQualifiers('syncQueueService', SimpleQueueService, Qualifiers.byName('notification-manager-device-sync'))
.createMapForPropertiesStarting('aws.sqs.queues')
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@

grails.plugin.awssdk.sns.android.applicationArn = arn::dummy
aws.sqs.queues.notifications.queue = beta_notifications
aws.sqs.queues.notification-manager-device-sync.queue = beta_sync_queue

0 comments on commit fce226e

Please sign in to comment.