Skip to content

Commit

Permalink
chore: update JlamaRingWorkerService.java
Browse files Browse the repository at this point in the history
Recieved -> Received

Signed-off-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
  • Loading branch information
eltociear authored Oct 22, 2024
1 parent ea9ac07 commit bd37f7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public StreamObserver<PassRecord> pass(StreamObserver<Empty> responseObserver) {
return new StreamObserver<>() {
@Override
public void onNext(PassRecord value) {
// logger.info("Recieved pass record from peer");
// logger.info("Received pass record from peer");
int startPosition = value.getStartPosition();
FloatBuffer buffer = value.getTensor().asReadOnlyByteBuffer().order(ByteOrder.LITTLE_ENDIAN).asFloatBuffer();
AbstractTensor tensor = new FloatBufferTensor(
Expand All @@ -58,7 +58,7 @@ public void onNext(PassRecord value) {

@Override
public void onError(Throwable t) {
logger.error("Recieved error from peer", t);
logger.error("Received error from peer", t);
}

@Override
Expand Down

0 comments on commit bd37f7b

Please sign in to comment.