-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring-boot-logging.log
More file actions
983 lines (983 loc) · 307 KB
/
Copy pathspring-boot-logging.log
File metadata and controls
983 lines (983 loc) · 307 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
2022-09-14 00:02:59.131 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:07:59.153 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:12:59.155 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:17:59.161 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:22:59.165 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:27:59.169 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:32:59.176 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:37:59.187 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:42:59.190 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:47:59.193 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:52:59.194 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 00:57:59.199 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:02:59.211 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:07:59.215 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:12:59.223 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:17:59.238 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:22:59.248 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:27:59.254 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:32:59.267 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:37:59.273 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:42:59.286 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:47:59.288 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:52:59.302 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 01:57:59.306 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:02:59.308 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:07:59.320 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:12:59.324 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:17:59.331 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:22:59.342 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:27:59.358 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:32:59.373 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:37:59.379 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:42:59.390 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:47:59.405 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:52:59.410 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 02:57:59.418 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:02:59.419 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:07:59.424 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:12:59.432 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:17:59.441 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:22:59.456 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:27:59.462 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:32:59.471 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:37:59.488 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:42:59.498 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:47:59.512 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:52:59.521 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 03:57:59.536 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:02:59.548 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:07:59.559 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:12:59.561 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:17:59.565 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:22:59.580 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:27:59.588 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:32:59.590 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:37:59.603 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:42:59.607 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:47:59.613 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:52:59.622 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 04:57:59.632 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:02:59.634 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:07:59.637 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:12:59.654 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:17:59.667 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:22:59.668 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:27:59.683 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:32:59.688 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:37:59.704 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:42:59.718 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:47:59.733 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:52:59.749 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 05:57:59.763 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:02:59.779 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:07:59.790 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:12:59.799 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:17:59.807 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:22:59.821 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:27:59.828 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:32:59.829 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:37:59.842 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:42:59.854 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:47:59.866 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:52:59.877 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 06:57:59.885 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:02:59.889 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:07:59.904 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:12:59.914 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:17:59.927 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:22:59.933 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:27:59.939 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:32:59.951 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:37:59.956 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:42:59.958 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:47:59.968 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:52:59.971 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 07:57:59.977 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:02:59.986 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:07:59.996 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:12:59.998 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:18:00.008 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:23:00.021 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:28:00.037 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:33:00.053 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:38:00.063 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:43:00.073 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:48:00.085 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:53:00.095 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 08:58:00.110 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:03:00.121 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:08:00.128 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:13:00.137 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:18:00.153 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:23:00.157 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:28:00.158 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:33:00.160 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:38:00.175 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:43:00.182 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:48:00.193 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:53:00.195 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 09:58:00.206 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:03:00.222 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:08:00.226 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:13:00.230 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:18:00.244 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:23:00.257 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:28:00.263 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:33:00.273 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:38:00.284 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:43:00.293 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:48:00.296 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:53:00.300 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 10:58:00.314 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:03:00.320 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:08:00.330 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:13:00.340 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:18:00.353 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:23:00.363 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:28:00.375 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:33:00.390 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:38:00.398 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:43:00.404 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:48:00.409 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:53:00.417 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 11:58:00.428 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:03:00.435 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:08:00.443 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:13:00.449 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:18:00.451 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:23:00.462 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:28:00.474 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:33:00.482 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:38:00.493 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:43:00.510 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:48:00.520 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:53:00.530 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 12:58:00.546 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:03:00.548 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:08:00.556 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:13:00.559 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:18:00.566 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:23:00.579 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:28:00.587 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:33:00.589 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:38:00.599 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:43:00.604 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:48:00.619 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:53:00.625 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 13:58:00.630 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:03:00.633 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:08:00.647 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:13:00.652 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:18:00.659 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:23:00.668 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:28:00.677 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:33:00.687 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:38:00.701 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:43:00.708 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:48:00.717 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:53:00.733 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 14:58:00.749 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:03:00.757 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:08:00.764 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:13:00.767 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:18:00.781 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:23:00.790 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:28:00.800 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:33:00.811 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:38:00.824 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:43:00.825 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:48:00.827 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:53:00.829 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 15:58:00.842 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:03:00.853 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:08:00.859 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:13:00.870 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:18:00.884 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:23:00.895 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:28:00.908 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:33:00.923 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:38:00.938 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:43:00.947 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:48:00.948 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:53:00.960 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 16:58:00.973 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:03:00.975 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:08:00.977 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:13:00.988 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:18:00.997 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:23:01.000 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:28:01.011 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:33:01.020 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:38:01.031 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:43:01.033 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:48:01.036 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:53:01.052 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 17:58:01.059 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 18:03:01.073 INFO 12452 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 18:06:58.740 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] inMXBeanRegistrar$SpringApplicationAdmin : Application shutdown requested.
2022-09-14 18:06:58.775 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:06:58.775 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1663196818775, current=DOWN, previous=UP]
2022-09-14 18:06:58.776 INFO 12452 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0: registering service...
2022-09-14 18:06:58.819 INFO 12452 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0 - registration status: 204
2022-09-14 18:07:00.921 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Shutting down DiscoveryClient ...
2022-09-14 18:07:03.936 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Unregistering ...
2022-09-14 18:07:03.944 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0 - deregister status: 200
2022-09-14 18:07:03.989 INFO 12452 --- [RMI TCP Connection(1300)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Completed shut down of DiscoveryClient
2022-09-14 18:07:09.463 INFO 22352 --- [main] p.com.bootcamp.MicroService1Application : Starting MicroService1Application using Java 17.0.3 on LIM-27JK3M3 with PID 22352 (C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1\target\classes started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:07:09.465 INFO 22352 --- [main] p.com.bootcamp.MicroService1Application : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:07:09.502 INFO 22352 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:07:09.502 INFO 22352 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:07:10.024 INFO 22352 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:07:10.036 INFO 22352 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:07:10.196 INFO 22352 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=ffdde80a-7bde-324d-9eb3-1fe345827b7d
2022-09-14 18:07:10.242 INFO 22352 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:07:10.243 INFO 22352 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:07:10.244 INFO 22352 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:07:10.512 INFO 22352 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Eclipse Adoptium/17.0.3+7"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@6735f210]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:07:10.520 INFO 22352 --- [cluster-rtt-ClusterId{value='63225e9e81709e5f88221699', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:56}] to 127.0.0.1:27017
2022-09-14 18:07:10.520 INFO 22352 --- [cluster-ClusterId{value='63225e9e81709e5f88221699', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:57}] to 127.0.0.1:27017
2022-09-14 18:07:10.521 INFO 22352 --- [cluster-ClusterId{value='63225e9e81709e5f88221699', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=15489100}
2022-09-14 18:07:10.569 WARN 22352 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:07:10.583 WARN 22352 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:07:11.061 INFO 22352 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:07:11.283 WARN 22352 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:07:11.330 WARN 22352 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:07:11.434 INFO 22352 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:07:11.477 WARN 22352 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:07:11.642 INFO 22352 --- [main] o.s.b.web.embedded.netty.NettyWebServer : Netty started on port 58286
2022-09-14 18:07:11.643 INFO 22352 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 58286
2022-09-14 18:07:11.646 INFO 22352 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:07:11.687 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2022-09-14 18:07:11.691 INFO 22352 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 18:07:11.716 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2022-09-14 18:07:11.717 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2022-09-14 18:07:11.946 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2022-09-14 18:07:11.952 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2022-09-14 18:07:11.958 INFO 22352 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2022-09-14 18:07:11.970 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1663196831969 with initial instances count: 3
2022-09-14 18:07:11.972 INFO 22352 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application MICRO-SERVICE1 with eureka with status UP
2022-09-14 18:07:11.972 INFO 22352 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1663196831972, current=UP, previous=STARTING]
2022-09-14 18:07:11.974 INFO 22352 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0: registering service...
2022-09-14 18:07:12.011 INFO 22352 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0 - registration status: 204
2022-09-14 18:07:12.201 INFO 22352 --- [main] p.com.bootcamp.MicroService1Application : Started MicroService1Application in 3.902 seconds (JVM running for 4.508)
2022-09-14 18:12:07.409 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] inMXBeanRegistrar$SpringApplicationAdmin : Application shutdown requested.
2022-09-14 18:12:07.410 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:12:07.411 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1663197127411, current=DOWN, previous=UP]
2022-09-14 18:12:07.411 INFO 22352 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0: registering service...
2022-09-14 18:12:07.414 INFO 22352 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0 - registration status: 204
2022-09-14 18:12:09.436 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Shutting down DiscoveryClient ...
2022-09-14 18:12:11.724 INFO 22352 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2022-09-14 18:12:12.438 WARN 22352 --- [DiscoveryClient-0] c.netflix.discovery.TimedSupervisorTask : task supervisor shutting down, can't accept the task
2022-09-14 18:12:12.453 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Unregistering ...
2022-09-14 18:12:12.457 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] com.netflix.discovery.DiscoveryClient : DiscoveryClient_MICRO-SERVICE1/Micro-Service1:0 - deregister status: 200
2022-09-14 18:12:12.501 INFO 22352 --- [RMI TCP Connection(14)-127.0.0.1] com.netflix.discovery.DiscoveryClient : Completed shut down of DiscoveryClient
2022-09-14 18:14:36.327 INFO 9116 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 9116 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:14:36.329 INFO 9116 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:14:36.364 INFO 9116 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:14:36.364 INFO 9116 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:14:37.110 INFO 9116 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:14:37.125 INFO 9116 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:14:37.311 INFO 9116 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:14:37.408 INFO 9116 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:14:37.410 INFO 9116 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:14:37.414 INFO 9116 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:14:37.786 INFO 9116 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@2f4d01b6]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:14:37.807 INFO 9116 --- [cluster-rtt-ClusterId{value='6322605d1acf0d7b8d0481c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:58}] to 127.0.0.1:27017
2022-09-14 18:14:37.807 INFO 9116 --- [cluster-ClusterId{value='6322605d1acf0d7b8d0481c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:59}] to 127.0.0.1:27017
2022-09-14 18:14:37.808 INFO 9116 --- [cluster-ClusterId{value='6322605d1acf0d7b8d0481c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=22643100}
2022-09-14 18:14:37.877 WARN 9116 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:14:37.896 WARN 9116 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:14:38.230 INFO 9116 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:14:38.874 WARN 9116 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:14:38.962 WARN 9116 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:14:39.336 INFO 9116 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:14:39.974 WARN 9116 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:14:40.018 INFO 9116 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.162 seconds (JVM running for 6.156)
2022-09-14 18:14:40.555 INFO 9116 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:60}] to 127.0.0.1:27017
2022-09-14 18:14:40.642 INFO 9116 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.675 INFO 9116 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.690 INFO 9116 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: true Message: null
2022-09-14 18:14:40.714 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest], using SpringBootContextLoader
2022-09-14 18:14:40.715 INFO 9116 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:14:40.715 INFO 9116 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: BankCardRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:14:40.724 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.BankCardRepositoryTest
2022-09-14 18:14:40.732 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:14:40.734 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@638341b0, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@7962c1d5, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@56226064, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@646c872a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1d9bd4d6, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7298c2d9, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@377cbdae, org.springframework.test.context.event.EventPublishingTestExecutionListener@37a939bc, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@74d776fb, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@406decb2, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@122ea8dc, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@6cb417fc, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@239bc43f, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@c3ca482]
2022-09-14 18:14:40.771 INFO 9116 --- [Thread-9] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.786 INFO 9116 --- [Thread-9] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.795 INFO 9116 --- [Thread-10] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.800 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest], using SpringBootContextLoader
2022-09-14 18:14:40.802 INFO 9116 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:14:40.803 INFO 9116 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: ClientRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:14:40.805 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.ClientRepositoryTest
2022-09-14 18:14:40.809 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:14:40.810 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7b4c793b, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@51a69e8f, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@6442cf3e, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@60f1f95b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@786cc1df, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1ddb6abb, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6f926d01, org.springframework.test.context.event.EventPublishingTestExecutionListener@c67a89, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1e3a2177, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@58720eb9, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@24749ad3, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1755aee6, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@582b14e2, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@10e4ce98]
2022-09-14 18:14:40.835 INFO 9116 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.855 INFO 9116 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.865 INFO 9116 --- [Thread-9] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:14:40.871 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest], using SpringBootContextLoader
2022-09-14 18:14:40.872 INFO 9116 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:14:40.872 INFO 9116 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: BankAccountWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:14:40.887 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankAccountWebClientTest
2022-09-14 18:14:40.893 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:14:40.894 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@66a50c93, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@5bddd141, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@4d6027be, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@475eb4fd, org.springframework.test.context.support.DirtiesContextTestExecutionListener@951e911, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3cb376a3, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7022fb5c, org.springframework.test.context.event.EventPublishingTestExecutionListener@426940f9, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@447630c4, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@63d75087, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@4c8afba, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@cae4952, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@79aba813, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@20a18cc9]
2022-09-14 18:14:51.845 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest], using SpringBootContextLoader
2022-09-14 18:14:51.846 INFO 9116 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:14:51.847 INFO 9116 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: BankCardWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:14:51.848 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankCardWebClientTest
2022-09-14 18:14:51.849 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:14:51.850 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2111d7b9, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@7a023e34, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@260f05ee, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@65fe1f47, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4afdb05e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2165d4ab, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7f9b851c, org.springframework.test.context.event.EventPublishingTestExecutionListener@6a8ab98f, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@4d529bc0, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@429dde4d, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@610d0067, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@5ef48b08, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@7a1878d, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@2b625e82]
2022-09-14 18:15:02.023 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest], using SpringBootContextLoader
2022-09-14 18:15:02.024 INFO 9116 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:15:02.025 INFO 9116 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: ClientWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:15:02.026 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.ClientWebClientTest
2022-09-14 18:15:02.029 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:15:02.030 INFO 9116 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@f5b4ca6, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@260ccf0, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@2566247d, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@363a09a2, org.springframework.test.context.support.DirtiesContextTestExecutionListener@63d14dbf, org.springframework.test.context.transaction.TransactionalTestExecutionListener@67521a79, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@73839f22, org.springframework.test.context.event.EventPublishingTestExecutionListener@1512efe9, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@7cc7e441, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@bb1b872, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@64245ca9, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@66cb9a63, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@256d8f17, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@2319c1e0]
2022-09-14 18:15:12.255 INFO 9116 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:15:12.258 INFO 9116 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:17:54.991 INFO 28496 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 28496 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:17:54.992 INFO 28496 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:17:55.018 INFO 28496 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:17:55.018 INFO 28496 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:17:55.815 INFO 28496 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:17:55.829 INFO 28496 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:17:56.014 INFO 28496 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:17:56.116 INFO 28496 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:17:56.119 INFO 28496 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:17:56.123 INFO 28496 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:17:56.466 INFO 28496 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@6fb0261e]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:17:56.479 INFO 28496 --- [cluster-ClusterId{value='6322612494ab8b0c3ec032c4', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:62}] to 127.0.0.1:27017
2022-09-14 18:17:56.479 INFO 28496 --- [cluster-rtt-ClusterId{value='6322612494ab8b0c3ec032c4', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:61}] to 127.0.0.1:27017
2022-09-14 18:17:56.481 INFO 28496 --- [cluster-ClusterId{value='6322612494ab8b0c3ec032c4', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=21719500}
2022-09-14 18:17:56.546 WARN 28496 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:17:56.563 WARN 28496 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:17:56.941 INFO 28496 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:17:57.599 WARN 28496 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:17:57.680 WARN 28496 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:17:58.095 INFO 28496 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:17:58.722 WARN 28496 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:17:58.768 INFO 28496 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.311 seconds (JVM running for 6.314)
2022-09-14 18:17:59.323 INFO 28496 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:63}] to 127.0.0.1:27017
2022-09-14 18:17:59.402 INFO 28496 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.436 INFO 28496 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.455 INFO 28496 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.464 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest], using SpringBootContextLoader
2022-09-14 18:17:59.465 INFO 28496 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:17:59.466 INFO 28496 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: BankCardRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:17:59.470 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.BankCardRepositoryTest
2022-09-14 18:17:59.474 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:17:59.475 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4fd00e10, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@7be1e187, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@1107c465, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@64df8422, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2b30b627, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5fa9971f, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@70a24463, org.springframework.test.context.event.EventPublishingTestExecutionListener@684430c1, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@46eb2260, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@556944cd, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@370a935f, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@7e017f47, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@6166aac5, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7e36d508]
2022-09-14 18:17:59.502 INFO 28496 --- [Thread-9] p.c.b.t.r.BankCardRepositoryTest : IbException: true Message: exists card!
2022-09-14 18:17:59.537 INFO 28496 --- [Thread-10] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.547 INFO 28496 --- [Thread-9] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.552 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest], using SpringBootContextLoader
2022-09-14 18:17:59.553 INFO 28496 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:17:59.554 INFO 28496 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: ClientRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:17:59.557 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.ClientRepositoryTest
2022-09-14 18:17:59.561 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:17:59.561 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@44aa5585, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@40fd1a78, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@53b7f08, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@24536f07, org.springframework.test.context.support.DirtiesContextTestExecutionListener@32430075, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1a45e29f, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@44580de0, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b4c793b, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@51a69e8f, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@6442cf3e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@60f1f95b, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@786cc1df, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@1ddb6abb, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@6f926d01]
2022-09-14 18:17:59.577 INFO 28496 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: true Message: exists bank account!
2022-09-14 18:17:59.596 INFO 28496 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.607 INFO 28496 --- [Thread-9] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:17:59.612 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest], using SpringBootContextLoader
2022-09-14 18:17:59.613 INFO 28496 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:17:59.613 INFO 28496 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: BankAccountWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:17:59.640 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankAccountWebClientTest
2022-09-14 18:17:59.642 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:17:59.642 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@47f5ab58, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@245dbd09, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@4a013b23, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@7f20dfd5, org.springframework.test.context.support.DirtiesContextTestExecutionListener@15651402, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5c194652, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1f02b6d1, org.springframework.test.context.event.EventPublishingTestExecutionListener@66a50c93, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@5bddd141, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@4d6027be, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@475eb4fd, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@951e911, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3cb376a3, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7022fb5c]
2022-09-14 18:18:10.521 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest], using SpringBootContextLoader
2022-09-14 18:18:10.522 INFO 28496 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:18:10.523 INFO 28496 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: BankCardWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:18:10.524 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankCardWebClientTest
2022-09-14 18:18:10.526 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:18:10.526 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@9771c71, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@63c66980, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@8cce9ad, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@6dc5e857, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5ce0f50a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@c3a1d7f, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@63541cd4, org.springframework.test.context.event.EventPublishingTestExecutionListener@2111d7b9, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@7a023e34, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@260f05ee, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@65fe1f47, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@4afdb05e, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@2165d4ab, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7f9b851c]
2022-09-14 18:18:20.720 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest], using SpringBootContextLoader
2022-09-14 18:18:20.721 INFO 28496 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:18:20.723 INFO 28496 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: ClientWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:18:20.724 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.ClientWebClientTest
2022-09-14 18:18:20.726 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:18:20.727 INFO 28496 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@64745270, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@596d17f4, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@35a2ea5a, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@18ab513d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5e8a678a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6fe91918, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4d3bde85, org.springframework.test.context.event.EventPublishingTestExecutionListener@f5b4ca6, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@260ccf0, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@2566247d, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@363a09a2, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@63d14dbf, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@67521a79, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@73839f22]
2022-09-14 18:18:30.992 INFO 28496 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:18:30.994 INFO 28496 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:21:31.736 INFO 14488 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 14488 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:21:31.738 INFO 14488 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:21:31.771 INFO 14488 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:21:31.771 INFO 14488 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:21:32.610 INFO 14488 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:21:32.625 INFO 14488 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:21:32.809 INFO 14488 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:21:32.904 INFO 14488 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:21:32.906 INFO 14488 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:21:32.910 INFO 14488 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:21:33.248 INFO 14488 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@5be4be74]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:21:33.262 INFO 14488 --- [cluster-ClusterId{value='632261fd612677647865281c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:67}] to 127.0.0.1:27017
2022-09-14 18:21:33.262 INFO 14488 --- [cluster-rtt-ClusterId{value='632261fd612677647865281c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:66}] to 127.0.0.1:27017
2022-09-14 18:21:33.265 INFO 14488 --- [cluster-ClusterId{value='632261fd612677647865281c', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=19769100}
2022-09-14 18:21:33.330 WARN 14488 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:21:33.349 WARN 14488 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:21:33.722 INFO 14488 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:21:34.434 WARN 14488 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:21:34.517 WARN 14488 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:21:34.847 INFO 14488 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:21:35.461 WARN 14488 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:21:35.504 INFO 14488 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.244 seconds (JVM running for 6.238)
2022-09-14 18:21:36.108 INFO 14488 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:68}] to 127.0.0.1:27017
2022-09-14 18:21:36.184 INFO 14488 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.212 INFO 14488 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.225 INFO 14488 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.232 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest], using SpringBootContextLoader
2022-09-14 18:21:36.232 INFO 14488 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:21:36.233 INFO 14488 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.BankCardRepositoryTest]: BankCardRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:21:36.235 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.BankCardRepositoryTest
2022-09-14 18:21:36.241 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:21:36.242 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@c4455b4, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@747f0f34, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@556ae220, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@2689b752, org.springframework.test.context.support.DirtiesContextTestExecutionListener@84eafc2, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4440750, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@63d9e1a, org.springframework.test.context.event.EventPublishingTestExecutionListener@6d658aa8, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@10280879, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3472f3ab, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@5e557671, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1f2497d9, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@4f1f2f84, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@6c537267]
2022-09-14 18:21:36.256 INFO 14488 --- [Thread-10] p.c.b.t.r.BankCardRepositoryTest : IbException: true Message: exists card!
2022-09-14 18:21:36.285 INFO 14488 --- [Thread-10] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.293 INFO 14488 --- [Thread-9] p.c.b.t.r.BankCardRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.297 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest], using SpringBootContextLoader
2022-09-14 18:21:36.298 INFO 14488 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:21:36.298 INFO 14488 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.repository.ClientRepositoryTest]: ClientRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:21:36.300 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.repository.ClientRepositoryTest
2022-09-14 18:21:36.302 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:21:36.304 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@10466c55, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@2a5ed225, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@2a525f88, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1cf4d454, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3ff3275b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@63e0057a, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5b76b891, org.springframework.test.context.event.EventPublishingTestExecutionListener@611a91df, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@47f5ab58, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@245dbd09, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@4a013b23, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@7f20dfd5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@15651402, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@5c194652]
2022-09-14 18:21:36.315 INFO 14488 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: true Message: exists bank account!
2022-09-14 18:21:36.329 INFO 14488 --- [Thread-10] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.336 INFO 14488 --- [Thread-9] p.c.b.t.repository.ClientRepositoryTest : IbException: false Message: null
2022-09-14 18:21:36.340 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest], using SpringBootContextLoader
2022-09-14 18:21:36.341 INFO 14488 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:21:36.341 INFO 14488 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: BankAccountWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:21:36.354 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankAccountWebClientTest
2022-09-14 18:21:36.356 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:21:36.357 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@61555218, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@1fcf73b9, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@3b80bb63, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@17ebbf1e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5c65fa69, org.springframework.test.context.transaction.TransactionalTestExecutionListener@38d308e7, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6b6f73d, org.springframework.test.context.event.EventPublishingTestExecutionListener@4c6fabba, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@3f2ab6ec, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@1f1e15de, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2ea0161f, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1f235a0a, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@75d402d4, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@1a0b4955]
2022-09-14 18:21:47.333 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest], using SpringBootContextLoader
2022-09-14 18:21:47.335 INFO 14488 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:21:47.336 INFO 14488 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: BankCardWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:21:47.338 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankCardWebClientTest
2022-09-14 18:21:47.341 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:21:47.341 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@22657db1, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@58b30e3e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@5325674a, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@6a0aa5e2, org.springframework.test.context.support.DirtiesContextTestExecutionListener@630bd5e7, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2389f546, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5b6ec94a, org.springframework.test.context.event.EventPublishingTestExecutionListener@64745270, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@596d17f4, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@35a2ea5a, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@18ab513d, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@5e8a678a, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@6fe91918, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@4d3bde85]
2022-09-14 18:21:57.627 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest], using SpringBootContextLoader
2022-09-14 18:21:57.629 INFO 14488 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:21:57.629 INFO 14488 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: ClientWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:21:57.631 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.ClientWebClientTest
2022-09-14 18:21:57.634 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:21:57.635 INFO 14488 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@659e003e, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@5f3c866c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@16e0afab, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@7b9b6a56, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6e111aeb, org.springframework.test.context.transaction.TransactionalTestExecutionListener@55a5eea3, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@46ab8e4b, org.springframework.test.context.event.EventPublishingTestExecutionListener@66428512, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@e21d73, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@7a482b3a, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@600b3bee, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@129348e8, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@20ad64c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@39a03ccc]
2022-09-14 18:22:07.900 INFO 14488 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:22:07.903 INFO 14488 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:22:33.118 INFO 26300 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 17.0.3 on LIM-27JK3M3 with PID 26300 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:22:33.120 INFO 26300 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:22:33.177 INFO 26300 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:22:33.178 INFO 26300 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:22:34.196 INFO 26300 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:22:34.217 INFO 26300 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 15 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:22:34.537 INFO 26300 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:22:34.659 INFO 26300 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:22:34.662 INFO 26300 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:22:34.666 INFO 26300 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:22:35.025 INFO 26300 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Eclipse Adoptium/17.0.3+7"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@193b6f5b]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:22:35.044 INFO 26300 --- [cluster-rtt-ClusterId{value='6322623a51fa944c58d5174b', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:69}] to 127.0.0.1:27017
2022-09-14 18:22:35.044 INFO 26300 --- [cluster-ClusterId{value='6322623a51fa944c58d5174b', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:70}] to 127.0.0.1:27017
2022-09-14 18:22:35.044 INFO 26300 --- [cluster-ClusterId{value='6322623a51fa944c58d5174b', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=38841000}
2022-09-14 18:22:35.141 WARN 26300 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:22:35.169 WARN 26300 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:22:35.593 INFO 26300 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:22:36.367 WARN 26300 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:22:36.478 WARN 26300 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:22:36.766 INFO 26300 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:22:37.182 WARN 26300 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:22:37.237 INFO 26300 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.882 seconds (JVM running for 7.581)
2022-09-14 18:22:37.987 INFO 26300 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:71}] to 127.0.0.1:27017
2022-09-14 18:22:38.071 INFO 26300 --- [Thread-12] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:22:38.109 INFO 26300 --- [Thread-12] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:22:38.130 INFO 26300 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:22:38.725 INFO 26300 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:22:38.728 INFO 26300 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:23:05.238 INFO 28072 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 28072 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:23:05.239 INFO 28072 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:23:05.287 INFO 28072 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:23:05.287 INFO 28072 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:23:06.034 INFO 28072 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:23:06.054 INFO 28072 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 12 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:23:06.278 INFO 28072 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:23:06.393 INFO 28072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:23:06.395 INFO 28072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:23:06.399 INFO 28072 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:23:06.770 INFO 28072 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@112c2930]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:23:06.786 INFO 28072 --- [cluster-ClusterId{value='6322625a7706360b225fa83c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:73}] to 127.0.0.1:27017
2022-09-14 18:23:06.786 INFO 28072 --- [cluster-rtt-ClusterId{value='6322625a7706360b225fa83c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:72}] to 127.0.0.1:27017
2022-09-14 18:23:06.797 INFO 28072 --- [cluster-ClusterId{value='6322625a7706360b225fa83c', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=20023600}
2022-09-14 18:23:06.858 WARN 28072 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:23:06.878 WARN 28072 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:23:07.232 INFO 28072 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:23:07.959 WARN 28072 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:23:08.045 WARN 28072 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:23:08.500 INFO 28072 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:23:09.212 WARN 28072 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:23:09.272 INFO 28072 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.084 seconds (JVM running for 6.034)
2022-09-14 18:23:09.865 INFO 28072 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:74}] to 127.0.0.1:27017
2022-09-14 18:23:09.945 INFO 28072 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:23:09.983 INFO 28072 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:23:09.995 INFO 28072 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:23:10.004 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest], using SpringBootContextLoader
2022-09-14 18:23:10.006 INFO 28072 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:23:10.006 INFO 28072 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: BankAccountWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:23:10.022 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankAccountWebClientTest
2022-09-14 18:23:10.027 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:23:10.028 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6c96346b, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@9734cae, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@589d831e, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1bd6638, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5c552f08, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4fd00e10, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7be1e187, org.springframework.test.context.event.EventPublishingTestExecutionListener@1107c465, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@64df8422, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@2b30b627, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@5fa9971f, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@70a24463, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@684430c1, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@46eb2260]
2022-09-14 18:23:20.938 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest], using SpringBootContextLoader
2022-09-14 18:23:20.938 INFO 28072 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:23:20.939 INFO 28072 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: BankCardWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:23:20.940 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankCardWebClientTest
2022-09-14 18:23:20.943 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:23:20.944 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@df04d12, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@757f47f0, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7ff7e353, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@70680f88, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7f7f544a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@70b0dc92, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@309d54ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@390978, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@561c031, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@7343d843, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@29a1dab3, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@619b7436, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@6af0407c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@71c1ca1]
2022-09-14 18:23:31.190 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest], using SpringBootContextLoader
2022-09-14 18:23:31.191 INFO 28072 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:23:31.192 INFO 28072 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: ClientWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:23:31.193 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.ClientWebClientTest
2022-09-14 18:23:31.194 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:23:31.195 INFO 28072 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2e590e36, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@3fc2a1d1, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@752e4223, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@7528089c, org.springframework.test.context.support.DirtiesContextTestExecutionListener@136690b1, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39007725, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@3eb8057c, org.springframework.test.context.event.EventPublishingTestExecutionListener@be186df, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@2c257c0a, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@16269ff4, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@684bfba9, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@6f9b5f01, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@6859bbd4, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@4a225014]
2022-09-14 18:23:41.465 INFO 28072 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:23:41.467 INFO 28072 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:25:06.663 INFO 23144 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 23144 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:25:06.664 INFO 23144 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:25:06.694 INFO 23144 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:25:06.694 INFO 23144 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:25:07.501 INFO 23144 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:25:07.521 INFO 23144 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 14 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:25:07.710 INFO 23144 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:25:07.805 INFO 23144 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:25:07.807 INFO 23144 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:25:07.811 INFO 23144 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:25:08.150 INFO 23144 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3719360c]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:25:08.164 INFO 23144 --- [cluster-rtt-ClusterId{value='632262d4fc45081b5f7687e6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:75}] to 127.0.0.1:27017
2022-09-14 18:25:08.164 INFO 23144 --- [cluster-ClusterId{value='632262d4fc45081b5f7687e6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:76}] to 127.0.0.1:27017
2022-09-14 18:25:08.167 INFO 23144 --- [cluster-ClusterId{value='632262d4fc45081b5f7687e6', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=20983400}
2022-09-14 18:25:08.246 WARN 23144 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:25:08.264 WARN 23144 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:25:08.647 INFO 23144 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:25:09.411 WARN 23144 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:25:09.517 WARN 23144 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:25:09.958 INFO 23144 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:25:10.642 WARN 23144 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:25:10.692 INFO 23144 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.375 seconds (JVM running for 6.452)
2022-09-14 18:25:11.240 INFO 23144 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:77}] to 127.0.0.1:27017
2022-09-14 18:25:11.342 INFO 23144 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:25:11.396 INFO 23144 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:25:11.429 INFO 23144 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:25:11.440 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest], using SpringBootContextLoader
2022-09-14 18:25:11.441 INFO 23144 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:25:11.442 INFO 23144 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankAccountWebClientTest]: BankAccountWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:25:11.473 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankAccountWebClientTest
2022-09-14 18:25:11.477 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:25:11.478 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@59c00722, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@6c96346b, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@9734cae, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@589d831e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1bd6638, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5c552f08, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4fd00e10, org.springframework.test.context.event.EventPublishingTestExecutionListener@7be1e187, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1107c465, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@64df8422, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2b30b627, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@5fa9971f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@70a24463, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@684430c1]
2022-09-14 18:25:22.466 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest], using SpringBootContextLoader
2022-09-14 18:25:22.467 INFO 23144 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:25:22.467 INFO 23144 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.BankCardWebClientTest]: BankCardWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:25:22.469 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.BankCardWebClientTest
2022-09-14 18:25:22.472 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:25:22.473 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7d0e43d6, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@df04d12, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@757f47f0, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@7ff7e353, org.springframework.test.context.support.DirtiesContextTestExecutionListener@70680f88, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7f7f544a, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@70b0dc92, org.springframework.test.context.event.EventPublishingTestExecutionListener@309d54ac, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@390978, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@561c031, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@7343d843, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@29a1dab3, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@619b7436, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@6af0407c]
2022-09-14 18:25:32.692 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest], using SpringBootContextLoader
2022-09-14 18:25:32.693 INFO 23144 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-09-14 18:25:32.693 INFO 23144 --- [main] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [pe.com.bootcamp.testing.webclient.ClientWebClientTest]: ClientWebClientTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2022-09-14 18:25:32.694 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration pe.com.bootcamp.MicroService1Application for test class pe.com.bootcamp.testing.webclient.ClientWebClientTest
2022-09-14 18:25:32.696 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-09-14 18:25:32.698 INFO 23144 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@41092c8, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@2e590e36, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@3fc2a1d1, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@752e4223, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7528089c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@136690b1, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@39007725, org.springframework.test.context.event.EventPublishingTestExecutionListener@3eb8057c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@be186df, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@2c257c0a, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@16269ff4, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@684bfba9, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@6f9b5f01, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@6859bbd4]
2022-09-14 18:25:42.997 INFO 23144 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:25:43.001 INFO 23144 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:26:14.793 INFO 20040 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 20040 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:26:14.797 INFO 20040 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:26:14.826 INFO 20040 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:26:14.827 INFO 20040 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:26:15.635 INFO 20040 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:26:15.649 INFO 20040 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:26:15.852 INFO 20040 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:26:15.941 INFO 20040 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:26:15.944 INFO 20040 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:26:15.947 INFO 20040 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:26:16.276 INFO 20040 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@439f2d87]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:26:16.291 INFO 20040 --- [cluster-ClusterId{value='632263189e916f4aad7cfe15', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:78}] to 127.0.0.1:27017
2022-09-14 18:26:16.291 INFO 20040 --- [cluster-rtt-ClusterId{value='632263189e916f4aad7cfe15', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:79}] to 127.0.0.1:27017
2022-09-14 18:26:16.294 INFO 20040 --- [cluster-ClusterId{value='632263189e916f4aad7cfe15', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=21278900}
2022-09-14 18:26:16.355 WARN 20040 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:26:16.375 WARN 20040 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:26:16.752 INFO 20040 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:26:17.414 WARN 20040 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:26:17.503 WARN 20040 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:26:17.886 INFO 20040 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:26:18.478 WARN 20040 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:26:18.542 INFO 20040 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.175 seconds (JVM running for 6.205)
2022-09-14 18:26:19.071 INFO 20040 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:80}] to 127.0.0.1:27017
2022-09-14 18:26:19.145 INFO 20040 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:26:19.182 INFO 20040 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:26:19.200 INFO 20040 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:26:19.257 INFO 20040 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:26:19.261 INFO 20040 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 18:32:04.279 INFO 25440 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 25440 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 18:32:04.280 INFO 25440 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 18:32:04.313 INFO 25440 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 18:32:04.313 INFO 25440 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 18:32:05.038 INFO 25440 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 18:32:05.053 INFO 25440 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 9 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 18:32:05.254 INFO 25440 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 18:32:05.344 INFO 25440 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:32:05.346 INFO 25440 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:32:05.350 INFO 25440 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 18:32:05.705 INFO 25440 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@119d4443]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 18:32:05.719 INFO 25440 --- [cluster-rtt-ClusterId{value='6322647530d0f70eadfaa3c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:81}] to 127.0.0.1:27017
2022-09-14 18:32:05.719 INFO 25440 --- [cluster-ClusterId{value='6322647530d0f70eadfaa3c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:82}] to 127.0.0.1:27017
2022-09-14 18:32:05.723 INFO 25440 --- [cluster-ClusterId{value='6322647530d0f70eadfaa3c6', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=21448600}
2022-09-14 18:32:05.788 WARN 25440 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:32:05.813 WARN 25440 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:32:06.174 INFO 25440 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 18:32:06.902 WARN 25440 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:32:06.984 WARN 25440 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 18:32:07.332 INFO 25440 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 18:32:08.040 WARN 25440 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 18:32:08.088 INFO 25440 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 4.808 seconds (JVM running for 5.802)
2022-09-14 18:32:08.637 INFO 25440 --- [Thread-9] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:83}] to 127.0.0.1:27017
2022-09-14 18:32:08.700 INFO 25440 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:32:08.728 INFO 25440 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:32:08.740 INFO 25440 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 18:32:08.785 INFO 25440 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 18:32:08.788 INFO 25440 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:01:29.028 INFO 5908 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 5908 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:01:29.030 INFO 5908 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:01:29.069 INFO 5908 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:01:29.069 INFO 5908 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:01:30.091 INFO 5908 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:01:30.111 INFO 5908 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 13 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:01:30.369 INFO 5908 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:01:30.491 INFO 5908 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:01:30.495 INFO 5908 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:01:30.500 INFO 5908 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:01:30.959 INFO 5908 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@161d95c6]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:01:30.972 INFO 5908 --- [cluster-ClusterId{value='63226b5ac1e1cf18b1a96a1f', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:84}] to 127.0.0.1:27017
2022-09-14 19:01:30.972 INFO 5908 --- [cluster-rtt-ClusterId{value='63226b5ac1e1cf18b1a96a1f', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:85}] to 127.0.0.1:27017
2022-09-14 19:01:30.976 INFO 5908 --- [cluster-ClusterId{value='63226b5ac1e1cf18b1a96a1f', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=29431500}
2022-09-14 19:01:31.059 WARN 5908 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:01:31.081 WARN 5908 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:01:31.547 INFO 5908 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:01:32.497 WARN 5908 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:01:32.604 WARN 5908 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:01:33.062 INFO 5908 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:01:33.957 WARN 5908 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:01:34.007 INFO 5908 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.611 seconds (JVM running for 7.605)
2022-09-14 19:01:34.735 INFO 5908 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:86}] to 127.0.0.1:27017
2022-09-14 19:01:34.821 INFO 5908 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:01:34.861 INFO 5908 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:01:34.878 INFO 5908 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:01:34.934 INFO 5908 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:01:34.937 INFO 5908 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:11:10.861 INFO 21312 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 21312 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:11:10.863 INFO 21312 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:11:10.892 INFO 21312 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:11:10.893 INFO 21312 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:11:11.956 INFO 21312 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:11:11.977 INFO 21312 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 15 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:11:12.267 INFO 21312 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:11:12.403 INFO 21312 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:11:12.406 INFO 21312 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:11:12.410 INFO 21312 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:11:12.862 INFO 21312 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@439f2d87]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:11:12.879 INFO 21312 --- [cluster-rtt-ClusterId{value='63226da0c522e30bf89e1f9c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:87}] to 127.0.0.1:27017
2022-09-14 19:11:12.879 INFO 21312 --- [cluster-ClusterId{value='63226da0c522e30bf89e1f9c', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:88}] to 127.0.0.1:27017
2022-09-14 19:11:12.883 INFO 21312 --- [cluster-ClusterId{value='63226da0c522e30bf89e1f9c', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=24910900}
2022-09-14 19:11:12.980 WARN 21312 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:11:13.007 WARN 21312 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:11:13.505 INFO 21312 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:11:14.406 WARN 21312 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:11:14.532 WARN 21312 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:11:15.045 INFO 21312 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:11:15.829 WARN 21312 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:11:15.905 INFO 21312 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.609 seconds (JVM running for 7.861)
2022-09-14 19:11:16.816 INFO 21312 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:89}] to 127.0.0.1:27017
2022-09-14 19:11:16.906 INFO 21312 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:11:16.968 INFO 21312 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:11:16.986 INFO 21312 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:11:17.041 INFO 21312 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:11:17.045 INFO 21312 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:25:05.413 INFO 3472 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 17.0.3 on LIM-27JK3M3 with PID 3472 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:25:05.414 INFO 3472 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:25:05.472 INFO 3472 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:25:05.472 INFO 3472 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:25:06.556 INFO 3472 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:25:06.573 INFO 3472 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:25:06.875 INFO 3472 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:25:07.007 INFO 3472 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:07.010 INFO 3472 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:07.015 INFO 3472 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:07.404 INFO 3472 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Eclipse Adoptium/17.0.3+7"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3b68a50c]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:25:07.417 INFO 3472 --- [cluster-rtt-ClusterId{value='632270e3879e276cd8b146e1', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:90}] to 127.0.0.1:27017
2022-09-14 19:25:07.417 INFO 3472 --- [cluster-ClusterId{value='632270e3879e276cd8b146e1', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:91}] to 127.0.0.1:27017
2022-09-14 19:25:07.417 INFO 3472 --- [cluster-ClusterId{value='632270e3879e276cd8b146e1', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=31305800}
2022-09-14 19:25:07.525 WARN 3472 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:07.549 WARN 3472 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:07.986 INFO 3472 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:25:08.810 WARN 3472 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:08.947 WARN 3472 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:09.294 INFO 3472 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:25:09.795 WARN 3472 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:25:09.860 INFO 3472 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 5.957 seconds (JVM running for 7.95)
2022-09-14 19:25:10.637 INFO 3472 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:92}] to 127.0.0.1:27017
2022-09-14 19:25:10.729 INFO 3472 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:10.777 INFO 3472 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:10.796 INFO 3472 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:11.154 INFO 3472 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:25:11.156 INFO 3472 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:25:48.400 INFO 28592 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 17.0.3 on LIM-27JK3M3 with PID 28592 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:25:48.402 INFO 28592 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:25:48.440 INFO 28592 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:25:48.440 INFO 28592 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:25:49.438 INFO 28592 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:25:49.456 INFO 28592 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 11 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:25:49.786 INFO 28592 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:25:49.920 INFO 28592 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:49.930 INFO 28592 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:49.936 INFO 28592 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:25:50.310 INFO 28592 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Eclipse Adoptium/17.0.3+7"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@75abbb61]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:25:50.325 INFO 28592 --- [cluster-rtt-ClusterId{value='6322710e054fbc6a2d2af79e', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:93}] to 127.0.0.1:27017
2022-09-14 19:25:50.325 INFO 28592 --- [cluster-ClusterId{value='6322710e054fbc6a2d2af79e', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:94}] to 127.0.0.1:27017
2022-09-14 19:25:50.326 INFO 28592 --- [cluster-ClusterId{value='6322710e054fbc6a2d2af79e', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=31759800}
2022-09-14 19:25:50.431 WARN 28592 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:50.459 WARN 28592 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:50.913 INFO 28592 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:25:51.670 WARN 28592 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:51.802 WARN 28592 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:25:52.084 INFO 28592 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:25:52.493 WARN 28592 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:25:52.542 INFO 28592 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.012 seconds (JVM running for 8.033)
2022-09-14 19:25:53.469 INFO 28592 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:95}] to 127.0.0.1:27017
2022-09-14 19:25:53.554 INFO 28592 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:53.599 INFO 28592 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:53.615 INFO 28592 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:25:53.997 INFO 28592 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:25:54.000 INFO 28592 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:28:18.693 INFO 18368 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 17.0.3 on LIM-27JK3M3 with PID 18368 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:28:18.695 INFO 18368 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:28:18.737 INFO 18368 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:28:18.737 INFO 18368 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:28:19.663 INFO 18368 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:28:19.681 INFO 18368 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 12 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:28:20.002 INFO 18368 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:28:20.143 INFO 18368 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:28:20.146 INFO 18368 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:28:20.153 INFO 18368 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:28:20.559 INFO 18368 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Eclipse Adoptium/17.0.3+7"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@8872669]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:28:20.582 INFO 18368 --- [cluster-ClusterId{value='632271a441aa02682c185956', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:96}] to 127.0.0.1:27017
2022-09-14 19:28:20.582 INFO 18368 --- [cluster-rtt-ClusterId{value='632271a441aa02682c185956', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:97}] to 127.0.0.1:27017
2022-09-14 19:28:20.583 INFO 18368 --- [cluster-ClusterId{value='632271a441aa02682c185956', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=38983600}
2022-09-14 19:28:20.732 WARN 18368 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:28:20.780 WARN 18368 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:28:21.312 INFO 18368 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:28:22.060 WARN 18368 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:28:22.166 WARN 18368 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:28:22.421 INFO 18368 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:28:22.845 WARN 18368 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:28:22.908 INFO 18368 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.01 seconds (JVM running for 7.913)
2022-09-14 19:28:23.796 INFO 18368 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:98}] to 127.0.0.1:27017
2022-09-14 19:28:23.897 INFO 18368 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:28:23.931 INFO 18368 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:28:23.948 INFO 18368 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:28:24.326 INFO 18368 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:28:24.329 INFO 18368 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:37:44.059 INFO 10756 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 10756 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:37:44.061 INFO 10756 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:37:44.121 INFO 10756 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:37:44.123 INFO 10756 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:37:45.193 INFO 10756 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:37:45.220 INFO 10756 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 17 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:37:45.585 INFO 10756 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:37:45.773 INFO 10756 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:37:45.776 INFO 10756 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:37:45.780 INFO 10756 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:37:46.340 INFO 10756 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3842fbd9]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:37:46.369 INFO 10756 --- [cluster-rtt-ClusterId{value='632273da8b1b8d6020108af7', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:100}] to 127.0.0.1:27017
2022-09-14 19:37:46.369 INFO 10756 --- [cluster-ClusterId{value='632273da8b1b8d6020108af7', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:99}] to 127.0.0.1:27017
2022-09-14 19:37:46.372 INFO 10756 --- [cluster-ClusterId{value='632273da8b1b8d6020108af7', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=41795900}
2022-09-14 19:37:46.467 WARN 10756 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:37:46.495 WARN 10756 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:37:46.905 INFO 10756 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:37:47.742 WARN 10756 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:37:47.897 WARN 10756 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:37:48.315 INFO 10756 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:37:49.007 WARN 10756 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:37:49.053 INFO 10756 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.717 seconds (JVM running for 8.542)
2022-09-14 19:37:49.963 INFO 10756 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:101}] to 127.0.0.1:27017
2022-09-14 19:37:50.077 INFO 10756 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:37:50.127 INFO 10756 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:37:50.150 INFO 10756 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:37:50.615 INFO 10756 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:37:50.619 INFO 10756 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:46:08.215 INFO 596 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 596 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:46:08.217 INFO 596 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:46:08.257 INFO 596 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:46:08.257 INFO 596 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:46:09.248 INFO 596 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:46:09.268 INFO 596 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 11 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:46:09.564 INFO 596 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:46:09.679 INFO 596 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:46:09.681 INFO 596 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:46:09.685 INFO 596 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:46:10.202 INFO 596 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@5333d6ea]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:46:10.218 INFO 596 --- [cluster-rtt-ClusterId{value='632275d2236a365a2648ec16', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:103}] to 127.0.0.1:27017
2022-09-14 19:46:10.218 INFO 596 --- [cluster-ClusterId{value='632275d2236a365a2648ec16', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:102}] to 127.0.0.1:27017
2022-09-14 19:46:10.221 INFO 596 --- [cluster-ClusterId{value='632275d2236a365a2648ec16', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=34103100}
2022-09-14 19:46:10.314 WARN 596 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:46:10.339 WARN 596 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:46:10.764 INFO 596 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:46:11.521 WARN 596 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:46:11.669 WARN 596 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:46:12.118 INFO 596 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:46:12.698 WARN 596 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:46:12.738 INFO 596 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.453 seconds (JVM running for 8.207)
2022-09-14 19:46:13.515 INFO 596 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:104}] to 127.0.0.1:27017
2022-09-14 19:46:13.636 INFO 596 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:46:13.684 INFO 596 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:46:13.703 INFO 596 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:46:14.104 INFO 596 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:46:14.107 INFO 596 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:51:05.229 INFO 23532 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 23532 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:51:05.232 INFO 23532 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:51:05.291 INFO 23532 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:51:05.292 INFO 23532 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:51:06.657 INFO 23532 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:51:06.684 INFO 23532 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 18 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:51:07.065 INFO 23532 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:51:07.233 INFO 23532 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:51:07.237 INFO 23532 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:51:07.243 INFO 23532 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:51:07.825 INFO 23532 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3842fbd9]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:51:07.843 INFO 23532 --- [cluster-ClusterId{value='632276fbd163882bc767f33b', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:106}] to 127.0.0.1:27017
2022-09-14 19:51:07.843 INFO 23532 --- [cluster-rtt-ClusterId{value='632276fbd163882bc767f33b', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:105}] to 127.0.0.1:27017
2022-09-14 19:51:07.860 INFO 23532 --- [cluster-ClusterId{value='632276fbd163882bc767f33b', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=37019500}
2022-09-14 19:51:07.978 WARN 23532 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:51:08.007 WARN 23532 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:51:08.574 INFO 23532 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:51:09.629 WARN 23532 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:51:09.792 WARN 23532 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:51:10.259 INFO 23532 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:51:11.097 WARN 23532 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:51:11.159 INFO 23532 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 7.447 seconds (JVM running for 9.228)
2022-09-14 19:51:12.113 INFO 23532 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:107}] to 127.0.0.1:27017
2022-09-14 19:51:12.214 INFO 23532 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:51:12.261 INFO 23532 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:51:12.289 INFO 23532 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:51:12.747 INFO 23532 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:51:12.750 INFO 23532 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 19:57:40.756 INFO 25880 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 25880 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 19:57:40.758 INFO 25880 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 19:57:40.803 INFO 25880 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 19:57:40.803 INFO 25880 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 19:57:41.825 INFO 25880 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 19:57:41.844 INFO 25880 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 11 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 19:57:42.167 INFO 25880 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 19:57:42.292 INFO 25880 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:57:42.295 INFO 25880 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:57:42.300 INFO 25880 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 19:57:42.810 INFO 25880 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3842fbd9]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 19:57:42.831 INFO 25880 --- [cluster-ClusterId{value='63227886e24b7045615337a7', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:108}] to 127.0.0.1:27017
2022-09-14 19:57:42.831 INFO 25880 --- [cluster-rtt-ClusterId{value='63227886e24b7045615337a7', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:109}] to 127.0.0.1:27017
2022-09-14 19:57:42.862 INFO 25880 --- [cluster-ClusterId{value='63227886e24b7045615337a7', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=41707200}
2022-09-14 19:57:42.988 WARN 25880 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:57:43.019 WARN 25880 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:57:43.538 INFO 25880 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 19:57:44.351 WARN 25880 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:57:44.498 WARN 25880 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 19:57:44.967 INFO 25880 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 19:57:45.603 WARN 25880 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 19:57:45.642 INFO 25880 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.814 seconds (JVM running for 8.507)
2022-09-14 19:57:46.490 INFO 25880 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:110}] to 127.0.0.1:27017
2022-09-14 19:57:46.592 INFO 25880 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:57:46.636 INFO 25880 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:57:46.653 INFO 25880 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 19:57:47.045 INFO 25880 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 19:57:47.048 INFO 25880 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 20:05:56.805 INFO 1584 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 1584 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 20:05:56.807 INFO 1584 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 20:05:56.849 INFO 1584 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 20:05:56.849 INFO 1584 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 20:05:57.824 INFO 1584 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 20:05:57.844 INFO 1584 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 13 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 20:05:58.127 INFO 1584 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 20:05:58.253 INFO 1584 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:05:58.255 INFO 1584 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:05:58.260 INFO 1584 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:05:58.778 INFO 1584 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@5333d6ea]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 20:05:58.803 INFO 1584 --- [cluster-ClusterId{value='63227a7624605c4f66a7d8f2', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:111}] to 127.0.0.1:27017
2022-09-14 20:05:58.803 INFO 1584 --- [cluster-rtt-ClusterId{value='63227a7624605c4f66a7d8f2', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:112}] to 127.0.0.1:27017
2022-09-14 20:05:58.808 INFO 1584 --- [cluster-ClusterId{value='63227a7624605c4f66a7d8f2', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=46391100}
2022-09-14 20:05:58.960 WARN 1584 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:05:58.999 WARN 1584 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:05:59.554 INFO 1584 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 20:06:00.392 WARN 1584 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:06:00.548 WARN 1584 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:06:00.960 INFO 1584 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 20:06:01.685 WARN 1584 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 20:06:01.742 INFO 1584 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 7.098 seconds (JVM running for 8.801)
2022-09-14 20:06:02.515 INFO 1584 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:113}] to 127.0.0.1:27017
2022-09-14 20:06:02.629 INFO 1584 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:06:02.675 INFO 1584 --- [Thread-9] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:06:02.695 INFO 1584 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:06:03.073 INFO 1584 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 20:06:03.075 INFO 1584 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 20:10:02.430 INFO 28160 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 28160 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 20:10:02.432 INFO 28160 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 20:10:02.473 INFO 28160 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 20:10:02.474 INFO 28160 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 20:10:03.564 INFO 28160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 20:10:03.584 INFO 28160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 13 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 20:10:03.927 INFO 28160 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 20:10:04.060 INFO 28160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:10:04.063 INFO 28160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:10:04.066 INFO 28160 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:10:04.536 INFO 28160 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@3842fbd9]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 20:10:04.554 INFO 28160 --- [cluster-ClusterId{value='63227b6c7ed70527be507fea', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:114}] to 127.0.0.1:27017
2022-09-14 20:10:04.554 INFO 28160 --- [cluster-rtt-ClusterId{value='63227b6c7ed70527be507fea', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:115}] to 127.0.0.1:27017
2022-09-14 20:10:04.586 INFO 28160 --- [cluster-ClusterId{value='63227b6c7ed70527be507fea', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=31365600}
2022-09-14 20:10:04.688 WARN 28160 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:10:04.713 WARN 28160 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:10:05.171 INFO 28160 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 20:10:05.960 WARN 28160 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:10:06.098 WARN 28160 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:10:06.545 INFO 28160 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 20:10:07.189 WARN 28160 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 20:10:07.238 INFO 28160 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 6.549 seconds (JVM running for 8.368)
2022-09-14 20:10:08.071 INFO 28160 --- [Thread-11] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:116}] to 127.0.0.1:27017
2022-09-14 20:10:08.184 INFO 28160 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:10:08.235 INFO 28160 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:10:08.253 INFO 28160 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:10:08.639 INFO 28160 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 20:10:08.642 INFO 28160 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN
2022-09-14 20:13:03.036 INFO 26504 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Starting BankAccountRepositoryTest using Java 11.0.15.1 on LIM-27JK3M3 with PID 26504 (started by lcochach in C:\Users\lcochach\Documents\04 Solutions\JAVA\Workspaces\Level 1\ProyectoBancoS1-MicroService1)
2022-09-14 20:13:03.038 INFO 26504 --- [main] p.c.b.t.r.BankAccountRepositoryTest : No active profile set, falling back to 1 default profile: "default"
2022-09-14 20:13:03.119 INFO 26504 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Fetching config from server at : http://localhost:8888
2022-09-14 20:13:03.119 INFO 26504 --- [main] o.s.c.c.c.ConfigServerConfigDataLoader : Located environment: name=Micro-Service1, profiles=[default], label=null, version=88512f682ac1f2bd934b19c2c29e381af7e9f592, state=null
2022-09-14 20:13:04.535 INFO 26504 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Reactive MongoDB repositories in DEFAULT mode.
2022-09-14 20:13:04.566 INFO 26504 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 20 ms. Found 0 Reactive MongoDB repository interfaces.
2022-09-14 20:13:04.993 INFO 26504 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=13ea5bc4-8fc4-3e4e-b786-287157004ee8
2022-09-14 20:13:05.180 INFO 26504 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:13:05.185 INFO 26504 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:13:05.195 INFO 26504 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2022-09-14 20:13:05.925 INFO 26504 --- [main] org.mongodb.driver.client : MongoClient with metadata {"driver": {"name": "mongo-java-driver|reactive-streams", "version": "4.6.1"}, "os": {"type": "Windows", "name": "Windows 10", "architecture": "amd64", "version": "10.0"}, "platform": "Java/Oracle Corporation/11.0.15.1+2-LTS-10"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=null, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='user', source='mservice1', password=<hidden>, mechanismProperties=<hidden>}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ValueCodecProvider{}, BsonValueCodecProvider{}, DBRefCodecProvider{}, DBObjectCodecProvider{}, DocumentCodecProvider{}, IterableCodecProvider{}, MapCodecProvider{}, GeoJsonCodecProvider{}, GridFSFileCodecProvider{}, Jsr310CodecProvider{}, JsonObjectCodecProvider{}, BsonCodecProvider{}, EnumCodecProvider{}, com.mongodb.Jep395RecordCodecProvider@5333d6ea]}, clusterSettings={hosts=[127.0.0.1:27017], srvServiceName=mongodb, mode=SINGLE, requiredClusterType=UNKNOWN, requiredReplicaSetName='null', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=15000, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=5000, readTimeoutMS=5000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=10000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=15000, minHeartbeatFrequencyMS=700, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=false, invalidHostNameAllowed=false, context=null}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}
2022-09-14 20:13:05.944 INFO 26504 --- [cluster-ClusterId{value='63227c217623a22cd64e473e', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:118}] to 127.0.0.1:27017
2022-09-14 20:13:05.944 INFO 26504 --- [cluster-rtt-ClusterId{value='63227c217623a22cd64e473e', description='null'}-127.0.0.1:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:2, serverValue:117}] to 127.0.0.1:27017
2022-09-14 20:13:05.948 INFO 26504 --- [cluster-ClusterId{value='63227c217623a22cd64e473e', description='null'}-127.0.0.1:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=127.0.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=17, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=47069300}
2022-09-14 20:13:06.100 WARN 26504 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:13:06.149 WARN 26504 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:13:06.903 INFO 26504 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'
2022-09-14 20:13:08.089 WARN 26504 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:13:08.237 WARN 26504 --- [main] o.s.data.convert.CustomConversions : Registering converter from class java.time.LocalDateTime to class org.joda.time.LocalDateTime as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation
2022-09-14 20:13:08.732 INFO 26504 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2022-09-14 20:13:09.580 WARN 26504 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2022-09-14 20:13:09.642 INFO 26504 --- [main] p.c.b.t.r.BankAccountRepositoryTest : Started BankAccountRepositoryTest in 8.939 seconds (JVM running for 10.705)
2022-09-14 20:13:10.476 INFO 26504 --- [Thread-10] org.mongodb.driver.connection : Opened connection [connectionId{localValue:3, serverValue:119}] to 127.0.0.1:27017
2022-09-14 20:13:10.619 INFO 26504 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:13:10.676 INFO 26504 --- [Thread-11] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:13:10.699 INFO 26504 --- [Thread-10] p.c.b.t.r.BankAccountRepositoryTest : IbException: false Message: null
2022-09-14 20:13:11.187 INFO 26504 --- [SpringApplicationShutdownHook] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2022-09-14 20:13:11.191 INFO 26504 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application MICRO-SERVICE1 with eureka with status DOWN