From: Guillaume Pellerin Date: Wed, 17 Jul 2013 16:12:41 +0000 (+0200) Subject: fix conf push host X-Git-Tag: 1.3-TC~30^2~1 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=b7dad3de6bc8f0af2f7978b290b7bccf28dfdc68;p=teleforma.git fix conf push host --- diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 751f8026..5a143399 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -597,7 +597,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())