Skip to content

Commit c4d5302

Browse files
authored
Fix Cert_URI Bug to string for Hangouts Channel (RasaHQ#5808)
* Fix Cert_URi to string * added changelog entry
1 parent 81b1cbe commit c4d5302

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

changelog/5808.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Changed to variable CERT_URI in hangouts.py to a string type

rasa/core/channels/hangouts.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
logger = logging.getLogger(__name__)
1515

1616
CHANNEL_NAME = "hangouts"
17-
CERT_URI = (
18-
"https://www.googleapis.com/service_accounts/v1/metadata/x509/[email protected]",
19-
)
17+
CERT_URI = "https://www.googleapis.com/service_accounts/v1/metadata/x509/[email protected]"
2018

2119

2220
class HangoutsOutput(OutputChannel):

0 commit comments

Comments
 (0)