You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let report_result = crate::network::send_patch_event(event,&config_copy);
None of them retry. It's also kinda silly to have 3 methods.
We should probably always use the queue, and just have multiple places where we try to flush the queue. We should also probably only remove events on success or queue overflow.
The text was updated successfully, but these errors were encountered:
Right now we have 3 separate places where we send patch events.
The queue:
updater/library/src/updater.rs
Line 350 in b2d5ece
Within update (download):
updater/library/src/updater.rs
Line 431 in b2d5ece
Within launch success (install):
updater/library/src/updater.rs
Line 635 in b2d5ece
None of them retry. It's also kinda silly to have 3 methods.
We should probably always use the queue, and just have multiple places where we try to flush the queue. We should also probably only remove events on success or queue overflow.
The text was updated successfully, but these errors were encountered: