Skip to content

Commit

Permalink
Fix for verify the crash handler yts case fail [1/1]
Browse files Browse the repository at this point in the history
Issue link:
https://partnerissuetracker.corp.google.com/u/0/issues/323792488

Problem:
Evergreen Full verify the crash handler functionality case fail

Solution:
When the device network did not support ipv6,use ipv4 to create socket

Verify:
Local test

Signed-off-by: Hyobo <[email protected]>
  • Loading branch information
Hyobo committed Jun 3, 2024
1 parent c8d3eac commit 174623d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ base::ScopedFD CreateSocket(const std::string& hostname,
} else if (WaitUntilSocketIsReady(result.get())) {
return result;
}
return base::ScopedFD();
continue;
//return base::ScopedFD();
}

return result;
Expand Down

0 comments on commit 174623d

Please sign in to comment.