Skip to content

Commit

Permalink
Re #123: Upgraded test and maven plugin dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkowalcz committed Jul 25, 2024
1 parent 918bf5c commit 22cb479
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import io.netty.channel.embedded.EmbeddedChannel;
import io.netty.handler.codec.http.*;
import io.netty.handler.ssl.SslContext;
import org.agrona.collections.MutableLong;
import org.junit.jupiter.api.Test;
import org.testcontainers.shaded.org.apache.commons.lang.mutable.MutableLong;
import pl.tkowalcz.tjahzi.stats.SettableClock;
import pl.tkowalcz.tjahzi.stats.StandardMonitoringModule;

Expand Down Expand Up @@ -132,7 +132,7 @@ public Clock getClock() {

@Override
public void recordResponseTime(long time) {
requestRTT.setValue(time);
requestRTT.set(time);
}
};

Expand Down Expand Up @@ -193,7 +193,7 @@ public Clock getClock() {

@Override
public void recordResponseTime(long time) {
requestRTT.setValue(time);
requestRTT.set(time);
}
};

Expand Down

0 comments on commit 22cb479

Please sign in to comment.