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 18, 2024
1 parent c8d3eac commit 47df325
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,11 @@ base::ScopedFD CreateSocket(const std::string& hostname,
} else if (WaitUntilSocketIsReady(result.get())) {
return result;
}
return base::ScopedFD();
#if defined(STARBOARD) || defined(NATIVE_TARGET_BUILD)
continue;
#else
return base::ScopedFD();
#endif
}

return result;
Expand Down

0 comments on commit 47df325

Please sign in to comment.