mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
Fix panic
This commit is contained in:
parent
162629571d
commit
bd819a5e81
@ -188,7 +188,7 @@ var staleTimeout = 30 * time.Minute
|
||||
// older than 30 minutes or if it was created on the current machine and the
|
||||
// process isn't alive any more.
|
||||
func (l *Lock) Stale() bool {
|
||||
debug.Log("Lock.Stale", "testing if lock %v for process %d is stale", l.lockID.Str(), l.PID)
|
||||
debug.Log("Lock.Stale", "testing if lock %v for process %d is stale", l, l.PID)
|
||||
if time.Now().Sub(l.Time) > staleTimeout {
|
||||
debug.Log("Lock.Stale", "lock is stale, timestamp is too old: %v\n", l.Time)
|
||||
return true
|
||||
|
Loading…
Reference in New Issue
Block a user