Skip to content
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/lock/lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ type Lock struct {

func (l *Lock) String() string {
return fmt.Sprintf(
"Lock(resourceId=%s, processId=%s, executionId=%s, expiryInSeconds=%d)",
"Lock(resourceId=%s, processId=%s, executionId=%s, expiryInSeconds=%d, expiresAt=%d)",
l.ResourceId,
l.ProcessId,
l.ExecutionId,
l.ExpiryInSeconds,
l.ExpiresAt,
)
}

0 comments on commit 8bc7149

Please sign in to comment.