We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78baec9 commit ca89239Copy full SHA for ca89239
legacy-proxy/proxy.py
@@ -30,6 +30,7 @@ async def search(self, query):
30
return [(r["i"], r["s"]) for r in body["r"]]
31
32
async def update(self, changes):
33
+ print(f'sending update with {len(changes)} changes')
34
url = self.index_url + f"/{self.index_name}/_update"
35
data = msgpack.dumps({"c": changes})
36
headers = {
0 commit comments