diff options
| -rw-r--r-- | mullvad-daemon/src/version_check.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mullvad-daemon/src/version_check.rs b/mullvad-daemon/src/version_check.rs index 72126b7862..aec9ef9073 100644 --- a/mullvad-daemon/src/version_check.rs +++ b/mullvad-daemon/src/version_check.rs @@ -478,7 +478,10 @@ fn dev_version_cache() -> AppVersionInfo { latest_stable: PRODUCT_VERSION.to_owned(), latest_beta: PRODUCT_VERSION.to_owned(), suggested_upgrade: None, - wg_migration_threshold: 1.0, + // Use WireGuard on 75% of dev builds. So we can manually modify + // wg_migration_rand_num in the settings and verify that the migration + // works as expected. + wg_migration_threshold: 0.75, } } |
