repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Add a h2 header to the begin of the results
[mediawiki.git]
/
maintenance
/
waitForSlave.php
blob
179910000be0eb95e81e0aff4c31fb4fa805e0a4
1
<
?php
2
/**
3
* @file
4
* @ingroup Maintenance
5
*/
6
7
require_once
(
"commandLine.inc"
);
8
if
(
isset
(
$args
[
0
] ) ) {
9
wfWaitForSlaves
(
$args
[
0
]);
10
}
else
{
11
wfWaitForSlaves
(
10
);
12
}
13
14