Skip to content

Commit

Permalink
feat(influxdb): set default port
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 21, 2024
1 parent 65d6582 commit 1beeddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion influxdb/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn setup() -> Result<String, Error> {
])?
.with_exec(vec!["[ -f $INFLUXDB_CONFIG ] || touch $INFLUXDB_CONFIG"])?
.with_exec(vec![
"grep -q influxdb: Procfile || echo -e 'influxdb: influxd -config $INFLUXDB_CONFIG \\n' >> Procfile",
"grep -q influxdb: Procfile || echo -e 'influxdb: influxd -config $INFLUXDB_CONFIG --http-bind-address $INFLUXDB_PORT \\n' >> Procfile",
])?
.stdout()?;

Expand Down

0 comments on commit 1beeddb

Please sign in to comment.