[IMP] name of remotes should be case insensitive

pull/2344/head
Enric Tobella 2018-11-28 12:38:09 +01:00 committed by Olga Marco
parent 06c454570d
commit 64ef56ae52
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
{ {
'name': "Remote Base", 'name': "Remote Base",
'version': '11.0.1.0.2', 'version': '11.0.1.0.3',
'category': 'Generic Modules/Base', 'category': 'Generic Modules/Base',
'author': "Creu Blanca, Odoo Community Association (OCA)", 'author': "Creu Blanca, Odoo Community Association (OCA)",
'website': 'http://github.com/OCA/server-tools', 'website': 'http://github.com/OCA/server-tools',

View File

@ -40,7 +40,7 @@ class ResRemote(models.Model):
except socket.herror: except socket.herror:
logging.warning('Remote with ip %s could not be found' % addr) logging.warning('Remote with ip %s could not be found' % addr)
hostname = False hostname = False
remote = self.search([('name', '=', hostname or addr)]) remote = self.search([('name', '=ilike', hostname or addr)])
if not remote: if not remote:
remote = self.create(self._create_vals(addr, hostname)) remote = self.create(self._create_vals(addr, hostname))
if remote.ip != addr: if remote.ip != addr: