Skip to content

Commit

Permalink
fix(preferences): add extra fields to the GlobalPrefsOverrride model
Browse files Browse the repository at this point in the history
  • Loading branch information
SplinterHead committed May 24, 2024
1 parent 09f9a28 commit 4734bdb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/boinc_client/models/global_preference_override.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ class GlobalPreferenceOverride(Schema):
max_ncpus_pct = fields.Float()
net_end_hour = fields.Float()
net_start_hour = fields.Float()
niu_cpu_usage_limit = fields.Float(allow_none=True)
niu_max_ncpus_pct = fields.Float(allow_none=True)
niu_suspend_cpu_usage = fields.Float(allow_none=True)
ram_max_used_busy_pct = fields.Float()
ram_max_used_idle_pct = fields.Float()
run_gpu_if_user_active = fields.Int()
Expand Down

0 comments on commit 4734bdb

Please sign in to comment.