From: Guillaume Pellerin Date: Wed, 17 Jul 2013 16:12:41 +0000 (+0200) Subject: fix conf push host X-Git-Tag: 1.1~546 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0f485ad17ab34f34df0cef400ab4ce5d1404ded7;p=teleforma.git fix conf push host --- diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 3bb612a8..c66db51a 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -592,7 +592,7 @@ class ConferenceRecordView(FormView): raise 'Error : input must be a conference dictionnary' def push(self): - url = 'http://' + settings.TELECASTER_MASTER_SERVER + '/json/' + url = 'http://' + self.conference.department.domain + '/json/' s = ServiceProxy(url) s.teleforma.create_conference(self.conference.to_json_dict())