mirror of https://github.com/BOINC/boinc.git
client: include project resource shares in account manager request message
This commit is contained in:
parent
dc09b0a131
commit
9d43d18011
|
@ -156,6 +156,7 @@ int ACCT_MGR_OP::do_rpc(
|
||||||
" <dont_request_more_work>%d</dont_request_more_work>\n"
|
" <dont_request_more_work>%d</dont_request_more_work>\n"
|
||||||
" <detach_when_done>%d</detach_when_done>\n"
|
" <detach_when_done>%d</detach_when_done>\n"
|
||||||
" <ended>%d</ended>\n"
|
" <ended>%d</ended>\n"
|
||||||
|
" <resource_share>%f</resource_share>\n"
|
||||||
" </project>\n",
|
" </project>\n",
|
||||||
p->master_url,
|
p->master_url,
|
||||||
p->project_name,
|
p->project_name,
|
||||||
|
@ -167,7 +168,8 @@ int ACCT_MGR_OP::do_rpc(
|
||||||
p->attached_via_acct_mgr?1:0,
|
p->attached_via_acct_mgr?1:0,
|
||||||
p->dont_request_more_work?1:0,
|
p->dont_request_more_work?1:0,
|
||||||
p->detach_when_done?1:0,
|
p->detach_when_done?1:0,
|
||||||
p->ended?1:0
|
p->ended?1:0,
|
||||||
|
p->resource_share
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
MIOFILE mf;
|
MIOFILE mf;
|
||||||
|
|
Loading…
Reference in New Issue