More async fixing

This commit is contained in:
Cyber MacGeddon 2025-02-11 23:24:09 +00:00
parent faa50cbcdc
commit ddb2380290

View file

@ -190,7 +190,7 @@ class Processor(ConsumerProducer):
error=None, error=None,
) )
await self.producer.send(r, properties={"id": id}) await self.send(r, properties={"id": id})
return return
@ -205,7 +205,7 @@ class Processor(ConsumerProducer):
error=None, error=None,
) )
await self.producer.send(r, properties={"id": id}) await self.send(r, properties={"id": id})
return return
@ -223,7 +223,7 @@ class Processor(ConsumerProducer):
response=None, response=None,
) )
await self.producer.send(r, properties={"id": id}) await self.send(r, properties={"id": id})
except Exception as e: except Exception as e:
@ -239,7 +239,7 @@ class Processor(ConsumerProducer):
response=None, response=None,
) )
await self.producer.send(r, properties={"id": id}) await self.send(r, properties={"id": id})
@staticmethod @staticmethod
def add_args(parser): def add_args(parser):