mirror of https://github.com/BOINC/boinc.git
Typo killed feeder with bad MySQL syntax. David, please check.
svn path=/trunk/boinc/; revision=4784
This commit is contained in:
parent
1c2350d39f
commit
8fe62528b7
|
@ -20847,9 +20847,11 @@ Bruce 7 Dec 2004
|
||||||
compression options are 'efficient' in that they do not write an uncompressed
|
compression options are 'efficient' in that they do not write an uncompressed
|
||||||
file then compress -- they go straight to compressed. SIGHUP and lockfile
|
file then compress -- they go straight to compressed. SIGHUP and lockfile
|
||||||
shutdown signals are properly caught and close compressed files and DB cleanly.
|
shutdown signals are properly caught and close compressed files and DB cleanly.
|
||||||
|
- Typo killed feeder with bad MySQL syntax
|
||||||
|
|
||||||
sched/
|
sched/
|
||||||
db_purge.C
|
db_purge.C
|
||||||
|
feeder.C
|
||||||
|
|
||||||
Rom 7 Dec 2004
|
Rom 7 Dec 2004
|
||||||
- Checkin changes suggested by Bruce Allen and Bernd Machenschalk related to
|
- Checkin changes suggested by Bruce Allen and Bernd Machenschalk related to
|
||||||
|
|
|
@ -375,9 +375,9 @@ int main(int argc, char** argv) {
|
||||||
} else if (!strcmp(argv[i], "-d")) {
|
} else if (!strcmp(argv[i], "-d")) {
|
||||||
log_messages.set_debug_level(atoi(argv[++i]));
|
log_messages.set_debug_level(atoi(argv[++i]));
|
||||||
} else if (!strcmp(argv[i], "-random_order")) {
|
} else if (!strcmp(argv[i], "-random_order")) {
|
||||||
order_clause = "order by random";
|
order_clause = "order by random ";
|
||||||
} else if (!strcmp(argv[i], "-priority_order")) {
|
} else if (!strcmp(argv[i], "-priority_order")) {
|
||||||
order_clause = "order by priority desc";
|
order_clause = "order by priority desc ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue