Skip to content

Commit

Permalink
Fixed port issue
Browse files Browse the repository at this point in the history
  • Loading branch information
qvad committed Dec 19, 2024
1 parent 76ccea4 commit 3d385e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yugabyte/src/yugabyte/auto.clj
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
(info "Creating tablespace" tablespace-name)
(let [port (if (:connection-manager test)
5431
5432)]
5433)]
(ysqlsh test :-p port :-h (cn/ip node) :-c (str "CREATE TABLESPACE " tablespace-name " "
"WITH (replica_placement='" (json/write-str replica-placement) "');"))))

Expand Down Expand Up @@ -604,7 +604,7 @@
"")
port (if (:connection-manager test)
5431
5432)]
5433)]
(ysqlsh test :-p port :-h (cn/ip node) :-c (str "DROP DATABASE IF EXISTS jepsen;"))
(ysqlsh test :-p port :-h (cn/ip node) :-c (str "CREATE DATABASE jepsen" colocated-clause ";"))
(ysqlsh test :-p port :-h (cn/ip node) :-c (str "DROP USER IF EXISTS jepsen;
Expand Down

0 comments on commit 3d385e7

Please sign in to comment.