Skip to content

Commit

Permalink
fix #208
Browse files Browse the repository at this point in the history
* added code to group entities by servicepath when multiple notifications arrive at once (#208)
* add tests and integration tests (so we have also test with orion triggering such case)
* fix notification tests to rely only on api calls (remove call to translator)
* changed error code to 400 when due to invalid request
* upgraded python to 3.8.5
* fix integration test to use new docker image with entrypoint (#362)
  • Loading branch information
chicco785 committed Sep 22, 2020
1 parent 23e4b85 commit 85abb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translators/sql_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def insert(self, entities, fiware_service=None, fiware_servicepath=None):
path)
else:
msg = 'Multiple servicePath are allowed only ' \
'if their size is match the size of entities'
'if their size match the size of entities'
raise InvalidHeaderValue('Fiware-ServicePath',
fiware_servicepath, msg)

Expand Down

0 comments on commit 85abb4d

Please sign in to comment.