From b7dad3de6bc8f0af2f7978b290b7bccf28dfdc68 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 17 Jul 2013 18:12:41 +0200 Subject: [PATCH] fix conf push host --- teleforma/views/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.39.5