Skip to content

Commit

Permalink
Fixed code style warnings in communication extension (#4959)
Browse files Browse the repository at this point in the history
* Fix code style warnings in communication module

* Allow large response for CommunicationScenarioTest

* fix communication live tests, update test recordings

* Updated recordings

Co-authored-by: Mayssam Mohammadi Nevisi <[email protected]>
Co-authored-by: mayssamm <[email protected]>
  • Loading branch information
3 people authored Jun 9, 2022
1 parent 33d6423 commit e1e8a87
Show file tree
Hide file tree
Showing 18 changed files with 1,994 additions and 1,338 deletions.
5 changes: 5 additions & 0 deletions src/communication/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

1.1.1
++++++
* Fix codestyle issues in communiction command group.


1.1.0
++++++
* Add communication identity command group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def __init__(self, keys=None, replacement="sanitized"):
def process_request(self, request):
import json
try:
if request.body is None:
return request
body = json.loads(request.body.decode())
if 'smsRecipients' in body:
for item in body["smsRecipients"]:
Expand Down
Loading

0 comments on commit e1e8a87

Please sign in to comment.