Skip to content

Commit

Permalink
Merge pull request #5251 from BOINC/dpa_prefs5
Browse files Browse the repository at this point in the history
client: the default value for the "suspend_if_no_recent_input" pref should to 0, not 60
  • Loading branch information
AenBleidd authored May 25, 2023
2 parents 393cc4a + 7f4f598 commit 4cb536e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/prefs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void GLOBAL_PREFS::defaults() {
#else
suspend_cpu_usage = 25;
#endif
suspend_if_no_recent_input = 60;
suspend_if_no_recent_input = 0;
vm_max_used_frac = 0.75;
work_buf_additional_days = 0.5;
work_buf_min_days = 0.1;
Expand All @@ -272,6 +272,7 @@ void GLOBAL_PREFS::defaults() {
//
void GLOBAL_PREFS::enabled_defaults() {
defaults();
suspend_if_no_recent_input = 60;
disk_max_used_gb = 100;
disk_min_free_gb = 1.0;
daily_xfer_limit_mb = 10000;
Expand Down

0 comments on commit 4cb536e

Please sign in to comment.