This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
forked from froggleston/COPO
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgeckodriver.log
9618 lines (9054 loc) · 762 KB
/
geckodriver.log
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
1648729702766 geckodriver INFO Listening on 127.0.0.1:59003
1648729703776 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilezqnXAW"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648729704429 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezqnXAW/search.json.mozlz4", (void 0)))
1648729705499 Marionette INFO Listening on port 38681
1648729705604 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648729985411 geckodriver INFO Listening on 127.0.0.1:38131
1648729986418 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileE1XY9j"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648729987019 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileE1XY9j/search.json.mozlz4", (void 0)))
1648729987945 Marionette INFO Listening on port 41013
1648729988050 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648730114434 addons.xpi ERROR System addon update list error Error: Failed downloading XML, status: 0, reason: timeout
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1648730127197 geckodriver INFO Listening on 127.0.0.1:59317
1648730128199 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileq5muiH"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648730128967 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileq5muiH/search.json.mozlz4", (void 0)))
1648730130285 Marionette INFO Listening on port 41545
1648730130324 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648730397025 addons.xpi ERROR System addon update list error Error: Failed downloading XML, status: 0, reason: timeout
1648730538970 addons.xpi ERROR System addon update list error Error: Failed downloading XML, status: 0, reason: timeout
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648730817253 geckodriver INFO Listening on 127.0.0.1:51495
1648730818255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile04NrvL"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648730819086 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile04NrvL/search.json.mozlz4", (void 0)))
1648730820154 Marionette INFO Listening on port 44525
1648730820173 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648730892495 geckodriver INFO Listening on 127.0.0.1:42739
1648730893503 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileKdfq8I"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648730894254 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKdfq8I/search.json.mozlz4", (void 0)))
1648730895355 Marionette INFO Listening on port 36851
1648730895426 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648731040976 geckodriver INFO Listening on 127.0.0.1:60283
1648731041983 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilecD2I8o"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648731042709 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilecD2I8o/search.json.mozlz4", (void 0)))
1648731043641 Marionette INFO Listening on port 36745
1648731043704 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648731249667 Marionette INFO Stopped listening on port 36745
1648731251674 Marionette INFO Stopped listening on port 44525
1648733606067 geckodriver INFO Listening on 127.0.0.1:53393
1648733607074 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilePNf4Yp"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648733607856 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilePNf4Yp/search.json.mozlz4", (void 0)))
1648733609057 Marionette INFO Listening on port 42135
1648733609092 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648733733183 geckodriver INFO Listening on 127.0.0.1:45639
1648733734184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileKRIKOh"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648733734841 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKRIKOh/search.json.mozlz4", (void 0)))
1648733735986 Marionette INFO Listening on port 43401
1648733736004 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648750018074 geckodriver INFO Listening on 127.0.0.1:56851
1648750019082 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile6um7je"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648750019749 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6um7je/search.json.mozlz4", (void 0)))
1648750020707 Marionette INFO Listening on port 40855
1648750020812 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648750192498 geckodriver INFO Listening on 127.0.0.1:41579
1648750192501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilex7fBvZ"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648750193093 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilex7fBvZ/search.json.mozlz4", (void 0)))
1648750194015 Marionette INFO Listening on port 34891
1648750194117 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648750396508 geckodriver INFO Listening on 127.0.0.1:38851
1648750397511 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilekdRZvt"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648750398080 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekdRZvt/search.json.mozlz4", (void 0)))
1648750399165 Marionette INFO Listening on port 46033
1648750399229 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648750429762 addons.xpi ERROR System addon update list error Error: Failed downloading XML, status: 0, reason: timeout
1648751533327 Marionette INFO Stopped listening on port 40855
1648753879740 Marionette INFO Stopped listening on port 46033
1648753883892 Marionette INFO Stopped listening on port 34891
1648758984674 geckodriver INFO Listening on 127.0.0.1:49681
1648758985686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileOsGQD2"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648758986316 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOsGQD2/search.json.mozlz4", (void 0)))
1648758987382 Marionette INFO Listening on port 45689
1648758987403 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648758987446 Marionette INFO Stopped listening on port 45689
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1648816509376 geckodriver INFO Listening on 127.0.0.1:44799
1648816510380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileOINwG5"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648816511053 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOINwG5/search.json.mozlz4", (void 0)))
1648816512059 Marionette INFO Listening on port 33329
1648816512097 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648816512506 geckodriver INFO Listening on 127.0.0.1:40371
1648816512508 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileYQJ1sH"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648816513112 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileYQJ1sH/search.json.mozlz4", (void 0)))
1648816514131 Marionette INFO Listening on port 43391
1648816514227 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648816514241 Marionette INFO Stopped listening on port 43391
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1648818466888 geckodriver INFO Listening on 127.0.0.1:49761
1648818467893 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileqzl3xC"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648818468492 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileqzl3xC/search.json.mozlz4", (void 0)))
1648818469519 Marionette INFO Listening on port 43875
1648818469618 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648818470019 geckodriver INFO Listening on 127.0.0.1:54695
1648818470021 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile7dLojJ"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648818470624 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7dLojJ/search.json.mozlz4", (void 0)))
1648818471623 Marionette INFO Listening on port 34945
1648818471638 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648818471648 Marionette INFO Stopped listening on port 34945
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1648818928363 geckodriver INFO Listening on 127.0.0.1:53025
1648818929370 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile01mpAV"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648818929986 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile01mpAV/search.json.mozlz4", (void 0)))
1648818931159 Marionette INFO Listening on port 44557
1648818931185 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648818931467 geckodriver INFO Listening on 127.0.0.1:57753
1648818932472 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileoLkxqh"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1648818933095 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoLkxqh/search.json.mozlz4", (void 0)))
1648818934198 Marionette INFO Listening on port 36285
1648818934289 RemoteAgent WARN TLS certificate errors will be ignored for this session
1648818934297 Marionette INFO Stopped listening on port 36285
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1648826956611 Marionette INFO Stopped listening on port 44557
Gdk-Message: 20:47:27.136: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Exiting due to channel error.
Exiting due to channel error.
Gdk-Message: 20:47:27.381: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1649695908589 geckodriver INFO Listening on 127.0.0.1:36959
1649695909602 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileOqvrBt"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649695910232 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOqvrBt/search.json.mozlz4", (void 0)))
1649695911175 Marionette INFO Listening on port 44781
1649695911221 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649695911285 Marionette INFO Stopped listening on port 44781
console.warn: services.settings: main/query-stripping sync interrupted by shutdown
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
1649696068120 geckodriver INFO Listening on 127.0.0.1:55399
1649696068122 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilesU9Fol"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649696068754 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilesU9Fol/search.json.mozlz4", (void 0)))
1649696069837 Marionette INFO Listening on port 39699
1649696069937 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649696070706 Marionette INFO Stopped listening on port 39699
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1649696139815 geckodriver INFO Listening on 127.0.0.1:42119
1649696139818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilezxPmW0"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649696140403 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezxPmW0/search.json.mozlz4", (void 0)))
1649696141303 Marionette INFO Listening on port 41805
1649696141332 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649696142163 Marionette INFO Stopped listening on port 41805
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1649703118571 geckodriver INFO Listening on 127.0.0.1:51813
1649703119581 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilecBuX5P"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703120193 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilecBuX5P/search.json.mozlz4", (void 0)))
1649703121187 Marionette INFO Listening on port 32953
1649703121296 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703181448 geckodriver INFO Listening on 127.0.0.1:35769
1649703182446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileunACsK"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703183091 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileunACsK/search.json.mozlz4", (void 0)))
1649703184129 Marionette INFO Listening on port 37881
1649703184182 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703200611 geckodriver INFO Listening on 127.0.0.1:58823
1649703200614 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilejoT5gm"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703201212 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejoT5gm/search.json.mozlz4", (void 0)))
1649703202305 Marionette INFO Listening on port 38843
1649703202331 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703202441 Marionette INFO Stopped listening on port 37881
1649703204253 Marionette INFO Stopped listening on port 32953
1649703275927 geckodriver INFO Listening on 127.0.0.1:55087
1649703275930 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofiley1KixN"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703276542 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiley1KixN/search.json.mozlz4", (void 0)))
1649703277461 Marionette INFO Listening on port 37085
1649703277545 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703317647 geckodriver INFO Listening on 127.0.0.1:39253
1649703317650 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilez1EB7r"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703318217 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilez1EB7r/search.json.mozlz4", (void 0)))
1649703319148 Marionette INFO Listening on port 35223
1649703319172 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703358317 geckodriver INFO Listening on 127.0.0.1:38539
1649703359329 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileTMToCO"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703360044 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTMToCO/search.json.mozlz4", (void 0)))
1649703361332 Marionette INFO Listening on port 40289
1649703361353 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703364560 Marionette INFO Stopped listening on port 35223
1649703366291 Marionette INFO Stopped listening on port 37085
1649703367982 Marionette INFO Stopped listening on port 40289
1649703402322 geckodriver INFO Listening on 127.0.0.1:42913
1649703403334 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileANNdIo"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703403942 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileANNdIo/search.json.mozlz4", (void 0)))
1649703404830 Marionette INFO Listening on port 35847
1649703404849 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703753534 geckodriver INFO Listening on 127.0.0.1:36103
1649703754544 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile3LEOZ8"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703755153 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile3LEOZ8/search.json.mozlz4", (void 0)))
1649703756228 Marionette INFO Listening on port 39661
1649703756261 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703757092 Marionette INFO Stopped listening on port 39661
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1649703862409 geckodriver INFO Listening on 127.0.0.1:47487
1649703863419 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilez5AyEY"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649703864059 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilez5AyEY/search.json.mozlz4", (void 0)))
1649703865135 Marionette INFO Listening on port 40201
1649703865251 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649703865294 Marionette INFO Stopped listening on port 40201
1649704482720 geckodriver INFO Listening on 127.0.0.1:51883
1649704483730 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileSkG8Nx"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649704484345 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileSkG8Nx/search.json.mozlz4", (void 0)))
1649704485455 Marionette INFO Listening on port 38025
1649704485547 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649704485590 Marionette INFO Stopped listening on port 38025
console.warn: services.settings: main/query-stripping sync interrupted by shutdown
1649704522910 geckodriver INFO Listening on 127.0.0.1:45325
1649704523918 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileMpYQck"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649704524513 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMpYQck/search.json.mozlz4", (void 0)))
1649704525526 Marionette INFO Listening on port 39509
1649704525636 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649704706436 Marionette INFO Stopped listening on port 39509
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1649705700536 geckodriver INFO Listening on 127.0.0.1:41945
1649705701545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilemgvqNe"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649705702177 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemgvqNe/search.json.mozlz4", (void 0)))
1649705703187 Marionette INFO Listening on port 36319
1649705703261 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649705730110 geckodriver INFO Listening on 127.0.0.1:40701
1649705731118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilev2CRu1"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649705731721 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilev2CRu1/search.json.mozlz4", (void 0)))
1649705732844 Marionette INFO Listening on port 44713
1649705732934 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649709785763 Marionette INFO Stopped listening on port 36319
1649709789418 Marionette INFO Stopped listening on port 35847
1649709792369 Marionette INFO Stopped listening on port 44713
1649709793830 Marionette INFO Stopped listening on port 38843
1649879210646 geckodriver INFO Listening on 127.0.0.1:49517
1649879211653 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileNEUldd"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649879212331 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNEUldd/search.json.mozlz4", (void 0)))
1649879213303 Marionette INFO Listening on port 36085
1649879213380 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649879214912 geckodriver INFO Listening on 127.0.0.1:54817
1649879214915 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilezsuTeE"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649879215497 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezsuTeE/search.json.mozlz4", (void 0)))
1649879216384 Marionette INFO Listening on port 38423
1649879216429 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1649879417839 Marionette INFO Stopped listening on port 38423
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1649879418106 geckodriver INFO Listening on 127.0.0.1:42113
1649879419109 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileffAC5r"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649879419786 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileffAC5r/search.json.mozlz4", (void 0)))
1649879420726 Marionette INFO Listening on port 42021
1649879420840 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649879421868 Marionette INFO Stopped listening on port 42021
1649881581097 Marionette INFO Stopped listening on port 36085
1649883359844 geckodriver INFO Listening on 127.0.0.1:45317
1649883360858 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile7Y29Ih"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649883361472 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7Y29Ih/search.json.mozlz4", (void 0)))
1649883362413 Marionette INFO Listening on port 34685
1649883362485 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649883895396 Marionette INFO Stopped listening on port 34685
1649884011006 geckodriver INFO Listening on 127.0.0.1:34317
1649884012005 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileUwZbFR"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649884012942 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUwZbFR/search.json.mozlz4", (void 0)))
1649884014384 Marionette INFO Listening on port 40527
1649884014454 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649884270991 geckodriver INFO Listening on 127.0.0.1:51417
1649884270995 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileDAGpDt"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649884271640 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDAGpDt/search.json.mozlz4", (void 0)))
1649884273132 Marionette INFO Listening on port 41661
1649884273221 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649886551981 geckodriver INFO Listening on 127.0.0.1:36761
1649886552989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileN3FVSP"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649886553692 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileN3FVSP/search.json.mozlz4", (void 0)))
1649886554879 Marionette INFO Listening on port 40465
1649886554916 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649886616271 geckodriver INFO Listening on 127.0.0.1:47683
1649886617282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileZSpU5p"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649886618072 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileZSpU5p/search.json.mozlz4", (void 0)))
1649886619346 Marionette INFO Listening on port 42435
1649886619417 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649886772533 geckodriver INFO Listening on 127.0.0.1:46417
1649886773542 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileBmITZi"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649886774269 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileBmITZi/search.json.mozlz4", (void 0)))
1649886775491 Marionette INFO Listening on port 38003
1649886775566 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649886886145 geckodriver INFO Listening on 127.0.0.1:60747
1649886887149 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileAFpcuP"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649886887833 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileAFpcuP/search.json.mozlz4", (void 0)))
1649886888945 Marionette INFO Listening on port 36773
1649886888971 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649887852427 geckodriver INFO Listening on 127.0.0.1:52337
1649887853442 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileunA0wr"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649887854172 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileunA0wr/search.json.mozlz4", (void 0)))
1649887855320 Marionette INFO Listening on port 39437
1649887855364 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649888069687 geckodriver INFO Listening on 127.0.0.1:34737
1649888070696 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileiDCiEz"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649888071339 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileiDCiEz/search.json.mozlz4", (void 0)))
1649888072519 Marionette INFO Listening on port 40543
1649888072637 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649888371526 geckodriver INFO Listening on 127.0.0.1:49297
1649888372534 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileKDuTSW"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649888373202 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKDuTSW/search.json.mozlz4", (void 0)))
1649888374196 Marionette INFO Listening on port 38395
1649888374253 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649888374326 Marionette INFO Stopped listening on port 38395
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1649888582046 geckodriver INFO Listening on 127.0.0.1:58593
1649888582049 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileRXU6PA"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649888582616 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRXU6PA/search.json.mozlz4", (void 0)))
1649888583854 Marionette INFO Listening on port 46523
1649888583967 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1649888629284 geckodriver INFO Listening on 127.0.0.1:48761
1649888630294 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilerA6649"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649888630903 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerA6649/search.json.mozlz4", (void 0)))
1649888631974 Marionette INFO Listening on port 37861
1649888632010 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1649888666493 geckodriver INFO Listening on 127.0.0.1:46575
1649888666497 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileM0AiW9"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649888667142 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileM0AiW9/search.json.mozlz4", (void 0)))
1649888668339 Marionette INFO Listening on port 42545
1649888668414 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1649889076867 geckodriver INFO Listening on 127.0.0.1:56083
1649889077874 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilee2kZuj"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649889078643 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilee2kZuj/search.json.mozlz4", (void 0)))
1649889079697 Marionette INFO Listening on port 33075
1649889079799 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649889112955 geckodriver INFO Listening on 127.0.0.1:48431
1649889113963 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileu3A1Qe"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649889114553 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileu3A1Qe/search.json.mozlz4", (void 0)))
1649889115444 Marionette INFO Listening on port 34143
1649889115479 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649889120678 Marionette INFO Stopped listening on port 34143
1649889242616 geckodriver INFO Listening on 127.0.0.1:34605
1649889242619 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile7UzhlZ"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1649889243177 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7UzhlZ/search.json.mozlz4", (void 0)))
1649889244256 Marionette INFO Listening on port 44441
1649889244334 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_CreateAudioIPCConnection) Channel closing: too late to send/recv, messages will be lost
JavaScript warning: https://pagead2.googlesyndication.com/bg/287vsxWa92ZzAf4Hva6mMSSE5qc9GsoRRsyFmqSdVGI.js line 1 > eval line 1952 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 494 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 722 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 6654 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 4162 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 607 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js, line 8: Error: Script error for: jquery
http://requirejs.org/docs/errors.html#scripterror
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.google.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1649889544345 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1649889545340 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1649889549085 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/287vsxWa92ZzAf4Hva6mMSSE5qc9GsoRRsyFmqSdVGI.js line 1 > eval line 4163 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649889549990 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 7410 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 5611 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/k-Lxrj_3cR5KhrMTVpzAVOH1CgwXrUvkekFpn42ZeoQ.js line 1 > eval line 6942 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Parent][PProfilerParent] Error: RunMessage(msgname=PProfiler::Reply_Stop) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][PProfilerParent] Error: RunMessage(msgname=PProfiler::Reply_Stop) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][PProfilerParent] Error: RunMessage(msgname=PProfiler::Reply_Stop) Channel closing: too late to send/recv, messages will be lost
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
Gdk-Message: 00:20:15.414: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.433: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Gdk-Message: 00:20:15.551: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.553: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.553: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.555: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.582: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.584: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.585: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.586: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.587: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.588: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Gdk-Message: 00:20:15.598: firefox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1650456817015 geckodriver INFO Listening on 127.0.0.1:49983
1650456818020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile32qwt6"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650456818598 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile32qwt6/search.json.mozlz4", (void 0)))
1650456819700 Marionette INFO Listening on port 45173
1650456819735 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1650458180007 Marionette INFO Stopped listening on port 45173
1650458447963 geckodriver INFO Listening on 127.0.0.1:39715
1650458448972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileuZeZ99"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650458449641 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuZeZ99/search.json.mozlz4", (void 0)))
1650458450919 Marionette INFO Listening on port 41585
1650458451012 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1650458457033 Marionette INFO Stopped listening on port 41585
###!!! [Child][PContentChild] Error: RunMessage(msgname=PHttpChannel::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1650458685382 geckodriver INFO Listening on 127.0.0.1:49013
1650458685385 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilezcx9ha"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650458685959 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezcx9ha/search.json.mozlz4", (void 0)))
1650458687053 Marionette INFO Listening on port 45173
1650458687133 RemoteAgent WARN TLS certificate errors will be ignored for this session
1650459067113 geckodriver INFO Listening on 127.0.0.1:42657
1650459067115 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilednN3uF"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650459067672 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilednN3uF/search.json.mozlz4", (void 0)))
1650459068640 Marionette INFO Listening on port 41227
1650459068734 RemoteAgent WARN TLS certificate errors will be ignored for this session
1650459069596 geckodriver INFO Listening on 127.0.0.1:56025
1650459069598 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileafgkah"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650459070161 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileafgkah/search.json.mozlz4", (void 0)))
1650459071061 Marionette INFO Listening on port 45637
1650459071120 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1650461063034 Marionette INFO Stopped listening on port 45173
1650882134247 geckodriver INFO Listening on 127.0.0.1:45049
1650882135251 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilegyHJ0H"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650882135935 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegyHJ0H/search.json.mozlz4", (void 0)))
1650882136977 Marionette INFO Listening on port 35737
1650882137071 RemoteAgent WARN TLS certificate errors will be ignored for this session
1650882138042 geckodriver INFO Listening on 127.0.0.1:50577
1650882139047 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileyHG3Oz"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650882139644 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileyHG3Oz/search.json.mozlz4", (void 0)))
1650882140637 Marionette INFO Listening on port 34043
1650882140661 RemoteAgent WARN TLS certificate errors will be ignored for this session
1650882175879 Marionette INFO Stopped listening on port 35737
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1650882182379 Marionette INFO Stopped listening on port 34043
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1650882182515 geckodriver::marionette ERROR Failed to close browser connection: Socket not connected (os error 107)
[2022-04-25T10:23:02Z ERROR glean] Can't persist ping lifetime data: Error { kind: Rkv(IoError(Os { code: 2, kind: NotFound, message: "No such file or directory" })) }
1650882182533 geckodriver INFO Listening on 127.0.0.1:55413
1650882182536 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileeN9LvC"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1650882183211 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileeN9LvC/search.json.mozlz4", (void 0)))
1650882184192 Marionette INFO Listening on port 35807
1650882184249 RemoteAgent WARN TLS certificate errors will be ignored for this session
1650882184778 Marionette INFO Stopped listening on port 35807
1651051886499 geckodriver INFO Listening on 127.0.0.1:57239
1651051887498 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileuiINl2"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651051888148 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuiINl2/search.json.mozlz4", (void 0)))
1651051889362 Marionette INFO Listening on port 39503
1651051889422 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651051933955 geckodriver INFO Listening on 127.0.0.1:56661
1651051933957 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileiSWkji"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651051934549 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileiSWkji/search.json.mozlz4", (void 0)))
1651051935738 Marionette INFO Listening on port 42637
1651051935793 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651052240330 geckodriver INFO Listening on 127.0.0.1:54597
1651052241338 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileNOqloH"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651052241932 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNOqloH/search.json.mozlz4", (void 0)))
1651052243026 Marionette INFO Listening on port 37839
1651052243053 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651052278118 geckodriver INFO Listening on 127.0.0.1:40547
1651052279125 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile7peXxC"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651052279750 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7peXxC/search.json.mozlz4", (void 0)))
1651052280857 Marionette INFO Listening on port 35619
1651052280969 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651052469605 geckodriver INFO Listening on 127.0.0.1:34943
1651052470613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileiFaogs"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651052471353 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileiFaogs/search.json.mozlz4", (void 0)))
1651052472601 Marionette INFO Listening on port 34229
1651052472641 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651056958596 geckodriver INFO Listening on 127.0.0.1:34203
1651056959612 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileFW9cH7"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651056960340 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFW9cH7/search.json.mozlz4", (void 0)))
1651056962242 Marionette INFO Listening on port 43103
1651056962344 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651056993156 geckodriver INFO Listening on 127.0.0.1:33205
1651056994158 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilerI7Kdm"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651056995096 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerI7Kdm/search.json.mozlz4", (void 0)))
1651057000197 Marionette INFO Listening on port 44901
1651057004765 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651057105270 geckodriver INFO Listening on 127.0.0.1:51869
1651057106272 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofilehDJFSF"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651057107113 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehDJFSF/search.json.mozlz4", (void 0)))
1651057108797 Marionette INFO Listening on port 46459
1651057108923 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651057143918 geckodriver INFO Listening on 127.0.0.1:47643
1651057144921 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileVdFVKg"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651057145611 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVdFVKg/search.json.mozlz4", (void 0)))
1651057147069 Marionette INFO Listening on port 33723
1651057147241 RemoteAgent WARN TLS certificate errors will be ignored for this session
1651057263585 geckodriver INFO Listening on 127.0.0.1:60435
1651057264593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofileJR2yU1"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651057265381 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileJR2yU1/search.json.mozlz4", (void 0)))
1651057266905 Marionette INFO Listening on port 42849
1651057267031 RemoteAgent WARN TLS certificate errors will be ignored for this session
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Msg_CommitBrowsingContextTransaction) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Msg_CommitBrowsingContextTransaction) Channel closing: too late to send/recv, messages will be lost
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1651057274842 Marionette INFO Stopped listening on port 42849
1651057646898 geckodriver INFO Listening on 127.0.0.1:41519
1651057647905 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile2UOJ5s"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651057648688 Marionette INFO Marionette enabled
ATTENTION: default value of option mesa_glthread overridden by environment.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile2UOJ5s/search.json.mozlz4", (void 0)))
1651057649959 Marionette INFO Listening on port 41731
1651057650040 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://orcid.org"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1651057655844 Marionette INFO Stopped listening on port 41731
###!!! [Parent][PImageBridgeParent] Error: RunMessage(msgname=PImageBridge::Msg_WillClose) Channel closing: too late to send/recv, messages will be lost
1651057857048 geckodriver INFO Listening on 127.0.0.1:57507
1651057858055 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-no-remote" "-profile" "/tmp/rust_mozprofile7TIYbU"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1651057858856 Marionette INFO Marionette enabled