Fixed a bug on free edition not allowing to register correctly linux machines

This commit is contained in:
Adolfo Gómez García 2016-05-03 08:14:14 +02:00
parent bd70a6290e
commit b5926dec6f

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)')