GOt it working

This commit is contained in:
Cyber MacGeddon 2025-02-11 23:03:16 +00:00
parent 29f209980a
commit faa50cbcdc
3 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ class Processor(ConsumerProducer):
chunks=embeds,
)
await self.producer.send(r)
await self.send(r)
except Exception as e:
print("Exception:", e, flush=True)

View file

@ -77,7 +77,7 @@ class Processor(ConsumerProducer):
entities=entities,
)
await self.producer.send(r)
await self.send(r)
except Exception as e:
print("Exception:", e, flush=True)

View file

@ -110,7 +110,7 @@ class Processor(ConsumerProducer):
metadata=metadata,
entities=entities,
)
await self.ec_prod.send(t)
self.ec_prod.send(t)
async def handle(self, msg):