mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-18 03:45:12 +02:00
Misc fixes (#413)
- tg-load-turtle, removed cruft output - Fixed symbol error in triples_store_service.py - Removed unnecessary import
This commit is contained in:
parent
3c6d875e79
commit
3fa004d628
3 changed files with 1 additions and 3 deletions
|
|
@ -13,7 +13,6 @@ from prometheus_client import start_http_server, Info
|
||||||
|
|
||||||
from .. schema import ConfigPush, config_push_queue
|
from .. schema import ConfigPush, config_push_queue
|
||||||
from .. log_level import LogLevel
|
from .. log_level import LogLevel
|
||||||
from .. exceptions import TooManyRequests
|
|
||||||
from . pubsub import PulsarClient
|
from . pubsub import PulsarClient
|
||||||
from . producer import Producer
|
from . producer import Producer
|
||||||
from . consumer import Consumer
|
from . consumer import Consumer
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ Triples store base class
|
||||||
|
|
||||||
from .. schema import Triples
|
from .. schema import Triples
|
||||||
from .. base import FlowProcessor, ConsumerSpec
|
from .. base import FlowProcessor, ConsumerSpec
|
||||||
|
from .. exceptions import TooManyRequests
|
||||||
|
|
||||||
default_ident = "triples-write"
|
default_ident = "triples-write"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -89,8 +89,6 @@ class Loader:
|
||||||
|
|
||||||
await ws.send(json.dumps(req))
|
await ws.send(json.dumps(req))
|
||||||
|
|
||||||
print(req)
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue