Publish a url instead of a file path.

Signed-off-by: Ralph Bean <rbean@redhat.com>
This commit is contained in:
Ralph Bean 2015-12-09 17:07:43 -05:00
parent df0304095d
commit f552eae2bf
1 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,8 @@
import json
import threading
import pungi.paths
from kobo import shortcuts
@ -33,7 +35,11 @@ class PungiNotifier(object):
def _update_args(self, data):
"""Add compose related information to the data."""
data.setdefault('compose_id', self.compose.compose_id)
data.setdefault('topdir', self.compose.paths.compose.topdir())
# Publish where in the world this compose will end up living
location = pungi.paths.translate_path(
self.compose, self.compose.paths.compose.topdir())
data.setdefault('location', location)
def send(self, msg, **kwargs):
"""Send a message.