Fixed a bug not allowing linux machines to register when using an case sensitive database0

This commit is contained in:
Adolfo Gómez García 2016-05-03 08:15:12 +02:00
parent 2fdcdb014f
commit c08a0cb0ed

View File

@ -111,7 +111,7 @@ class Actor(Handler):
logger.debug('Getting User services from ids: {}'.format(self._params.get('id')))
try:
clientIds = self._params.get('id').split(',')[:5]
clientIds = [i.upper() for i in self._params.get('id').split(',')[:5]]
except Exception:
raise RequestError('Invalid request: (no id found)')