aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/symbol_collector_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/linux/symbol_collector_client.cc')
-rw-r--r--src/common/linux/symbol_collector_client.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/linux/symbol_collector_client.cc b/src/common/linux/symbol_collector_client.cc
index ea995c4b..92b25ddb 100644
--- a/src/common/linux/symbol_collector_client.cc
+++ b/src/common/linux/symbol_collector_client.cc
@@ -102,7 +102,8 @@ CompleteUploadResult SymbolCollectorClient::CompleteUpload(
const string& api_key,
const string& upload_key,
const string& debug_file,
- const string& debug_id) {
+ const string& debug_id,
+ const string& type) {
string header, response;
long response_code;
@@ -113,7 +114,8 @@ CompleteUploadResult SymbolCollectorClient::CompleteUpload(
string body =
"{ symbol_id: {"
"debug_file: \"" + debug_file + "\", "
- "debug_id: \"" + debug_id + "\" } }";
+ "debug_id: \"" + debug_id + "\" }, "
+ "symbol_upload_type: \"" + type + "\" }";
if (!libcurl_wrapper->SendSimplePostRequest(url,
body,