From d8ee8051cfbccfc1a70d78ab56e34e4cbdce691d Mon Sep 17 00:00:00 2001 From: Michael Nguyen <michael.nguyen@parivedasolutions.com> Date: Tue, 3 Dec 2019 09:43:04 -0600 Subject: [PATCH] updating --- provider/indexer-aws/indexer-queue-aws/pom.xml | 8 -------- .../osdu/indexerqueue/aws/api/IndexerQueue.java | 11 +++++++++++ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/provider/indexer-aws/indexer-queue-aws/pom.xml b/provider/indexer-aws/indexer-queue-aws/pom.xml index 31ffa4f29..f16d34b90 100644 --- a/provider/indexer-aws/indexer-queue-aws/pom.xml +++ b/provider/indexer-aws/indexer-queue-aws/pom.xml @@ -48,14 +48,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>8</source> - <target>8</target> - </configuration> - </plugin> </plugins> <extensions> <extension> diff --git a/provider/indexer-aws/indexer-queue-aws/src/main/java/org/opengroup/osdu/indexerqueue/aws/api/IndexerQueue.java b/provider/indexer-aws/indexer-queue-aws/src/main/java/org/opengroup/osdu/indexerqueue/aws/api/IndexerQueue.java index 12727fb9e..6e822e378 100644 --- a/provider/indexer-aws/indexer-queue-aws/src/main/java/org/opengroup/osdu/indexerqueue/aws/api/IndexerQueue.java +++ b/provider/indexer-aws/indexer-queue-aws/src/main/java/org/opengroup/osdu/indexerqueue/aws/api/IndexerQueue.java @@ -51,6 +51,17 @@ public class IndexerQueue { // logRequest.getLogEvents().add(logEvent); // logRequest.getLogEvents().add(new InputLogEvent().withMessage("Retrieving indexer service account JWT")); System.out.println(environmentVariables.region); + System.out.println(environmentVariables.maxBatchRequestCount); + System.out.println(environmentVariables.queueName); + System.out.println(environmentVariables.cognitoAuthFlow); + System.out.println(environmentVariables.cognitoClientId); + System.out.println(environmentVariables.cognitoPassword); + System.out.println(environmentVariables.cognitoUser); + System.out.println(environmentVariables.deadLetterQueueName); + System.out.println(environmentVariables.maxIndexThreads); + System.out.println(environmentVariables.maxMessagesAllowed); + System.out.println(environmentVariables.targetURL); + System.out.println(environmentVariables.keepAliveTimeInMin); try { // logRequest.getLogEvents().add(new InputLogEvent().withMessage("Starting Indexer Queue and obtaining Arguments")); -- GitLab