diff options
author | Valery Piashchynski <[email protected]> | 2021-07-07 21:37:37 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-07 21:37:37 +0300 |
commit | b84a7cb26c184b709f18d3d52925b31d49351c03 (patch) | |
tree | 5be8fafccbb2e7ad2dc6496e8a5f1d212a65a8bb /tests/plugins/jobs | |
parent | 60c229c8506df465586434309af5acd1f84e2406 (diff) |
New Methods in the binary heap interface...
Add Len() method to the Binary Heaps interface with implementation.
Start consumers only for the user-defined set from the config.
Add Headers field to the proto
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/jobs')
-rw-r--r-- | tests/plugins/jobs/configs/.rr-jobs-init.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/plugins/jobs/configs/.rr-jobs-init.yaml b/tests/plugins/jobs/configs/.rr-jobs-init.yaml index c81ba6ef..bb6c477a 100644 --- a/tests/plugins/jobs/configs/.rr-jobs-init.yaml +++ b/tests/plugins/jobs/configs/.rr-jobs-init.yaml @@ -1,5 +1,5 @@ rpc: - listen: unix:///home/valery/Downloads/rr.sock + listen: unix:///tmp/rr.sock server: command: "php ../../client.php echo pipes" @@ -22,7 +22,7 @@ sqs: jobs: - num_pollers: 32 + num_pollers: 64 # worker pool configuration pool: num_workers: 10 @@ -54,5 +54,5 @@ jobs: MessageRetentionPeriod: 86400 # list of pipelines to be consumed by the server, keep empty if you want to start consuming manually - consume: [ "test-local", "test-1" ] + consume: [ "test-local" ] |