Merge branch 'master' of git@gitorious.org:statusnet/mainline into testing
This commit is contained in:
commit
c4557d4d07
@ -74,6 +74,10 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||
parent::prepare($args);
|
||||
|
||||
$this->notices = $this->getNotices();
|
||||
|
||||
if ($this->since) {
|
||||
throw new ServerException("since parameter is disabled for performance; use since_id", 403);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -145,7 +149,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||
|
||||
$notice = Notice::publicStream(
|
||||
($this->page - 1) * $this->count, $this->count, $this->since_id,
|
||||
$this->max_id, $this->since
|
||||
$this->max_id
|
||||
);
|
||||
|
||||
while ($notice->fetch()) {
|
||||
|
@ -107,9 +107,10 @@ class StompQueueManager extends QueueManager
|
||||
$message .= ':' . $param;
|
||||
}
|
||||
$this->_connect();
|
||||
$result = $this->_send($this->control,
|
||||
$message,
|
||||
array ('created' => common_sql_now()));
|
||||
$con = $this->cons[$this->defaultIdx];
|
||||
$result = $con->send($this->control,
|
||||
$message,
|
||||
array ('created' => common_sql_now()));
|
||||
if ($result) {
|
||||
$this->_log(LOG_INFO, "Sent control ping to queue daemons: $message");
|
||||
return true;
|
||||
@ -368,17 +369,10 @@ class StompQueueManager extends QueueManager
|
||||
foreach ($this->cons as $i => $con) {
|
||||
if ($con) {
|
||||
$this->rollback($i);
|
||||
$con->unsubscribe($this->control);
|
||||
$con->disconnect();
|
||||
$this->cons[$i] = null;
|
||||
}
|
||||
}
|
||||
if ($this->sites) {
|
||||
foreach ($this->sites as $server) {
|
||||
StatusNet::init($server);
|
||||
$this->doUnsubscribe();
|
||||
}
|
||||
} else {
|
||||
$this->doUnsubscribe();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user