Skip to content

Commit 00de863

Browse files
committed
queue consumer options
1 parent ad3782e commit 00de863

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ script:
4949
- if [ "$PHPSTAN" = true ]; then composer require "phpstan/phpstan:^0.8" ; php -d memory_limit=512M bin/phpstan analyse -l 1 -c phpstan.neon pkg/gps pkg/amqp-ext pkg/async-event-dispatcher pkg/dbal pkg/enqueue pkg/enqueue-bundle pkg/fs pkg/gearman pkg/job-queue pkg/null pkg/pheanstalk pkg/redis pkg/simple-client pkg/sqs pkg/stomp pkg/test pkg/rdkafka; fi
5050
- if [ "$PHP_CS_FIXER" = true ]; then IFS=$'\n'; COMMIT_SCA_FILES=($(git diff --name-only --diff-filter=ACMRTUXB "${TRAVIS_COMMIT_RANGE}")); unset IFS; fi
5151
- if [ "$PHP_CS_FIXER" = true ]; then ./bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no --path-mode=intersection -- "${COMMIT_SCA_FILES[@]}"; fi
52-
- if [ "$UNIT_TESTS" = true ]; then bin/phpunit --exclude-group=functional; fi
52+
- if [ "$UNIT_TESTS" = true ]; then bin/phpunit --debug --exclude-group=functional; fi
5353
- if [ "$FUNCTIONAL_TESTS" = true ]; then bin/dev -t; fi
5454

5555
notifications:

pkg/enqueue-bundle/Tests/Unit/DependencyInjection/EnqueueExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,8 @@ public function testShouldConfigureQueueConsumer()
546546
'transport' => [
547547
],
548548
'consumption' => [
549-
'idle-timeout' => 123,
550-
'receive-timeout' => 456,
549+
'idle_timeout' => 123,
550+
'receive_timeout' => 456,
551551
],
552552
]], $container);
553553

0 commit comments

Comments
 (0)