diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-02-27 03:47:11 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-02-27 03:47:11 +0300 |
commit | c66fc2f691424023b107dfee1295fa165b223f86 (patch) | |
tree | 69af39ceb2831e6ede3b32af538e35162eb3f677 | |
parent | 500a91862cfcb8760c7ebf1cb034560863dcd9d8 (diff) |
change default ports to 7080 and 7081
-rw-r--r-- | src/Client.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client.php b/src/Client.php index b8bdb5a..5d0048b 100644 --- a/src/Client.php +++ b/src/Client.php @@ -5,8 +5,8 @@ namespace jobd; class Client { - const WORKER_PORT = 13596; - const MASTER_PORT = 13597; + const WORKER_PORT = 7080; + const MASTER_PORT = 7081; const EOT = "\4"; |