Skip to content

Commit

Permalink
[hotfix] Add toString to StateHandleDownloadSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
pnowojski committed Mar 11, 2024
1 parent d79a200 commit 2ec2a60
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,13 @@ public IncrementalLocalKeyedStateHandle createLocalStateHandleForDownloadedState
stateHandle.getMetaDataStateHandle(),
stateHandle.getSharedState());
}

@Override
public String toString() {
return "StateHandleDownloadSpec(downloadDestination = ["
+ downloadDestination
+ "] stateHandle = ["
+ stateHandle
+ "])";
}
}

0 comments on commit 2ec2a60

Please sign in to comment.