Skip to content

Commit

Permalink
fix mariadb service
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 12, 2024
1 parent eb51357 commit dd9cc68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mariadb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub fn start(_args: String) -> FnResult<String> {
.with_exec(vec!["type", "mysql"])?
.with_exec(vec!["echo -e \"MySQL starting on port $MYSQL_PORT\""])?
.with_exec(vec!["overmind", "start", "-f", "Procfile", "--daemonize"])?
.wait_on(port.parse()?, None)?
.with_exec(vec!["sleep", "5"])?
.with_exec(vec!["cat", "$MYSQL_HOME/mysql.log"])?
.with_exec(vec!["overmind", "status"])?
.wait_on(port.parse()?, None)?
Expand Down

0 comments on commit dd9cc68

Please sign in to comment.