Skip to content

Commit

Permalink
Remove unnecessary reference to ARP thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reisz committed Oct 11, 2017
1 parent 7062118 commit f1bd555
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions interface/dependencies/arp.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
local arp = require "proto.arp"
local arpThread = require "threads.arp"

local dependency = {}

function dependency.env(env)
function env.arp(ip, fallback, timeout)
return { "arp", ip, fallback, timeout or 5, arpThread.counter }
return { "arp", ip, fallback, timeout or 5 }
end
end

Expand Down

0 comments on commit f1bd555

Please sign in to comment.