Skip to content

Commit 4d2e226

Browse files
feat: query planner rewrite (#11)
1 parent 163dd7f commit 4d2e226

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ RUN cargo build --release --bin brahmand \
1515
&& cargo build --release --bin brahmand-client
1616

1717
# We do not need the Rust toolchain to run the binary!
18-
FROM debian:bookworm-slim AS runtime
18+
FROM debian:bullseye-slim AS runtime
1919
RUN apt-get update && \
20-
apt-get install -y libssl3 ca-certificates && \
20+
apt-get install -y libssl1.1 ca-certificates && \
2121
rm -rf /var/lib/apt/lists/*
2222
WORKDIR /app
2323
# Copy binaries

brahmand/src/server/graph_catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pub async fn get_graph_catalog(clickhouse_client: Client) -> Result<GraphSchema,
5050
}
5151
Err(err) => {
5252
// if it is a connection error then send error to the client from server
53-
// if the graph meta table is not present then create a one.
53+
// if the graph catalog table is not present then create a one.
5454
let err_msg = err.to_string();
5555
// println!("err_msg -> {:?}", err_msg);
5656

0 commit comments

Comments
 (0)