Skip to content

Commit 93d156f

Browse files
committed
Removed the slf4j-simple dependency
1 parent ed829dc commit 93d156f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ We have 2 different types of tests:
329329
./gradlew integ
330330
```
331331

332-
**NOTE**: You need to replace the access key id and access key with your own AWS credentials.
332+
**NOTE**: You need to replace the access key id and access key with your own AWS credentials. Another option is using IAM user access key pair without session token.
333333

334334
### Formatting
335335

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ dependencies {
6464
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.11.1'
6565
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.1'
6666
implementation 'org.slf4j:slf4j-api:1.7.30'
67-
implementation 'org.slf4j:slf4j-simple:1.7.30'
6867
implementation 'org.javatuples:javatuples:1.2'
6968

7069
// Use JUnit test framework

src/main/java/software/amazon/cloudwatchlogs/emf/sinks/TCPClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public TCPClient(Endpoint endpoint) {
3636

3737
private void connect() {
3838
try {
39-
// Avoid "socket already connected" error (https://issues.amazon.com/issues/P54323886)
4039
socket = createSocket();
4140
socket.connect(new InetSocketAddress(endpoint.getHost(), endpoint.getPort()));
4241
shouldConnect = false;

0 commit comments

Comments
 (0)