带有--remove标志的Django Haystack update_index给出错误

时间:2018-09-19 11:10:11

标签: python python-3.x elasticsearch django-rest-framework django-haystack

当我尝试使用带有--remove标志的django-haystack的update_index命令时,出现以下错误def isFibonaccy(inputList): out = [] for i in inputList: phi = 0.5 + 0.5 * math.sqrt(5.0) a = phi * i out.append(int(i == 0 or abs(round(a) - a) < 1.0 / i)) return out print(isFibonaccy([4, 6, 8, 10, 12])) # -> [0, 0, 1, 0, 0]

我不确定是否是因为django-haystack与弹性版本6.2之间不兼容。如果是,是否有任何解决方法?

0 个答案:

没有答案