Skip to content

Commit

Permalink
Merge branch 'develop' into feature/code-quality
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenzo-ingenito committed Dec 23, 2024
2 parents a21f2e7 + 64e07a7 commit b267c8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>4.8.2</version>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-core</artifactId>
<version>4.8.2</version>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>4.8.2</version>
<version>5.2.1</version>
</dependency>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ private void abstractListener(ConsumerRecord<String, String> cr) {
String workflowInstanceId = cr.key();
String message = cr.value();
srvListener(workflowInstanceId, message);
log.info("END - Listener eds");
} catch (Exception e) {
log.error("Generic error while consuming eds msg");
deadLetterHelper(e);
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ kafka.oauth.tenantId=
kafka.oauth.appId=
kafka.oauth.pfxPathName=
kafka.oauth.pwd=

####### LOGGING OUTPUT FORMAT ############
# Must be one of console, json
#######################################
Expand Down

0 comments on commit b267c8d

Please sign in to comment.