diff --git a/Cargo.lock b/Cargo.lock index b5ae683..0a02148 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -376,7 +376,7 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "ap-relay" -version = "0.3.84" +version = "0.3.85" dependencies = [ "activitystreams", "activitystreams-ext", diff --git a/Cargo.toml b/Cargo.toml index 5ae7ce7..d6358f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ap-relay" description = "A simple activitypub relay" -version = "0.3.84" +version = "0.3.85" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" diff --git a/README.md b/README.md index ad86105..66a6544 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ $ sudo docker run --rm -it \ -e ADDR=0.0.0.0 \ -e SLED_PATH=/mnt/sled/db-0.34 \ -p 8080:8080 \ - asonix/relay:0.3.84 + asonix/relay:0.3.85 ``` This will launch the relay with the database stored in "./sled/db-0.34" and listening on port 8080 #### Cargo @@ -157,9 +157,9 @@ Optional - Address to bind to for serving the prometheus scrape endpoint Optional - Port to bind to for serving the prometheus scrape endpoint ##### `CLIENT_POOL_SIZE` Optional - How many connections the relay should maintain per thread. This value will be multiplied -by two times the number of cores available to the relay. This defaults to 20, so a 4-core machine -will have a maximum of 160 simultaneous outbound connections. If you run into problems related to -"Too many open files", you can either decrease this number or increase the ulimit for your system. +by the number of cores available to the relay. This defaults to 20, so a 4-core machine will have a +maximum of 160 simultaneous outbound connections. If you run into problems related to "Too many open +files", you can either decrease this number or increase the ulimit for your system. ### Subscribing Mastodon admins can subscribe to this relay by adding the `/inbox` route to their relay settings. diff --git a/docker/prod/docker-compose.yml b/docker/prod/docker-compose.yml index 52f3b2a..54e2a11 100644 --- a/docker/prod/docker-compose.yml +++ b/docker/prod/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.3' services: relay: - image: asonix/relay:0.3.84 + image: asonix/relay:0.3.85 ports: - "8079:8079" restart: always diff --git a/relay.nix b/relay.nix index ef64492..08d4a73 100644 --- a/relay.nix +++ b/relay.nix @@ -6,7 +6,7 @@ rustPlatform.buildRustPackage { pname = "relay"; - version = "0.3.84"; + version = "0.3.85"; src = ./.; cargoLock.lockFile = ./Cargo.lock;