CC-2084: Integrate RabbitMQ for immediate schedule updates and commands

Fixed minor issue where schedule was pushed back to pypo after updating
the "played" flag for media files and playlists.  This isnt necessary.
This commit is contained in:
paul.baranowski 2011-03-23 00:17:41 -04:00
parent 3e27a3de01
commit 72c9e44a91
1 changed files with 0 additions and 2 deletions

View File

@ -235,7 +235,6 @@ class ScheduleGroup {
." SET schedule_group_played=TRUE"
." WHERE group_id=".$this->groupId;
$retVal = $CC_DBC->query($sql);
RabbitMq::PushSchedule();
return $retVal;
}
@ -246,7 +245,6 @@ class ScheduleGroup {
." WHERE group_id=".$this->groupId
." AND file_id=".pg_escape_string($p_fileId);
$retVal = $CC_DBC->query($sql);
RabbitMq::PushSchedule();
return $retVal;
}
}