Fix missing table name in exception message in CassandraVectorStore (#2842)
Updated the `Preconditions.checkState` call to include `this.schema.table` as an argument. Signed-off-by: jitokim <pigberger70@gmail.com>
This commit is contained in:
@@ -546,7 +546,7 @@ public class CassandraVectorStore extends AbstractObservationVectorStore impleme
|
||||
.getKeyspace(this.schema.keyspace)
|
||||
.get()
|
||||
.getTable(this.schema.table)
|
||||
.isPresent(), "table %s does not exist");
|
||||
.isPresent(), "table %s does not exist", this.schema.table);
|
||||
|
||||
TableMetadata tableMetadata = this.session.getMetadata()
|
||||
.getKeyspace(this.schema.keyspace)
|
||||
|
||||
Reference in New Issue
Block a user