Skip to content

Commit

Permalink
fix: Change default port to 22208
Browse files Browse the repository at this point in the history
  • Loading branch information
DPS0340 committed Jun 28, 2024
1 parent 401848f commit 3776f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ cargo run --bin rrdb run
#### Client

```
psql -U rrdb -p 55555 --host 0.0.0.0
psql -U rrdb -p 22208 --host 0.0.0.0
```

---
Expand Down
2 changes: 1 addition & 1 deletion src/executor/config/global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl std::default::Default for GlobalConfig {
let base_path = PathBuf::from(DEFAULT_CONFIG_BASEPATH);

Self {
port: 55555,
port: 22208,
host: "0.0.0.0".to_string(),
data_directory: base_path
.join(DEFAULT_DATA_DIRNAME)
Expand Down

0 comments on commit 3776f2e

Please sign in to comment.