Skip to content

Commit a23dc15

Browse files
committed
chore: update plugins, fix .rr.yaml
Signed-off-by: Valery Piashchynski <[email protected]>
1 parent aacecb9 commit a23dc15

File tree

3 files changed

+124
-120
lines changed

3 files changed

+124
-120
lines changed

.rr.yaml

+19-15
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ rpc:
2424

2525
# Application server settings (docs: https://roadrunner.dev/docs/php-worker)
2626
server:
27-
#[SINCE 2.6]
27+
# Execute command before the main server's command.
2828
on_init:
2929
# Command to execute before the main server's command
3030
#
@@ -36,12 +36,16 @@ server:
3636
# Default: 60s [60m, 60h], if used w/o units its means - NANOSECONDS.
3737
exec_timeout: 20s
3838

39+
# Exit on init error
40+
# Default: false
41+
exit_on_error: false
42+
3943
# Environment variables for the worker processes.
4044
#
4145
# Default: <empty map>
4246
env:
43-
SOME_KEY: "SOME_VALUE"
44-
SOME_KEY2: "SOME_VALUE2"
47+
- SOME_KEY: "SOME_VALUE"
48+
- SOME_KEY2: "SOME_VALUE2"
4549

4650
# Username (not UID) of the user from whom the on_init command is executed. An empty value means to use the RR process user.
4751
#
@@ -67,8 +71,8 @@ server:
6771
#
6872
# Default: <empty map>
6973
env:
70-
SOME_KEY: "SOME_VALUE"
71-
SOME_KEY2: "SOME_VALUE2"
74+
- SOME_KEY: "SOME_VALUE"
75+
- SOME_KEY2: "SOME_VALUE2"
7276

7377
# Worker relay can be: "pipes", TCP (eg.: tcp://127.0.0.1:6002), or socket (eg.: unix:///var/run/rr.sock).
7478
#
@@ -103,12 +107,12 @@ logs:
103107
# Output can be file (eg.: "/var/log/rr_errors.log"), "stderr" or "stdout".
104108
#
105109
# Default: "stderr"
106-
output: [ stderr ]
110+
output: "stderr"
107111

108112
# Errors only output can be file (eg.: "/var/log/rr_errors.log"), "stderr" or "stdout".
109113
#
110114
# Default: "stderr"
111-
err_output: [ stderr ]
115+
err_output: "stderr"
112116

113117
# File logger options
114118
#
@@ -149,20 +153,20 @@ logs:
149153
mode: development
150154
level: panic
151155
encoding: console
152-
output: [ stdout ]
153-
err_output: [ stderr ]
156+
output: "stdout"
157+
err_output: "stderr"
154158
server:
155159
mode: production
156160
level: info
157161
encoding: json
158-
output: [ stdout ]
159-
err_output: [ stdout ]
162+
output: "stdout"
163+
err_output: "stdout"
160164
rpc:
161165
mode: raw
162166
level: debug
163167
encoding: console
164-
output: [ stderr ]
165-
err_output: [ stdout ]
168+
output: "stderr"
169+
err_output: "stdout"
166170

167171
# Workflow and activity mesh service.
168172
#
@@ -968,8 +972,8 @@ metrics:
968972
labels: [ "type" ]
969973
# Objectives defines the quantile rank estimates with their respective absolute error (for summary only).
970974
objectives:
971-
0.1: 2.3
972-
1.0: 1.4
975+
- 0.1: 2.3
976+
- 1.0: 1.4
973977
app_metric_histogram:
974978
type: histogram
975979
help: "Custom histogram application metric"

go.mod

