We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d28ff78 + 254fde6 commit 201ce4fCopy full SHA for 201ce4f
html/user/submit.php
@@ -396,7 +396,7 @@ function() use ($apps) {
396
'Jobs you submit can run', 'only_own',
397
[
398
[0, 'on any computer'],
399
- [1, 'only on your computers']
+ [1, 'only on your computers (and no other jobs will run there)']
400
],
401
$user->seti_id
402
);
sched/sched_send.cpp
@@ -1717,6 +1717,13 @@ void send_work() {
1717
}
1718
1719
1720
+ // if user is job submitter and has 'only run jobs on my computers' set,
1721
+ // send them only their own jobs
1722
+ //
1723
+ if (g_reply->user.seti_id) {
1724
+ goto done;
1725
+ }
1726
+
1727
if (config.enable_assignment_multi) {
1728
if (send_broadcast_jobs()) {
1729
if (config.debug_assignment) {
0 commit comments