File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ waitForService beanstalkd 11300 50
37
37
waitForService gearmand 4730 50
38
38
waitForService kafka 9092 50
39
39
40
- php pkg/job-queue/Tests/Functional/app/console doctrine:database:create
40
+ php pkg/job-queue/Tests/Functional/app/console doctrine:database:create --if-not-exists
41
41
php pkg/job-queue/Tests/Functional/app/console doctrine:schema:update --force
42
42
43
43
# php pkg/enqueue-bundle/Tests/Functional/app/console.php config:dump-reference enqueue
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public function addConfiguration(ArrayNodeDefinition $builder)
44
44
->defaultTrue ()
45
45
->info ('the connection will be performed as later as possible, if the option set to true ' )
46
46
->end ()
47
+ ->scalarNode ('endpoint ' )->defaultNull ()->end ()
47
48
;
48
49
}
49
50
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public function testShouldAllowAddConfiguration()
52
52
'retries ' => 5 ,
53
53
'version ' => 'theVersion ' ,
54
54
'lazy ' => false ,
55
+ 'endpoint ' => 'theEndpoint ' ,
55
56
]]);
56
57
57
58
$ this ->assertEquals ([
@@ -62,6 +63,7 @@ public function testShouldAllowAddConfiguration()
62
63
'retries ' => 5 ,
63
64
'version ' => 'theVersion ' ,
64
65
'lazy ' => false ,
66
+ 'endpoint ' => 'theEndpoint ' ,
65
67
], $ config );
66
68
}
67
69
You can’t perform that action at this time.
0 commit comments