Skip to content

Commit

Permalink
Bump for Postgresql 16
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Sep 18, 2023
1 parent b620a16 commit db534d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration_tests/src/setup_utils/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ use std::{
/// Starts the exit postgres instance in the native system namespace, TODO insert plumbing so that exits can reach it
pub fn start_postgres() {
const POSTGRES_USER: &str = "postgres";
const POSTGRES_BIN: &str = "/usr/lib/postgresql/15/bin/postgres";
const INITDB_BIN: &str = "/usr/lib/postgresql/15/bin/initdb";
const POSTGRES_BIN: &str = "/usr/lib/postgresql/16/bin/postgres";
const INITDB_BIN: &str = "/usr/lib/postgresql/16/bin/initdb";
// for this test script
const DB_URL_LOCAL: &str = "postgres://[email protected]/test";
// for the rita exit instances
Expand Down
4 changes: 2 additions & 2 deletions legacy_integration_tests/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ RUN apt-get install -y python3-termcolor python3-toml python3-networkx python3-m
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
RUN PATH=$PATH:$HOME/.cargo/bin cargo install diesel_cli --force
ENV POSTGRES_USER=postgres
ENV POSTGRES_BIN=/usr/lib/postgresql/15/bin/postgres
ENV INITDB_BIN=/usr/lib/postgresql/15/bin/initdb
ENV POSTGRES_BIN=/usr/lib/postgresql/16/bin/postgres
ENV INITDB_BIN=/usr/lib/postgresql/16/bin/initdb
ARG NODES
ENV SPEEDTEST_THROUGHPUT=$SPEEDTEST_THROUGHPUT
ENV SPEEDTEST_DURATION=$SPEEDTEST_DURATION
Expand Down

0 comments on commit db534d9

Please sign in to comment.