This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
2286 lines (2209 loc) · 220 KB
/
nohup.out
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
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Finished release [optimized] target(s) in 0.15s
warning: the following packages contain code that will be rejected by a future version of Rust: nom v2.2.1
note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1`
Running `target/release/r1403_vison server`
[2023-04-18T19:29:17Z INFO r1403_vison] Teams That Will Be Tracked:
[1100, 115, 1403, 148, 1756, 1771, 180, 1868, 2199, 2370, 2451, 2637, 2791, 2945, 3008, 302, 3132, 325, 3284, 3310, 333, 3341, 343, 3489, 3526, 3616, 3749, 3847, 399, 3990, 4003, 4010, 4131, 4253, 4270, 4392, 449, 4738, 4766, 4788, 5414, 5687, 5727, 5901, 5907, 5940, 6329, 6348, 6358, 6413, 649, 6586, 6647, 6652, 6868, 6995, 6998, 7021, 7042, 7220, 7534, 7565, 7890, 8046, 8177, 818, 8393, 840, 8426, 8711, 8739, 9015, 9016, 9019, 9085, 9153, 9168, 9219]
The Event Name: Curie Division
[2023-04-18T19:29:17Z INFO pprof::profiler] starting cpu profiler
[2023-04-18T19:29:17Z INFO r1403_vison::server] Updating year value:
[2023-04-18T19:29:18Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 1100!
With Status: Success
[2023-04-18T19:29:19Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 115!
With Status: Success
[2023-04-18T19:29:19Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 1403!
With Status: Success
[2023-04-18T19:29:20Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 148!
With Status: Success
[2023-04-18T19:29:20Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 1756!
With Status: Success
[2023-04-18T19:29:21Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 1771!
With Status: Success
[2023-04-18T19:29:21Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 180!
With Status: Success
[2023-04-18T19:29:22Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 1868!
With Status: Success
[2023-04-18T19:29:23Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2199!
With Status: Success
[2023-04-18T19:29:24Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2370!
With Status: Success
[2023-04-18T19:29:25Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2451!
With Status: Success
[2023-04-18T19:29:25Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2637!
With Status: Success
[2023-04-18T19:29:26Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2791!
With Status: Success
[2023-04-18T19:29:27Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 2945!
With Status: Success
[2023-04-18T19:29:27Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3008!
With Status: Success
[2023-04-18T19:29:28Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 302!
With Status: Success
[2023-04-18T19:29:28Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3132!
With Status: Success
[2023-04-18T19:29:29Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 325!
With Status: Success
[2023-04-18T19:29:30Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3284!
With Status: Success
[2023-04-18T19:29:31Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3310!
With Status: Success
[2023-04-18T19:29:32Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 333!
With Status: Success
[2023-04-18T19:29:33Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3341!
With Status: Success
[2023-04-18T19:29:34Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 343!
With Status: Success
[2023-04-18T19:29:34Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3489!
With Status: Success
[2023-04-18T19:29:36Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3526!
With Status: Success
[2023-04-18T19:29:37Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3616!
With Status: Success
[2023-04-18T19:29:38Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3749!
With Status: Success
[2023-04-18T19:29:39Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3847!
With Status: Success
[2023-04-18T19:29:39Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 399!
With Status: Success
[2023-04-18T19:29:40Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 3990!
With Status: Success
[2023-04-18T19:29:40Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4003!
With Status: Success
[2023-04-18T19:29:41Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4010!
With Status: Success
[2023-04-18T19:29:43Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4131!
With Status: Success
[2023-04-18T19:29:43Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4253!
With Status: Success
[2023-04-18T19:29:44Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4270!
With Status: Success
[2023-04-18T19:29:45Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4392!
With Status: Success
[2023-04-18T19:29:46Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 449!
With Status: Success
[2023-04-18T19:29:47Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:29:47Z INFO r1403_vison::server] Updating year value:
[2023-04-18T19:29:47Z INFO r1403_vison::comp::avg::year_around_main] Full data is found and is pushed to firstore for 4738!
With Status: Success
[2023-04-18T19:29:52Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:29:52Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:29:58Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:29:58Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:03Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:03Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:09Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:09Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:15Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:15Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:20Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:20Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:26Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:26Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:27Z WARN r1403_vison::comp::avg::year_around_main] Data unavailable for 1100 , skipping...
[2023-04-18T19:30:27Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:30:28Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:28Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:30:28Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:28Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:29Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:29Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:29Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:30:29Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:29Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:30Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:30Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:30Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:30:30Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:30Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:31Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:31Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:31Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:31Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:30:31Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:32Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:32Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:32Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:32Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:32Z WARN r1403_vison::comp::ai] Failed to find data for 4788, waiting....
[2023-04-18T19:30:32Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:30:32Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::ai] Dead lock or some other and it failed to get data error
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:33Z WARN r1403_vison::comp::avg::year_around_main] Data unavailable for 4788 , skipping...
[2023-04-18T19:30:33Z WARN r1403_vison::comp::ai] Failed to find data for 7042, waiting....
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:33Z WARN r1403_vison::comp::avg::year_around_main] Data unavailable for 3310 , skipping...
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::ai] Dead lock or some other and it failed to get data error
[2023-04-18T19:30:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:33Z WARN r1403_vison::comp::avg::year_around_main] Data unavailable for 7042 , skipping...
[2023-04-18T19:30:33Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:34Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:35Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:36Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:37Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:37Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:42Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:42Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:43Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:48Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:48Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:30:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:49Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:50Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:30:50Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:51Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:52Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:53Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:53Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:54Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:55Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:30:59Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:30:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:02Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:04Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:04Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:05Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:10Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:10Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:12Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:13Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:13Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:14Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:15Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:15Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:16Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:17Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:20Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:21Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:21Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:22Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:23Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:24Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:25Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:25Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:26Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:26Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:27Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:27Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:28Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:29Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:30Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:31Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:32Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:32Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:32Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:33Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:34Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:34Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:35Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:36Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:36Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:37Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:37Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:37Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:38Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:39Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:40Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:41Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:42Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:43Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:43Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:44Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:45Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:46Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:47Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:48Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:48Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:48Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:49Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:49Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:50Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:51Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:52Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:53Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:31:54Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:54Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:31:54Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:55Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:56Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:57Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:58Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:31:59Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:31:59Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:32:00Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:32:00Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:00Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:01Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:02Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:03Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:04Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:05Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:32:05Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:06Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:06Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:07Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 8
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:08Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 9
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:09Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 10
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:10Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:32:11Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z ERROR r1403_vison::db::redis_functions] SKIPPING 1100 DUE TO REDIS FAILURE
[2023-04-18T19:32:11Z WARN r1403_vison::comp::avg::year_around_main] Data unavailable for 115 , skipping...
[2023-04-18T19:32:11Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 0
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:11Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 1
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:12Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 2
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:13Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 3
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:14Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 4
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:15Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z INFO r1403_vison::server] Retrying Polling
[2023-04-18T19:32:16Z INFO r1403_vison::server] Updating Match value:
[2023-04-18T19:32:16Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 5
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:16Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 6
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:17Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:18Z ERROR r1403_vison::db::redis_functions] FAILED WHILE SENDING REDIS DATA, An error was signalled by the server: value is not a valid float, RETRYING 7
[2023-04-18T19:32:18Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB
[2023-04-18T19:32:19Z ERROR r1403_vison::comp::avg::year_around_main] DEAD LOCK WITH REDIS DB