+35-35
Original file line numberDiff line numberDiff line change
@@ -10,46 +10,46 @@ require (
1010
github.com/fatih/color v1.18.0
1111
github.com/joho/godotenv v1.5.1
1212
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/roadrunner-server/amqp/v5 v5.0.4
13+
github.com/roadrunner-server/amqp/v5 v5.1.0
1414
github.com/roadrunner-server/api/v4 v4.16.0
15-
github.com/roadrunner-server/app-logger/v5 v5.0.4
16-
github.com/roadrunner-server/beanstalk/v5 v5.0.4
17-
github.com/roadrunner-server/boltdb/v5 v5.0.4
18-
github.com/roadrunner-server/centrifuge/v5 v5.0.4
19-
github.com/roadrunner-server/config/v5 v5.0.4
15+
github.com/roadrunner-server/app-logger/v5 v5.1.0
16+
github.com/roadrunner-server/beanstalk/v5 v5.1.0
17+
github.com/roadrunner-server/boltdb/v5 v5.1.0
18+
github.com/roadrunner-server/centrifuge/v5 v5.1.0
19+
github.com/roadrunner-server/config/v5 v5.1.0
2020
github.com/roadrunner-server/endure/v2 v2.6.1
2121
github.com/roadrunner-server/errors v1.4.1
22-
github.com/roadrunner-server/fileserver/v5 v5.0.3
23-
github.com/roadrunner-server/google-pub-sub/v5 v5.0.4
22+
github.com/roadrunner-server/fileserver/v5 v5.1.0
23+
github.com/roadrunner-server/google-pub-sub/v5 v5.1.0
2424
github.com/roadrunner-server/goridge/v3 v3.8.3
25-
github.com/roadrunner-server/grpc/v5 v5.0.6
26-
github.com/roadrunner-server/gzip/v5 v5.0.4
27-
github.com/roadrunner-server/headers/v5 v5.0.4
28-
github.com/roadrunner-server/http/v5 v5.0.4
29-
github.com/roadrunner-server/informer/v5 v5.0.4
30-
github.com/roadrunner-server/jobs/v5 v5.0.5
31-
github.com/roadrunner-server/kafka/v5 v5.0.4
32-
github.com/roadrunner-server/kv/v5 v5.1.0
33-
github.com/roadrunner-server/lock/v5 v5.0.4
34-
github.com/roadrunner-server/logger/v5 v5.0.4
35-
github.com/roadrunner-server/memcached/v5 v5.0.4
36-
github.com/roadrunner-server/memory/v5 v5.1.0
37-
github.com/roadrunner-server/metrics/v5 v5.0.4
38-
github.com/roadrunner-server/nats/v5 v5.0.4
39-
github.com/roadrunner-server/otel/v5 v5.0.3
25+
github.com/roadrunner-server/grpc/v5 v5.1.0
26+
github.com/roadrunner-server/gzip/v5 v5.1.0
27+
github.com/roadrunner-server/headers/v5 v5.1.0
28+
github.com/roadrunner-server/http/v5 v5.1.0
29+
github.com/roadrunner-server/informer/v5 v5.1.0
30+
github.com/roadrunner-server/jobs/v5 v5.1.0
31+
github.com/roadrunner-server/kafka/v5 v5.1.0
32+
github.com/roadrunner-server/kv/v5 v5.2.0
33+
github.com/roadrunner-server/lock/v5 v5.1.0
34+
github.com/roadrunner-server/logger/v5 v5.1.0
35+
github.com/roadrunner-server/memcached/v5 v5.1.0
36+
github.com/roadrunner-server/memory/v5 v5.2.0
37+
github.com/roadrunner-server/metrics/v5 v5.1.0
38+
github.com/roadrunner-server/nats/v5 v5.1.0
39+
github.com/roadrunner-server/otel/v5 v5.1.0
4040
github.com/roadrunner-server/pool v1.1.1
41-
github.com/roadrunner-server/prometheus/v5 v5.0.3
42-
github.com/roadrunner-server/proxy_ip_parser/v5 v5.0.4
43-
github.com/roadrunner-server/redis/v5 v5.0.4
44-
github.com/roadrunner-server/resetter/v5 v5.0.5
45-
github.com/roadrunner-server/rpc/v5 v5.0.4
46-
github.com/roadrunner-server/send/v5 v5.0.3
47-
github.com/roadrunner-server/server/v5 v5.1.2
48-
github.com/roadrunner-server/service/v5 v5.0.4
49-
github.com/roadrunner-server/sqs/v5 v5.0.4
50-
github.com/roadrunner-server/static/v5 v5.0.3
51-
github.com/roadrunner-server/status/v5 v5.0.4
52-
github.com/roadrunner-server/tcp/v5 v5.0.4
41+
github.com/roadrunner-server/prometheus/v5 v5.1.0
42+
github.com/roadrunner-server/proxy_ip_parser/v5 v5.1.0
43+
github.com/roadrunner-server/redis/v5 v5.1.0
44+
github.com/roadrunner-server/resetter/v5 v5.1.0
45+
github.com/roadrunner-server/rpc/v5 v5.1.0
46+
github.com/roadrunner-server/send/v5 v5.1.0
47+
github.com/roadrunner-server/server/v5 v5.2.0
48+
github.com/roadrunner-server/service/v5 v5.1.0
49+
github.com/roadrunner-server/sqs/v5 v5.1.0
50+
github.com/roadrunner-server/static/v5 v5.1.0
51+
github.com/roadrunner-server/status/v5 v5.1.0
52+
github.com/roadrunner-server/tcp/v5 v5.1.0
5353
github.com/spf13/cobra v1.8.1
5454
github.com/spf13/viper v1.19.0
5555
github.com/stretchr/testify v1.10.0

0 commit comments

Comments
 (0)