Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sure to query app version every 24 hours #6119

Merged
merged 3 commits into from
Apr 17, 2024

Conversation

hulthe
Copy link
Contributor

@hulthe hulthe commented Apr 12, 2024


This change is Reviewable

Copy link

linear bot commented Apr 12, 2024

@hulthe hulthe changed the title Make sure to query app verion every 24 hours Make sure to query app version every 24 hours Apr 12, 2024
@hulthe hulthe force-pushed the version-checks-are-too-infrequent-des-811 branch from bc6e273 to 5fd9f82 Compare April 12, 2024 15:31
Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed all commit messages.
Reviewable status: 0 of 2 files reviewed, 5 unresolved discussions (waiting on @hulthe)


mullvad-daemon/src/version_check.rs line 360 at r1 (raw file):

            .map(|(_, last_update_time)| last_update_time)
            .and_then(|&last_update_time| now.duration_since(last_update_time).ok())
            .map(|time_since_last_update| UPDATE_INTERVAL - time_since_last_update)

I think that this needs to be a checked subtraction, or it might panic.


mullvad-daemon/src/version_check.rs line 413 at r1 (raw file):

                            }
                        }
                        Some(VersionUpdaterCommand::RunVersionCheck(done_tx)) => {

Perhaps this function should only run version check if the current cache is actually stale (either None or too old), and otherwise just return the last known version. Then I believe we could get rid of app_version_info from Daemon.


mullvad-daemon/src/version_check.rs line 417 at r1 (raw file):

                                return;
                            }
                            // TODO: should we support multiple concurrent RunVersionCheck calls?

Yes. :)


mullvad-daemon/src/version_check.rs line 452 at r1 (raw file):

                        Err(err) => {
                            log::error!("Failed to fetch version info: {err:#}");
                            self.run_version_check_responder = None;

Should we handle responding to self.run_version_check_responder in the Ok case instead of in self.update_version_info? It feels too spaghetti.


mullvad-daemon/src/version_check.rs line 475 at r1 (raw file):

    let mtime = meta
        .modified()
        .expect("Platforms without file modification times aren't supported");

Are there no circumstances under which this can fail except that one?

Copy link
Contributor Author

@hulthe hulthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 2 files reviewed, 5 unresolved discussions (waiting on @dlon)


mullvad-daemon/src/version_check.rs line 360 at r1 (raw file):

Previously, dlon (David Lönnhager) wrote…

I think that this needs to be a checked subtraction, or it might panic.

Right, forgot std durations can't be negative. Made it a saturating_sub instead 👍


mullvad-daemon/src/version_check.rs line 413 at r1 (raw file):

Previously, dlon (David Lönnhager) wrote…

Perhaps this function should only run version check if the current cache is actually stale (either None or too old), and otherwise just return the last known version. Then I believe we could get rid of app_version_info from Daemon.

Good thought, I'll look into it


mullvad-daemon/src/version_check.rs line 417 at r1 (raw file):

Previously, dlon (David Lönnhager) wrote…

Yes. :)

💯


mullvad-daemon/src/version_check.rs line 452 at r1 (raw file):

Previously, dlon (David Lönnhager) wrote…

Should we handle responding to self.run_version_check_responder in the Ok case instead of in self.update_version_info? It feels too spaghetti.

Agreed


mullvad-daemon/src/version_check.rs line 475 at r1 (raw file):

Previously, dlon (David Lönnhager) wrote…

Are there no circumstances under which this can fail except that one?

Yes, which is a bit weird tbh. I would expect that method to not be available at all on those platforms. 🤷

Copy link
Contributor Author

@hulthe hulthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 2 files reviewed, 5 unresolved discussions (waiting on @dlon)


mullvad-daemon/src/version_check.rs line 413 at r1 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

Good thought, I'll look into it

there. @dlon whaddya think?

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 2 files at r1, 2 of 2 files at r3, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved


mullvad-daemon/src/version_check.rs line 413 at r1 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

there. @dlon whaddya think?

I think it turned out better. Nice!


mullvad-daemon/src/version_check.rs line 445 at r3 (raw file):

                                    version_check = self.do_version_check().fuse();
                                }
                                self.get_version_info_responders.push(done_tx);

Should we also retain only senders that aren't closed here? Maybe this is just me being paranoid.

Copy link
Contributor Author

@hulthe hulthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 1 of 2 files reviewed, all discussions resolved (waiting on @dlon)


mullvad-daemon/src/version_check.rs line 445 at r3 (raw file):

Previously, dlon (David Lönnhager) wrote…

Should we also retain only senders that aren't closed here? Maybe this is just me being paranoid.

Paranoid or not, it's only a single line so I went ahead and added it :)

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 1 files at r4, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@hulthe hulthe marked this pull request as ready for review April 16, 2024 12:58
Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@hulthe hulthe force-pushed the version-checks-are-too-infrequent-des-811 branch 9 times, most recently from 2151e3f to cefacd9 Compare April 17, 2024 09:30
@hulthe hulthe force-pushed the version-checks-are-too-infrequent-des-811 branch from cefacd9 to d3fb939 Compare April 17, 2024 12:04
Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 1 files at r5, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@dlon dlon merged commit dd475d1 into main Apr 17, 2024
41 checks passed
@dlon dlon deleted the version-checks-are-too-infrequent-des-811 branch April 17, 2024 12:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants