Implement panic reporting saving and uploads (#19932)
TODO: - [x] check that the app version is well formatted for zed.dev Release Notes: - N/A --------- Co-authored-by: Trace <violet.white.batt@gmail.com>
This commit is contained in:
parent
a5f52f0f04
commit
b3f0ba1430
10 changed files with 278 additions and 45 deletions
|
@ -329,7 +329,7 @@ fn main() {
|
|||
telemetry.start(
|
||||
system_id.as_ref().map(|id| id.to_string()),
|
||||
installation_id.as_ref().map(|id| id.to_string()),
|
||||
session_id,
|
||||
session_id.clone(),
|
||||
cx,
|
||||
);
|
||||
|
||||
|
@ -365,7 +365,9 @@ fn main() {
|
|||
auto_update::init(client.http_client(), cx);
|
||||
reliability::init(
|
||||
client.http_client(),
|
||||
system_id.as_ref().map(|id| id.to_string()),
|
||||
installation_id.clone().map(|id| id.to_string()),
|
||||
session_id.clone(),
|
||||
cx,
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue