#755: remove unnecessary weorkers, add Observer

This commit is contained in:
Vokhmin Alexey V 2012-12-10 21:01:34 +04:00
parent 1f74b25522
commit e0a1abcd4c
3 changed files with 10 additions and 18 deletions

View File

@ -1,9 +0,0 @@
module AbfWorker
class PublishBuildListContainerMdv
extend AbfWorker::Helpers::PublishBuildListContainerHelper
@queue = :publish_build_list_container_mdv
# see: PublishBuildListContainerHelper#perform
end
end

View File

@ -0,0 +1,10 @@
module AbfWorker
class PublishBuildListContainerObserver
@queue = :publish_build_list_container_observer
def self.perform(options)
# TODO: ...
end
end
end

View File

@ -1,9 +0,0 @@
module AbfWorker
class PublishBuildListContainerRhel
extend AbfWorker::Helpers::PublishBuildListContainerHelper
@queue = :publish_build_list_container_rhel
# see: PublishBuildListContainerHelper#perform
end
end