Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge branch 'b0.9' into FixResourceJoin
Browse files Browse the repository at this point in the history
  • Loading branch information
Elfoniok committed Oct 26, 2017
2 parents d72a5ba + 59a44a6 commit e865ea9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions golem/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,13 +758,13 @@ def set_rpc_server(self, rpc_server):
def change_config(self, new_config_desc, run_benchmarks=False):
self.config_desc = self.config_approver.change_config(new_config_desc)
self.cfg.change_config(self.config_desc)
self.p2pservice.change_config(self.config_desc)
self.upsert_hw_preset(HardwarePresets.from_config(self.config_desc))

if self.p2pservice:
self.p2pservice.change_config(self.config_desc)
if self.task_server:
self.task_server.change_config(
self.config_desc,
run_benchmarks=run_benchmarks
)
self.task_server.change_config(self.config_desc,
run_benchmarks=run_benchmarks)
dispatcher.send(
signal='golem.monitor',
event='config_update',
Expand Down

0 comments on commit e865ea9

Please sign in to comment.