From e48f64b84365b6e93a68b9e97813501e099639e4 Mon Sep 17 00:00:00 2001
From: Pedro Beschorner Marin <pedrobmarin@gmail.com>
Date: Mon, 22 Mar 2021 16:36:32 -0300
Subject: [PATCH] Avoid localhost at notes endpoint

Use 127.0.0.1 instead of localhost since Etherpad only listens for ipv4.
---
 record-and-playback/core/scripts/bigbluebutton.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/record-and-playback/core/scripts/bigbluebutton.yml b/record-and-playback/core/scripts/bigbluebutton.yml
index d491cf8aa9..684c85d6a2 100755
--- a/record-and-playback/core/scripts/bigbluebutton.yml
+++ b/record-and-playback/core/scripts/bigbluebutton.yml
@@ -7,7 +7,7 @@ raw_screenshare_src: /usr/share/red5/webapps/screenshare/streams
 raw_webrtc_deskshare_src: /usr/share/red5/webapps/video-broadcast/streams
 raw_deskshare_src: /var/bigbluebutton/deskshare
 raw_presentation_src: /var/bigbluebutton
-notes_endpoint: http://localhost:9001/p
+notes_endpoint: http://127.0.0.1:9001/p
 notes_apikey: ETHERPAD_APIKEY
 # Specify the notes formats we archive
 # txt, doc and odt are also supported
-- 
GitLab