From 72c9e44a91cf8cc7bc6353cb5457e0c3be297778 Mon Sep 17 00:00:00 2001 From: "paul.baranowski" Date: Wed, 23 Mar 2011 00:17:41 -0400 Subject: [PATCH] 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. --- application/models/Schedule.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/application/models/Schedule.php b/application/models/Schedule.php index fc1c10770..0940e0a93 100644 --- a/application/models/Schedule.php +++ b/application/models/Schedule.php @@ -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; } }