@@ -67,6 +67,7 @@ public static function provideConfigs()
67
67
'endpoint ' => null ,
68
68
'profile ' => null ,
69
69
'queue_owner_aws_account_id ' => null ,
70
+ 'http ' => [],
70
71
],
71
72
];
72
73
@@ -83,6 +84,7 @@ public static function provideConfigs()
83
84
'endpoint ' => null ,
84
85
'profile ' => null ,
85
86
'queue_owner_aws_account_id ' => null ,
87
+ 'http ' => [],
86
88
],
87
89
];
88
90
@@ -99,6 +101,7 @@ public static function provideConfigs()
99
101
'endpoint ' => null ,
100
102
'profile ' => null ,
101
103
'queue_owner_aws_account_id ' => null ,
104
+ 'http ' => [],
102
105
],
103
106
];
104
107
@@ -115,6 +118,7 @@ public static function provideConfigs()
115
118
'endpoint ' => null ,
116
119
'profile ' => null ,
117
120
'queue_owner_aws_account_id ' => null ,
121
+ 'http ' => [],
118
122
],
119
123
];
120
124
@@ -131,6 +135,7 @@ public static function provideConfigs()
131
135
'endpoint ' => null ,
132
136
'profile ' => null ,
133
137
'queue_owner_aws_account_id ' => null ,
138
+ 'http ' => [],
134
139
],
135
140
];
136
141
@@ -147,6 +152,7 @@ public static function provideConfigs()
147
152
'endpoint ' => null ,
148
153
'profile ' => 'staging ' ,
149
154
'queue_owner_aws_account_id ' => null ,
155
+ 'http ' => [],
150
156
],
151
157
];
152
158
@@ -163,6 +169,7 @@ public static function provideConfigs()
163
169
'endpoint ' => null ,
164
170
'profile ' => null ,
165
171
'queue_owner_aws_account_id ' => null ,
172
+ 'http ' => [],
166
173
],
167
174
];
168
175
@@ -185,6 +192,7 @@ public static function provideConfigs()
185
192
'endpoint ' => 'http://localstack:1111 ' ,
186
193
'profile ' => null ,
187
194
'queue_owner_aws_account_id ' => null ,
195
+ 'http ' => [],
188
196
],
189
197
];
190
198
@@ -203,6 +211,27 @@ public static function provideConfigs()
203
211
'endpoint ' => null ,
204
212
'profile ' => 'staging ' ,
205
213
'queue_owner_aws_account_id ' => null ,
214
+ 'http ' => [],
215
+ ],
216
+ ];
217
+
218
+ yield [
219
+ ['dsn ' => 'sqs:?http[timeout]=5&http[connect_timeout]=2 ' ],
220
+ [
221
+ 'key ' => null ,
222
+ 'secret ' => null ,
223
+ 'token ' => null ,
224
+ 'region ' => null ,
225
+ 'retries ' => 3 ,
226
+ 'version ' => '2012-11-05 ' ,
227
+ 'lazy ' => true ,
228
+ 'endpoint ' => null ,
229
+ 'profile ' => null ,
230
+ 'queue_owner_aws_account_id ' => null ,
231
+ 'http ' => [
232
+ 'timeout ' => '5 ' ,
233
+ 'connect_timeout ' => '2 ' ,
234
+ ],
206
235
],
207
236
];
208
237
}
0 commit comments