Skip to content

Commit

Permalink
errorprone :: MemberName - ObjectTracing (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpdahlke authored Aug 29, 2024
1 parent 1180601 commit 1ec4fb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/emissary/pickup/PickUpPlace.java
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public boolean processDataFile(File theFile, String fixedName, boolean isOversiz
boolean success = true;
logger.debug("Starting processDataFile in PickUpPlace for {}", theFile);

ObjectTracingService.emitLifecycleEvent(null, fixedName, ObjectTracing.Stage.PickUp, useObjectTraceLogger);
ObjectTracingService.emitLifecycleEvent(null, fixedName, ObjectTracing.Stage.PICK_UP, useObjectTraceLogger);

// Handle oversize data quickly without reading the file
if (isOversize) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/emissary/spi/ObjectTracing.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public interface ObjectTracing {

enum Stage {
PickUp, DropOff
PICK_UP, DROP_OFF
}

/**
Expand Down

0 comments on commit 1ec4fb4

Please sign in to comment.