Skip to content

Commit

Permalink
MATP-1176 Review GitHub Dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
colinduplantis committed Apr 26, 2023
1 parent d058c3e commit 7508fec
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -660,38 +660,38 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
<version>1.16.1</version>
<version>1.27.2</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
<version>1.16.1</version>
<version>1.27.2</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.17.Final</version>
<version>2.0.26.Final</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.16.1</version>
<version>1.27.2</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.16.1</version>
<version>1.27.2</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.16.1</version>
<version>1.27.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.30.Final</version>
<version>4.1.42.Final</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ public void start()
startService();
doLogin();
scheduleHeartbeat();
SLF4JLoggerProxy.warn(this,
"COCO {} started",
this);
}
/**
* Validate and stop the object.
Expand All @@ -63,10 +66,22 @@ public void start()
public void stop()
throws Exception
{
SLF4JLoggerProxy.warn(this,
"COCO Stopping {}",
this);
stopped.set(true);
cancelHeartbeat();
SLF4JLoggerProxy.warn(this,
"COCO {} heartbeat canceled",
this);
doLogout();
SLF4JLoggerProxy.warn(this,
"COCO {} logout completed",
this);
stopService();
SLF4JLoggerProxy.warn(this,
"COCO {} service stopped",
this);
}
/**
* Indicate if the service is running.
Expand Down

0 comments on commit 7508fec

Please sign in to comment.