mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-14 18:02:37 +02:00
Fixing more Cassandra consistency issues (#488)
* Fixing more Cassandra work * Fix tests
This commit is contained in:
parent
ccaec88a72
commit
85e669c763
23 changed files with 196 additions and 208 deletions
|
|
@ -45,13 +45,13 @@ class Configuration:
|
|||
|
||||
# FIXME: Some version vs config race conditions
|
||||
|
||||
def __init__(self, push, host, user, password, keyspace):
|
||||
def __init__(self, push, host, username, password, keyspace):
|
||||
|
||||
# External function to respond to update
|
||||
self.push = push
|
||||
|
||||
self.table_store = ConfigTableStore(
|
||||
host, user, password, keyspace
|
||||
host, username, password, keyspace
|
||||
)
|
||||
|
||||
async def inc_version(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue