summaryrefslogtreecommitdiffstats
path: root/gearman
diff options
context:
space:
mode:
authorBjörn Geiger2011-07-13 13:35:57 +0200
committerBjörn Geiger2011-07-13 13:35:57 +0200
commit863526ffeb447c809142d1955b83126084bf47c5 (patch)
treefa0c3d44b78d213f81ac25ed18253dd891506cc4 /gearman
parentnochmals ein Fehler (diff)
downloadpoolctrl-863526ffeb447c809142d1955b83126084bf47c5.tar.gz
poolctrl-863526ffeb447c809142d1955b83126084bf47c5.tar.xz
poolctrl-863526ffeb447c809142d1955b83126084bf47c5.zip
weitere Korrektur
Diffstat (limited to 'gearman')
-rw-r--r--gearman/bootWorker.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/gearman/bootWorker.php b/gearman/bootWorker.php
index c9b08a3..b617ebe 100644
--- a/gearman/bootWorker.php
+++ b/gearman/bootWorker.php
@@ -4,7 +4,7 @@ function bootTask(GearmanJob $job) {
$client->addServer();
$ipString = $job->workload();
- $ipArray = explode(', ', $ipString);
+ $ipArray = explode('; ', $ipString);
if(is_array($ipArray)) {
$count = 0;
@@ -13,7 +13,7 @@ function bootTask(GearmanJob $job) {
if($count == 0) {
$results = $client->do("ping", $ip);
} else {
- $results .= ", " . $client->do("ping", $ip);
+ $results .= "; " . $client->do("ping", $ip);
}
$count++;
}