
25 Sep
2014
25 Sep
'14
8:19 a.m.
Reviewed-by: Crístian Viana <vianac@linux.vnet.ibm.com> Tested-by: Crístian Viana <vianac@linux.vnet.ibm.com> On 24-09-2014 23:50, Aline Manera wrote:
Kimchi controller allows filterting the resources according to their parameters, but the filter data type may vary: string, list, regex.
When using re.match() to valid the regex we need to make sure the value is a string, otherwise we will face the error:
File "/usr/lib64/python2.6/re.py", line 137, in match return _compile(pattern, flags).match(string) File "/usr/lib64/python2.6/re.py", line 232, in _compile p = _cache.get(cachekey) TypeError: unhashable type: 'list'
Signed-off-by: Aline Manera <alinefm@linux.vnet.ibm.com>