Commit 09ee60c6 authored by David Schinazi's avatar David Schinazi Committed by Commit Bot

Always upload finch seed even if empty

R=renjietang@chromium.org

Change-Id: I22beaebb6c757818f8c28129d63ae48ba8bdad8e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2485345
Commit-Queue: David Schinazi <dschinazi@chromium.org>
Commit-Queue: Renjie Tang <renjietang@chromium.org>
Auto-Submit: David Schinazi <dschinazi@chromium.org>
Reviewed-by: default avatarRenjie Tang <renjietang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#818756}
parent 65967617
...@@ -501,6 +501,9 @@ quic::ParsedQuicVersionVector GetQuicVersions( ...@@ -501,6 +501,9 @@ quic::ParsedQuicVersionVector GetQuicVersions(
base::debug::AllocateCrashKeyString( base::debug::AllocateCrashKeyString(
"OQV_finch_seed", base::debug::CrashKeySize::Size32); "OQV_finch_seed", base::debug::CrashKeySize::Size32);
std::string finch_seed = variations::GetSeedVersion(); std::string finch_seed = variations::GetSeedVersion();
if (finch_seed.empty()) {
finch_seed = "OQV_empty";
}
base::debug::ScopedCrashKeyString finch_scoped_key(finch_seed_key, base::debug::ScopedCrashKeyString finch_scoped_key(finch_seed_key,
finch_seed); finch_seed);
base::debug::DumpWithoutCrashing(); base::debug::DumpWithoutCrashing();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment