v2.12.0-rc.1
Pre-release
Pre-release
rustatian
released this
12 Nov 18:06
·
669 commits
to master
since this release
π New:
- β All plugins: update to
v3
. This is done not because of some breaking change but because of the internal update. - β RPC plugin: add new API to provide a running RR version and configuration in JSON format.
- β AMQP plugin: new configuration options. FR, (thanks @andrey-tech)
jobs:
pipelines:
example:
driver: amqp
config:
# Durable exchange
#
# Default: true
exchange_durable: true
# Auto-deleted exchange
#
# Default: false
exchange_auto_deleted: false
# Auto-deleted queue
#
# Default: false
queue_auto_deleted: false
- β Workers pool (SDK): New option to control the
reset_timeout
. Note that thepool.Reset
is protected by mutexes, meaning that if you have some requests already in the pool, you'll have to wait for these requests to be processed. Thereset_timeout
does not count this time.
pool:
allocate_timeout: 10s
reset_timeout: 10s
destroy_timeout: 10s