diff options
author | Valery Piashchynski <[email protected]> | 2022-05-19 12:19:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-19 12:19:25 +0200 |
commit | aab5755b9e7729b7262d2daa359f45c05e6be834 (patch) | |
tree | b40c1468afa8e612dac7c151cdfa01beec923865 /.rr.yaml | |
parent | e9b13680a5461581e330484e0f8a9549800aa454 (diff) | |
parent | d8c0be8c14d2e433ae7218a133e7d979717609d5 (diff) |
[#1144]: release: `v2.10.1`v2.10.1
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 33 |
1 files changed, 31 insertions, 2 deletions
@@ -800,9 +800,14 @@ http: # Path to the root certificate authority file. # - # This option is optional. + # This option is optional (required for the mTLS). root_ca: /ssl/root.crt + # Client auth type (mTLS) + # + # This option is optional. Default value: no_client_certs. Possible values: request_client_cert, require_any_client_cert, verify_client_cert_if_given, require_and_verify_client_cert, no_client_certs + client_auth_type: no_client_certs + # FastCGI frontend support. fcgi: # FastCGI connection DSN. Supported TCP and Unix sockets. An empty value disables this. @@ -1173,6 +1178,11 @@ jobs: # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. priority: 1 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # Durable queue # # Default: false @@ -1241,6 +1251,11 @@ jobs: # Default: 1 tube_priority: 1 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # Tube name # # Default: default @@ -1273,6 +1288,16 @@ jobs: # Default: 10 prefetch: 10 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + + # Get queue URL only + # + # Default: false + skip_queue_declaration: false + # The duration (in seconds) that the received messages are hidden from subsequent # retrieve requests after being retrieved by a ReceiveMessage request # @@ -1314,7 +1339,6 @@ jobs: # # Should not be empty config: - # Pipeline priority # # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. @@ -1325,6 +1349,11 @@ jobs: # Messages to read into the channel prefetch: 100 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # NATS subject # # Default: default |