diff options
-rw-r--r-- | tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml | 4 | ||||
-rw-r--r-- | tests/plugins/jobs/boltdb/.rr-no-global.yaml | 22 |
4 files changed, 12 insertions, 18 deletions
diff --git a/tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml b/tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml index 1d558a63..cdc2655f 100644 --- a/tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml +++ b/tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml @@ -7,7 +7,7 @@ server: relay_timeout: "20s" boltdb: - permissions: 0666 + permissions: 0777 logs: level: debug diff --git a/tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml b/tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml index 03a8d67e..804db543 100644 --- a/tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml +++ b/tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml @@ -7,7 +7,7 @@ server: relay_timeout: "20s" boltdb: - permissions: 0666 + permissions: 0777 logs: level: debug diff --git a/tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml b/tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml index 79493d96..d375a9a5 100644 --- a/tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml +++ b/tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml @@ -6,8 +6,8 @@ server: relay: "pipes" relay_timeout: "20s" -amqp: - addr: amqp://guest:[email protected]:5672/ +boltdb: + permissions: 0777 logs: level: debug diff --git a/tests/plugins/jobs/boltdb/.rr-no-global.yaml b/tests/plugins/jobs/boltdb/.rr-no-global.yaml index 1b01eb73..1c09bef9 100644 --- a/tests/plugins/jobs/boltdb/.rr-no-global.yaml +++ b/tests/plugins/jobs/boltdb/.rr-no-global.yaml @@ -25,22 +25,16 @@ jobs: # list of broker pipelines associated with endpoints pipelines: test-1: - driver: amqp - priority: 1 - pipeline_size: 100 - queue: test-1-queue - exchange: default - exchange_type: direct - routing_key: test + driver: boltdb + prefetch: 100 + file: "rr1.db" + priority: 1 test-2: - driver: amqp - priority: 2 - pipeline_size: 100 - queue: test-2-queue - exchange: default - exchange_type: direct - routing_key: test-2 + driver: boltdb + prefetch: 100 + file: "rr2.db" + priority: 1 # list of pipelines to be consumed by the server, keep empty if you want to start consuming manually consume: [ "test-1", "test-2" ] |