Pratyush101 commited on
Commit
278c7fd
·
verified ·
1 Parent(s): cb87bb8

Update sample_utils/turn.py

Browse files
Files changed (1) hide show
  1. sample_utils/turn.py +2 -2
sample_utils/turn.py CHANGED
@@ -18,8 +18,8 @@ def get_ice_servers():
18
 
19
  # Ref: https://www.twilio.com/docs/stun-turn/api
20
  try:
21
- account_sid = "ACb808f2be7a436da0f5620ea4740d6c5c"
22
- auth_token = "096f07f2fe9dac37e2701ca6da7bfa8d"
23
  except KeyError:
24
  logger.warning(
25
  "Twilio credentials are not set. Fallback to a free STUN server from Google." # noqa: E501
 
18
 
19
  # Ref: https://www.twilio.com/docs/stun-turn/api
20
  try:
21
+ account_sid = os.environ["TWILIO_ACCOUNT_SID"]
22
+ auth_token = os.environ["TWILIO_AUTH_TOKEN"]
23
  except KeyError:
24
  logger.warning(
25
  "Twilio credentials are not set. Fallback to a free STUN server from Google." # noqa: E501