Skip to content

Commit 23a5994

Browse files
Properties change (#413)
* Update property names and documentation
1 parent 83fed6c commit 23a5994

File tree

88 files changed

+574
-1070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+574
-1070
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- stage: test
3232
name: unitAndFunctionalTests
3333
script:
34-
- mvn -Dsurefire.rerunFailingTestsCount=2 test -DskipITs -B
34+
- mvn test -DskipITs -Dsurefire.rerunFailingTestsCount=2 -Dspring.config.location=src/main/resources/application.properties -B
3535
- stage: test
3636
name: integrationTests
3737
# To ensure docker containers are fully up and running we sleep 60s
@@ -47,4 +47,4 @@ jobs:
4747
script:
4848
- mvn cobertura:cobertura -B
4949
- curl -Ls -o codacy-coverage-reporter-assembly.jar https://github.com/codacy/codacy-coverage-reporter/releases/download/6.0.2/codacy-coverage-reporter-6.0.2-assembly.jar
50-
- java -jar codacy-coverage-reporter-assembly.jar report -l Java -r target/site/cobertura/coverage.xml
50+
- java -jar codacy-coverage-reporter-assembly.jar report -l Java -r target/site/cobertura/coverage.xml

run_integration_tests_with_replica_sets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ docker_network="docker_eiffel_2.0_1"
1111

1212
test_command="mvn verify \
1313
-DskipUTs \
14-
-Der.url=http://eiffel-er:8080/search/ \
14+
-Devent.repository.url=http://eiffel-er:8080/search/ \
1515
-Drabbitmq.host=$rabbitmg_host \
1616
-Drabbitmq.exchange.name=ei-exchange \
1717
-Dspring.data.mongodb.uri=$mongodb_uri \
@@ -21,7 +21,7 @@ test_command="mvn verify \
2121
-Djenkins.port=$jenkins_port \
2222
-Dspring.mail.host=$mail_server_host \
2323
-Dspring.mail.port=1025 \
24-
-Dwaitlist.fixedRateResend=1 -B"
24+
-Dwaitlist.resend.fixed.rate=1 -B"
2525

2626
function invalid_arguments {
2727
echo "missing command(s) setup | test"

src/functionaltests/java/com/ericsson/ei/encryption/EncryptionSteps.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
import cucumber.api.java.en.When;
3131

3232
@Ignore
33-
@TestPropertySource(properties = { "spring.data.mongodb.database: EncryptionSteps",
34-
"missedNotificationDataBaseName: EncryptionSteps-missedNotifications",
33+
@TestPropertySource(properties = {
34+
"spring.data.mongodb.database: EncryptionSteps",
35+
"failed.notifications.collection.name: EncryptionSteps-missedNotifications",
3536
"rabbitmq.exchange.name: EncryptionSteps-exchange",
36-
"rabbitmq.consumerName: EncryptionSteps-consumer"})
37+
"rabbitmq.queue.suffix: EncryptionSteps"})
3738
public class EncryptionSteps extends FunctionalTestBase {
3839

3940
private static final Logger LOGGER = getLogger(EncryptionSteps.class);

src/functionaltests/java/com/ericsson/ei/notifications/trigger/SubscriptionNotificationSteps.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@
4545
import cucumber.api.java.en.When;
4646

4747
@Ignore
48-
@TestPropertySource(properties = { "spring.data.mongodb.database: SubscriptionNotificationSteps",
49-
"failed.notification.collection-name: SubscriptionNotificationSteps-failedNotifications",
48+
@TestPropertySource(properties = {
49+
"spring.data.mongodb.database: SubscriptionNotificationSteps",
50+
"failed.notifications.collection.name: SubscriptionNotificationSteps-failedNotifications",
5051
"rabbitmq.exchange.name: SubscriptionNotificationSteps-exchange",
51-
"rabbitmq.consumerName: SubscriptionNotificationSteps-consumer" })
52+
"rabbitmq.queue.suffix: SubscriptionNotificationSteps" })
5253
public class SubscriptionNotificationSteps extends FunctionalTestBase {
5354

5455
private static final Logger LOGGER = getLogger(SubscriptionNotificationSteps.class);
@@ -69,16 +70,16 @@ public class SubscriptionNotificationSteps extends FunctionalTestBase {
6970
@Value("${email.sender}")
7071
private String sender;
7172

72-
@Value("${aggregated.collection.name}")
73+
@Value("${aggregations.collection.name}")
7374
private String aggregatedCollectionName;
7475

7576
@Value("${spring.data.mongodb.database}")
7677
private String database;
7778

78-
@Value("${failed.notification.collection-name}")
79+
@Value("${failed.notifications.collection.name}")
7980
private String failedNotificationCollection;
8081

81-
@Value("${subscription.collection.name}")
82+
@Value("${subscriptions.collection.name}")
8283
private String subscriptionCollection;
8384

8485
@Autowired

src/functionaltests/java/com/ericsson/ei/notifications/ttl/TestTTLSteps.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343

4444
@Ignore
4545
@TestPropertySource(properties = {
46-
"notification.ttl.value:1",
47-
"aggregated.collection.ttlValue:1",
48-
"notification.failAttempt:1",
46+
"failed.notifications.collection.ttl: 1",
47+
"aggregations.collection.ttl: 1",
48+
"notification.retry: 1",
4949
"spring.data.mongodb.database: TestTTLSteps",
50-
"failed.notification.collection-name: TestTTLSteps-failedNotifications",
50+
"failed.notifications.collection.name: TestTTLSteps-failedNotifications",
5151
"rabbitmq.exchange.name: TestTTLSteps-exchange",
52-
"rabbitmq.consumerName: TestTTLStepsConsumer"})
52+
"rabbitmq.consumer.name: TestTTLStepsConsumer"})
5353
public class TestTTLSteps extends FunctionalTestBase {
5454
private static final Logger LOGGER = LoggerFactory.getLogger(TestTTLSteps.class);
5555
private static final String BASE_URL = "localhost";
@@ -75,13 +75,13 @@ public class TestTTLSteps extends FunctionalTestBase {
7575
private MockServerClient mockServerClient;
7676
private ClientAndServer clientAndServer;
7777

78-
@Value("${failed.notification.collection-name}")
78+
@Value("${failed.notifications.collection.name}")
7979
private String failedNotificationCollection;
8080

8181
@Value("${spring.data.mongodb.database}")
8282
private String database;
8383

84-
@Value("${aggregated.collection.name}")
84+
@Value("${aggregations.collection.name}")
8585
private String collection;
8686

8787
@Autowired

src/functionaltests/java/com/ericsson/ei/query/QueryAggregatedObjectsTestSteps.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
@Ignore
3737
@TestPropertySource(properties = {
3838
"spring.data.mongodb.database: QueryAggregatedObjectsTestSteps",
39-
"failed.notification.collection-name: QueryAggregatedObjectsTestSteps-failedNotifications",
39+
"failed.notifications.collection.name: QueryAggregatedObjectsTestSteps-failedNotifications",
4040
"rabbitmq.exchange.name: QueryAggregatedObjectsTestSteps-exchange",
41-
"rabbitmq.consumerName: QueryAggregatedObjectsTestStepsConsumer" })
41+
"rabbitmq.queue.suffix: QueryAggregatedObjectsTestSteps" })
4242
@AutoConfigureMockMvc
4343
public class QueryAggregatedObjectsTestSteps extends FunctionalTestBase {
4444

@@ -72,10 +72,10 @@ public class QueryAggregatedObjectsTestSteps extends FunctionalTestBase {
7272
@Value("${spring.data.mongodb.database}")
7373
private String database;
7474

75-
@Value("${aggregated.collection.name}")
75+
@Value("${aggregations.collection.name}")
7676
private String aggrCollectionName;
7777

78-
@Value("${failed.notification.collection-name}")
78+
@Value("${failed.notifications.collection.name}")
7979
private String failedNotificationCollectionName;
8080

8181
private String aggrObj;

src/functionaltests/java/com/ericsson/ei/rabbitmq/RabbitMQTestConnectionSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
@Ignore
3939
@TestPropertySource(properties = {
4040
"spring.data.mongodb.database: RabbitMQTestConnectionSteps",
41-
"failed.notification.collection-name: RabbitMQTestConnectionSteps-failedNotifications",
41+
"failed.notifications.collection.name: RabbitMQTestConnectionSteps-failedNotifications",
4242
"rabbitmq.exchange.name: RabbitMQTestConnectionSteps-exchange",
43-
"rabbitmq.consumerName: RabbitMQTestConnectionStepsConsumer" })
43+
"rabbitmq.queue.suffix: RabbitMQTestConnectionSteps" })
4444
public class RabbitMQTestConnectionSteps extends FunctionalTestBase {
4545

4646
@Value("${rabbitmq.port}")

src/functionaltests/java/com/ericsson/ei/restendpoints/RestEndpointsTestSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
@Ignore
2323
@TestPropertySource(properties = {
2424
"spring.data.mongodb.database: RestEndpointsTestSteps",
25-
"failed.notification.collection-name: RestEndpointsTestSteps-failedNotifications",
25+
"failed.notifications.collection.name: RestEndpointsTestSteps-failedNotifications",
2626
"rabbitmq.exchange.name: RestEndpointsTestSteps-exchange",
27-
"rabbitmq.consumerName: RestEndpointsTestStepsConsumer" })
27+
"rabbitmq.queue.suffix: RestEndpointsTestSteps" })
2828
@AutoConfigureMockMvc
2929
public class RestEndpointsTestSteps extends FunctionalTestBase {
3030

src/functionaltests/java/com/ericsson/ei/rules/RuleTestSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
@Ignore
2929
@TestPropertySource(properties = {
3030
"spring.data.mongodb.database: RuleTestSteps",
31-
"failed.notification.collection-name: RuleTestSteps-failedNotifications",
31+
"failed.notifications.collection.name: RuleTestSteps-failedNotifications",
3232
"rabbitmq.exchange.name: RuleTestSteps-exchange",
33-
"rabbitmq.consumerName: RuleTestStepsConsumer" })
33+
"rabbitmq.queue.suffix: RuleTestSteps" })
3434
public class RuleTestSteps extends FunctionalTestBase {
3535

3636
private static final String TEST_RESOURCES_PATH = "src/test/resources";

src/functionaltests/java/com/ericsson/ei/rules/RulesHandlerSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
@Ignore
2424
@TestPropertySource(properties = {
2525
"spring.data.mongodb.database: RulesHandlerSteps",
26-
"failed.notification.collection-name: RulesHandlerSteps-failedNotifications",
26+
"failed.notifications.collection.name: RulesHandlerSteps-failedNotifications",
2727
"rabbitmq.exchange.name: RulesHandlerSteps-exchange",
28-
"rabbitmq.consumerName: RulesHandlerStepsConsumer" })
28+
"rabbitmq.queue.suffix: RulesHandlerSteps" })
2929
public class RulesHandlerSteps {
3030

3131
private ClientAndServer restServer;

src/functionaltests/java/com/ericsson/ei/scaling/ScalingAndFailoverSteps.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
@Ignore
4343
@TestPropertySource(properties = {
4444
"spring.data.mongodb.database: ScalingAndFailoverSteps",
45-
"failed.notification.collection-name: ScalingAndFailoverSteps-failedNotifications",
45+
"failed.notifications.collection.name: ScalingAndFailoverSteps-failedNotifications",
4646
"rabbitmq.exchange.name: ScalingAndFailoverSteps-exchange",
47-
"rabbitmq.consumerName: ScalingAndFailoverStepsConsumer" })
47+
"rabbitmq.queue.suffix: ScalingAndFailoverSteps" })
4848
@AutoConfigureMockMvc
4949
public class ScalingAndFailoverSteps extends FunctionalTestBase {
5050
private static final String EVENT_DUMMY = "src/functionaltests/resources/scale_and_failover_dummy.json";
@@ -155,8 +155,8 @@ public void initialize(ConfigurableApplicationContext configurableApplicationCon
155155
Collections.singletonMap("rabbitmq.exchange.name", "ScalingAndFailoverSteps-exchange"));
156156
configurableApplicationContext.getEnvironment().getPropertySources().addFirst(ps1);
157157

158-
PropertySource ps2 = new MapPropertySource("rabbitmq.consumerName",
159-
Collections.singletonMap("rabbitmq.consumerName", "ScalingAndFailoverStepsConsumer"));
158+
PropertySource ps2 = new MapPropertySource("rabbitmq.queue.suffix",
159+
Collections.singletonMap("rabbitmq.queue.suffix", "ScalingAndFailoverSteps"));
160160
configurableApplicationContext.getEnvironment().getPropertySources().addFirst(ps2);
161161

162162
int port = SocketUtils.findAvailableTcpPort();

src/functionaltests/java/com/ericsson/ei/status/StatusTestSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
@Ignore
3131
@TestPropertySource(properties = {
3232
"spring.data.mongodb.database: StatusSteps",
33-
"failed.notification.collection-name: StatusSteps-missedNotifications",
33+
"failed.notifications.collection.name: StatusSteps-missedNotifications",
3434
"rabbitmq.exchange.name: StatusSteps-exchange",
35-
"rabbitmq.consumerName: StatusSteps-Consumer" })
35+
"rabbitmq.queue.suffix: StatusSteps" })
3636
public class StatusTestSteps extends FunctionalTestBase {
3737

3838
private static final String RABBITMQ_KEY = "rabbitMQStatus";

src/functionaltests/java/com/ericsson/ei/subscriptions/authentication/AuthenticationSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
@Ignore
4242
@TestPropertySource(properties = {
4343
"spring.data.mongodb.database: AuthenticationSteps",
44-
"failed.notification.collection-name: AuthenticationSteps-failedNotifications",
44+
"failed.notifications.collection.name: AuthenticationSteps-failedNotifications",
4545
"rabbitmq.exchange.name: AuthenticationSteps-exchange",
46-
"rabbitmq.consumerName: AuthenticationStepsConsumer",
46+
"rabbitmq.queue.suffix: AuthenticationSteps",
4747
"ldap.enabled: true" })
4848
public class AuthenticationSteps extends FunctionalTestBase {
4949

src/functionaltests/java/com/ericsson/ei/subscriptions/bulk/SubscriptionBulkSteps.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
@Ignore
2626
@TestPropertySource(properties = {
2727
"spring.data.mongodb.database: SubscriptionBulkSteps",
28-
"failed.notification.collection-name: SubscriptionBulkSteps-failedNotifications",
28+
"failed.notifications.collection.name: SubscriptionBulkSteps-failedNotifications",
2929
"rabbitmq.exchange.name: SubscriptionBulkSteps-exchange",
30-
"rabbitmq.consumerName: SubscriptionBulkStepsConsumer",
31-
"logging.level.com.ericsson.ei.subscriptions.bulk=OFF" })
30+
"rabbitmq.queue.suffix: SubscriptionBulkSteps",
31+
"logging.level.com.ericsson.ei.subscriptions.bulk: OFF" })
3232
public class SubscriptionBulkSteps extends FunctionalTestBase {
3333

3434
private static final String TEST_RESOURCES_PATH = "src/functionaltests/resources";

src/functionaltests/java/com/ericsson/ei/subscriptions/content/SubscriptionContentSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
@Ignore
2929
@TestPropertySource(properties = {
3030
"spring.data.mongodb.database: SubscriptionContentSteps",
31-
"failed.notification.collection-name: SubscriptionContentSteps-failedNotifications",
31+
"failed.notifications.collection.name: SubscriptionContentSteps-failedNotifications",
3232
"rabbitmq.exchange.name: SubscriptionContentSteps-exchange",
33-
"rabbitmq.consumerName: SubscriptionContentStepsConsumer" })
33+
"rabbitmq.queue.suffix: SubscriptionContentSteps" })
3434
public class SubscriptionContentSteps extends FunctionalTestBase {
3535

3636
private static final Logger LOGGER = LoggerFactory.getLogger(SubscriptionContentSteps.class);

src/functionaltests/java/com/ericsson/ei/subscriptions/crud/SubscriptionCRUDSteps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
@Ignore
3131
@TestPropertySource(properties = {
3232
"spring.data.mongodb.database: SubscriptionCRUDSteps",
33-
"failed.notification.collection-name: SubscriptionCRUDSteps-failedNotifications",
33+
"failed.notifications.collection.name: SubscriptionCRUDSteps-failedNotifications",
3434
"rabbitmq.exchange.name: SubscriptionCRUDSteps-exchange",
35-
"rabbitmq.consumerName: SubscriptionCRUDSteps" })
35+
"rabbitmq.queue.suffix: SubscriptionCRUDSteps" })
3636
@AutoConfigureMockMvc
3737
public class SubscriptionCRUDSteps extends FunctionalTestBase {
3838

src/functionaltests/java/com/ericsson/ei/subscriptions/repeatHandler/SubscriptionRepeatHandlerSteps.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040

4141
@Ignore
4242
@TestPropertySource(properties = {
43-
"rules.path=src/test/resources/TestExecutionObjectRules.json",
43+
"rules.path: src/test/resources/TestExecutionObjectRules.json",
4444
"spring.data.mongodb.database: SubscriptionRepeatHandlerSteps",
45-
"failed.notification.collection-name: SubscriptionRepeatHandlerSteps-failedNotifications",
45+
"failed.notifications.collection.name: SubscriptionRepeatHandlerSteps-failedNotifications",
4646
"rabbitmq.exchange.name: SubscriptionRepeatHandlerSteps-exchange",
47-
"rabbitmq.consumerName: SubscriptionRepeatHandlerStepsConsumer" })
47+
"rabbitmq.consumer.name: SubscriptionRepeatHandlerStepsConsumer" })
4848
public class SubscriptionRepeatHandlerSteps extends FunctionalTestBase {
4949

5050
private static final String AGGREGATED_OBJECT_FILE_PATH = "src/functionaltests/resources/aggregatedObject.json";
@@ -61,13 +61,13 @@ public class SubscriptionRepeatHandlerSteps extends FunctionalTestBase {
6161
private MongoCondition subscriptionIdMatchedAggrIdObjQuery;
6262
private ObjectMapper mapper = new ObjectMapper();
6363

64-
@Value("${aggregated.collection.name}")
64+
@Value("${aggregations.collection.name}")
6565
private String collectionName;
6666

6767
@Value("${spring.data.mongodb.database}")
6868
private String dataBaseName;
6969

70-
@Value("${subscription.collection.repeatFlagHandlerName}")
70+
@Value("${subscriptions.repeat.handler.collection.name}")
7171
private String repeatFlagHandlerCollection;
7272

7373
@LocalServerPort

src/functionaltests/java/com/ericsson/ei/templates/TemplatesTestSteps.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626
import cucumber.api.java.en.Then;
2727

2828
@Ignore
29-
@TestPropertySource(properties = {"spring.data.mongodb.database: TemplatesTestSteps",
29+
@TestPropertySource(properties = {
30+
"spring.data.mongodb.database: TemplatesTestSteps",
3031
"rabbitmq.exchange.name: TemplatesTestSteps-exchange",
31-
"rabbitmq.consumerName: TemplatesTestStepsConsumer" })
32+
"rabbitmq.queue.suffix: TemplatesTestSteps" })
3233
@AutoConfigureMockMvc
3334
public class TemplatesTestSteps extends FunctionalTestBase {
3435

src/functionaltests/java/com/ericsson/ei/threadingAndWaitlistRepeat/ThreadingAndWaitlistRepeatSteps.java

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,18 @@
2626
import cucumber.api.java.en.Then;
2727

2828
@TestPropertySource(properties = {
29-
"threads.corePoolSize= 3",
30-
"threads.queueCapacity= 1",
31-
"threads.maxPoolSize= 4",
32-
"waitlist.collection.ttlValue: 60",
33-
"waitlist.initialDelayResend= 500",
34-
"waitlist.fixedRateResend= 1000",
29+
"threads.core.pool.size: 3",
30+
"threads.queue.capacity: 1",
31+
"threads.max.pool.size: 4",
32+
"waitlist.collection.ttl: 60",
33+
"waitlist.resend.initial.delay: 500",
34+
"waitlist.resend.fixed.rate: 1000",
3535
"spring.data.mongodb.database: ThreadingAndWaitlistRepeatSteps",
36-
"failed.notification.collection-name: ThreadingAndWaitlistRepeatSteps-failedNotifications",
36+
"failed.notifications.collection.name: ThreadingAndWaitlistRepeatSteps-failedNotifications",
3737
"rabbitmq.exchange.name: ThreadingAndWaitlistRepeatSteps-exchange",
38-
"rabbitmq.consumerName: ThreadingAndWaitlistRepeatStepsConsumer", "logging.level.com.ericsson.ei.waitlist=OFF",
39-
"logging.level.com.ericsson.ei.handlers.EventHandler=OFF" })
38+
"rabbitmq.queue.suffix: ThreadingAndWaitlistRepeatSteps",
39+
"logging.level.com.ericsson.ei.waitlist: OFF",
40+
"logging.level.com.ericsson.ei.handlers.EventHandler: OFF" })
4041

4142
@Ignore
4243
public class ThreadingAndWaitlistRepeatSteps extends FunctionalTestBase {
@@ -46,13 +47,13 @@ public class ThreadingAndWaitlistRepeatSteps extends FunctionalTestBase {
4647
@Autowired
4748
private Environment environment;
4849

49-
@Value("${threads.corePoolSize}")
50+
@Value("${threads.core.pool.size}")
5051
private int corePoolSize;
51-
@Value("${threads.queueCapacity}")
52+
@Value("${threads.queue.capacity}")
5253
private int queueCapacity;
53-
@Value("${threads.maxPoolSize}")
54+
@Value("${threads.max.pool.size}")
5455
private int maxPoolSize;
55-
@Value("${waitlist.collection.ttlValue}")
56+
@Value("${waitlist.collection.ttl}")
5657
private int waitlistTtl;
5758

5859
private RulesObject rulesObject;

src/functionaltests/java/com/ericsson/ei/utils/DataBaseManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ public class DataBaseManager {
2929
@Value("${spring.data.mongodb.database}")
3030
private String database;
3131

32-
@Value("${event_object_map.collection.name}")
32+
@Value("${event.object.map.collection.name}")
3333
private String eventObjectCollectionName;
3434

35-
@Value("${aggregated.collection.name}")
35+
@Value("${aggregations.collection.name}")
3636
private String aggregatedCollectionName;
3737

3838
@Value("${waitlist.collection.name}")
3939
private String waitlistCollectionName;
4040

41-
@Value("${subscription.collection.name}")
41+
@Value("${subscriptions.collection.name}")
4242
private String subscriptionCollectionName;
4343

4444
@Getter

src/functionaltests/java/com/ericsson/ei/utils/TestConfigs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ protected static void createAmqpBroker() throws Exception {
3434
System.setProperty("rabbitmq.port", Integer.toString(port));
3535
System.setProperty("rabbitmq.user", "guest");
3636
System.setProperty("rabbitmq.password", "guest");
37-
System.setProperty("waitlist.initialDelayResend", "500");
38-
System.setProperty("waitlist.fixedRateResend", "3000");
37+
System.setProperty("waitlist.resend.initial.delay", "500");
38+
System.setProperty("waitlist.resend.fixed.rate", "3000");
3939

4040
String config = "src/functionaltests/resources/configs/qpidConfig.json";
4141
File qpidConfig = new File(config);

0 commit comments

Comments
 (0)