8000 Dissbling ssl · ericmicrofocus/botbuilder-python@d6dd862 · GitHub
[go: up one dir, main page]

Skip to content

Commit d6dd862

Browse files
committed
Dissbling ssl
1 parent a1f6f04 commit d6dd862

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_v3.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ async def recognizer_internal(self, turn_context: TurnContext):
6565
}
6666

6767
async with aiohttp.ClientSession() as session:
68-
async with session.post(url, json=body, headers=headers) as result:
68+
async with session.post(
69+
url, json=body, headers=headers, ssl=False
70+
) as result:
6971
luis_result = await result.json()
7072

7173
recognizer_result = RecognizerResult(

0 commit comments

Comments
 (0)
0