Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
attdona committed Nov 15, 2023
1 parent 3c65256 commit c77391d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Visor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,8 @@ end
function restart_processes(procs)
for proc in procs
proc.task = start(proc)
if isdefined(process, :debounce_time) && !isnan(process.debounce_time)
sleep(process.debounce_time)
if isdefined(proc, :debounce_time) && !isnan(proc.debounce_time)
sleep(proc.debounce_time)
end
if istaskfailed(proc.task)
break
Expand Down

0 comments on commit c77391d

Please sign in to comment.