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
The problem we're having right now is that if the user ignores the banner and decides to quit and install later, the autoupdater still downloads the app again and again every minute!
~ ❯❯❯ tail -f ~/Library/Logs/Notion/log.log
[2017-07-04 12:45:46:0997] [info] Checking for update
[2017-07-04 12:45:47:0356] [info] Found version 0.1.10 (url: https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip)
[2017-07-04 12:45:47:0358] [info] Downloading update from https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip
[2017-07-04 12:46:03:0052] [info] New version 0.1.10 has been downloaded
[2017-07-04 12:46:47:0006] [info] Checking for update
[2017-07-04 12:46:47:0181] [info] Found version 0.1.10 (url: https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip)
[2017-07-04 12:46:47:0183] [info] Downloading update from https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip
[2017-07-04 12:47:03:0886] [info] New version 0.1.10 has been downloaded
[2017-07-04 12:47:47:0014] [info] Checking for update
[2017-07-04 12:47:47:0227] [info] Found version 0.1.10 (url: https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip)
[2017-07-04 12:47:47:0228] [info] Downloading update from https://s3-us-west-2.amazonaws.com/desktop-release/Notion-0.1.10-mac.zip
[2017-07-04 12:48:05:0861] [info] New version 0.1.10 has been downloaded
Lots of people leave our application open in the background so its costing us lot of money on S3 (~$2k/day!).
We check for updates every minute, then display a banner in the app for users to quit and install at their leisure. Our code looks like this:
The problem we're having right now is that if the user ignores the banner and decides to quit and install later, the autoupdater still downloads the app again and again every minute!
Lots of people leave our application open in the background so its costing us lot of money on S3 (~$2k/day!).
On our side, we have a fairly simple fix:
However, I feel like this is something that could be handled by the updater which would prevent these issues for others in the future.
The text was updated successfully, but these errors were encountered: