mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-21 11:11:03 +02:00
More async fixing
This commit is contained in:
parent
faa50cbcdc
commit
ddb2380290
1 changed files with 4 additions and 4 deletions
|
|
@ -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):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue