We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 135f4a1 + f401c60 commit b68cf9bCopy full SHA for b68cf9b
networkd/network_monitor_thread.ml
@@ -263,8 +263,7 @@ let ip_watcher () =
263
let rec loop () =
264
let line = input_line in_channel in
265
(* Do not send events for link-local IPv6 addresses, and removed IPs *)
266
- if String.has_substr line "inet" && not (String.has_substr line "inet6 fe80") &&
267
- not (String.has_substr line "Deleted") then begin
+ if String.has_substr line "inet" && not (String.has_substr line "inet6 fe80") then begin
268
(* Ignore changes for the next second, since they usually come in bursts,
269
* and signal only once. *)
270
Thread.delay 1.;
0 commit comments