import get_experiments
- in case of localhost, remove .psi.ch from normalized host name + fix import in t.py + allow boolean as selection criterium
This commit is contained in:
@ -338,6 +338,10 @@ class InfluxDBWrapper:
|
||||
fixed_tags[key] = crit
|
||||
dropcols.append(key)
|
||||
crit = f'"{crit}"'
|
||||
elif isinstance(crit, bool):
|
||||
crit = 'true' if crit else 'false'
|
||||
fixed_tags[key] = crit
|
||||
dropcols.append(key)
|
||||
elif isinstance(crit, (int, float)):
|
||||
fixed_tags[key] = crit
|
||||
dropcols.append(key)
|
||||
|
Reference in New Issue
Block a user