Skip to content

Commit e577327

Browse files
Irfan Sheriffandroid code review
authored andcommitted
Merge "WifiWatchdog: handle exception from ArpPeer"
2 parents 2140d1d + d585729 commit e577327

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

wifi/java/android/net/wifi/WifiWatchdogStateMachine.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,9 @@ private boolean doArpTest(int type) {
881881
//test to avoid any wifi connectivity issues
882882
loge("ARP test initiation failure: " + se);
883883
success = true;
884+
} catch (IllegalArgumentException ae) {
885+
log("ARP test initiation failure: " + ae);
886+
success = true;
884887
}
885888

886889
return success;

0 commit comments

Comments
 (0)