Skip to content

Commit

Permalink
fix: request circuit info
Browse files Browse the repository at this point in the history
  • Loading branch information
mqgmaster committed Dec 18, 2015
1 parent ea3f0f1 commit f1a1eaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/circuits/controllers/ReservationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ public function actionRequestUpdate($id) {
self::asyncActionBegin();
$res = Reservation::findOne($id);
foreach ($res->getConnections()->all() as $conn) {
$conn->requestSummary();
if($conn->status != Connection::STATUS_PENDING)
$conn->requestSummary();
}
}

Expand Down

0 comments on commit f1a1eaa

Please sign in to comment.