Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:gururaajar/networkmanager into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
gururaajar committed Dec 16, 2024
2 parents 931aa9f + c5798b9 commit 9144a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NetworkManagerGnomeWIFI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ namespace WPEFramework
}
count++;
clock_gettime(CLOCK_MONOTONIC, &endTime);
}while(count < 10 && !pbcFound && !wpsStop.load());
}while(count < 9 && !pbcFound && !wpsStop.load());
wpsPBCDuration = (endTime.tv_sec - startTime.tv_sec);

if(!pbcFound || wpsStop.load())
Expand Down Expand Up @@ -1160,7 +1160,7 @@ namespace WPEFramework
clock_gettime(CLOCK_MONOTONIC, &endTime);
timeDiff = (endTime.tv_sec - startTime.tv_sec);
NMLOG_DEBUG("Time elapsed in getting SSID = %ld", timeDiff);
if(ssid.empty() && timeDiff < 20)
if(ssid.empty() && timeDiff < 30)
{
NMLOG_INFO("connected successfully; attempting to retrive SSID info to persist");
sleep(5);
Expand Down

0 comments on commit 9144a89

Please sign in to comment.