@@ -96,7 +96,9 @@ async fn collected_logs_json() {
96
96
endpoint : format ! ( "{}/logs/json.json" , dufs_address( ) ) ,
97
97
interval : INTERVAL ,
98
98
query : HashMap :: new ( ) ,
99
- decoding : DeserializerConfig :: Json ,
99
+ decoding : DeserializerConfig :: Json {
100
+ json : Default :: default ( ) ,
101
+ } ,
100
102
framing : default_framing_message_based ( ) ,
101
103
headers : HashMap :: new ( ) ,
102
104
method : HttpMethod :: Get ,
@@ -173,7 +175,9 @@ async fn unauthorized_no_auth() {
173
175
endpoint : format ! ( "{}/logs/json.json" , dufs_auth_address( ) ) ,
174
176
interval : INTERVAL ,
175
177
query : HashMap :: new ( ) ,
176
- decoding : DeserializerConfig :: Json ,
178
+ decoding : DeserializerConfig :: Json {
179
+ json : Default :: default ( ) ,
180
+ } ,
177
181
framing : default_framing_message_based ( ) ,
178
182
headers : HashMap :: new ( ) ,
179
183
method : HttpMethod :: Get ,
@@ -191,7 +195,9 @@ async fn unauthorized_wrong_auth() {
191
195
endpoint : format ! ( "{}/logs/json.json" , dufs_auth_address( ) ) ,
192
196
interval : INTERVAL ,
193
197
query : HashMap :: new ( ) ,
194
- decoding : DeserializerConfig :: Json ,
198
+ decoding : DeserializerConfig :: Json {
199
+ json : Default :: default ( ) ,
200
+ } ,
195
201
framing : default_framing_message_based ( ) ,
196
202
headers : HashMap :: new ( ) ,
197
203
method : HttpMethod :: Get ,
@@ -212,7 +218,9 @@ async fn authorized() {
212
218
endpoint : format ! ( "{}/logs/json.json" , dufs_auth_address( ) ) ,
213
219
interval : INTERVAL ,
214
220
query : HashMap :: new ( ) ,
215
- decoding : DeserializerConfig :: Json ,
221
+ decoding : DeserializerConfig :: Json {
222
+ json : Default :: default ( ) ,
223
+ } ,
216
224
framing : default_framing_message_based ( ) ,
217
225
headers : HashMap :: new ( ) ,
218
226
method : HttpMethod :: Get ,
@@ -233,7 +241,9 @@ async fn tls_invalid_ca() {
233
241
endpoint : format ! ( "{}/logs/json.json" , dufs_https_address( ) ) ,
234
242
interval : INTERVAL ,
235
243
query : HashMap :: new ( ) ,
236
- decoding : DeserializerConfig :: Json ,
244
+ decoding : DeserializerConfig :: Json {
245
+ json : Default :: default ( ) ,
246
+ } ,
237
247
framing : default_framing_message_based ( ) ,
238
248
headers : HashMap :: new ( ) ,
239
249
method : HttpMethod :: Get ,
@@ -254,7 +264,9 @@ async fn tls_valid() {
254
264
endpoint : format ! ( "{}/logs/json.json" , dufs_https_address( ) ) ,
255
265
interval : INTERVAL ,
256
266
query : HashMap :: new ( ) ,
257
- decoding : DeserializerConfig :: Json ,
267
+ decoding : DeserializerConfig :: Json {
268
+ json : Default :: default ( ) ,
269
+ } ,
258
270
framing : default_framing_message_based ( ) ,
259
271
headers : HashMap :: new ( ) ,
260
272
method : HttpMethod :: Get ,
@@ -276,7 +288,9 @@ async fn shutdown() {
276
288
endpoint : format ! ( "{}/logs/json.json" , dufs_address( ) ) ,
277
289
interval : INTERVAL ,
278
290
query : HashMap :: new ( ) ,
279
- decoding : DeserializerConfig :: Json ,
291
+ decoding : DeserializerConfig :: Json {
292
+ json : Default :: default ( ) ,
293
+ } ,
280
294
framing : default_framing_message_based ( ) ,
281
295
headers : HashMap :: new ( ) ,
282
296
method : HttpMethod :: Get ,
0 commit comments