forked from chaoss/augur
-
Notifications
You must be signed in to change notification settings - Fork 2
/
result.txt
1598 lines (1598 loc) · 470 KB
/
result.txt
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
. augur.tasks.github.facade_github.tasks.insert_facade_contributors
. augur.tasks.github.facade_github.tasks.insert_facade_contributors
[2023-01-12 12:24:13,654: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[ffb189d0-7f2f-4764-b483-f49e5a72df3b] received
[2023-01-12 12:24:13,678: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[63dcd9f8-f3ef-41f5-ad82-6d71247779eb] received
[2023-01-12 12:24:13,678: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[c34794a2-bb3a-4b56-9947-e27a2322f4cf] received
[2023-01-12 12:24:13,679: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[ca42a9a2-3811-4b42-9771-edf03a1bf89a] received
[2023-01-12 12:24:13,679: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[b9272f70-80e4-4bc6-bf00-287a126322ff] received
[2023-01-12 12:24:13,679: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[5b17661b-193a-437e-abe8-db972bef6e26] received
[2023-01-12 12:24:13,680: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[5bfc2ada-0703-4b20-8438-770d0883a1fa] received
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 24441
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 1
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02164fd91b52e1cfab84702cea9a1286b28eb792
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/02164fd91b52e1cfab84702cea9a1286b28eb792
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 24442
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 011413603c412d1b48540d2119f7c1f10baea9cc
2023-01-12 12:24:13 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/011413603c412d1b48540d2119f7c1f10baea9cc
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 25445
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 00ef07a4cea89235da6d40308eae813eab0cddfc
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/00ef07a4cea89235da6d40308eae813eab0cddfc
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0005db68a59e3052c5bedb1c0b8862654e9707e3
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0005db68a59e3052c5bedb1c0b8862654e9707e3
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 25430
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0a63a98d33d71f33380ccba6c5cc3391bf57afd9
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/SociallyCompute/update-test/commits/0a63a98d33d71f33380ccba6c5cc3391bf57afd9
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 25450
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01019154-cb00-0000-0000-000000000000'), 'cntrb_login': 'aakankshaduggal', 'cntrb_created_at': '2017-03-09T12:08:00Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@redhat-et', 'cntrb_location': 'Boston, MA, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 26301643, 'gh_login': 'aakankshaduggal', 'gh_url': 'https://api.github.com/users/aakankshaduggal', 'gh_html_url': 'https://github.com/aakankshaduggal', 'gh_node_id': 'MDQ6VXNlcjI2MzAxNjQz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/26301643?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/aakankshaduggal/followers', 'gh_following_url': 'https://api.github.com/users/aakankshaduggal/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/aakankshaduggal/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/aakankshaduggal/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/aakankshaduggal/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/aakankshaduggal/orgs', 'gh_repos_url': 'https://api.github.com/users/aakankshaduggal/repos', 'gh_events_url': 'https://api.github.com/users/aakankshaduggal/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/aakankshaduggal/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T11:22:57Z', 'cntrb_full_name': 'Aakanksha Duggal'}
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0026b03d590b6ef6ada5260c099960d3eea23992
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO cntrb_id 01019154-cb00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a3026910>] has type <class 'list'>
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/0026b03d590b6ef6ada5260c099960d3eea23992
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 059f3e5d9f578a5c04e0498e0ea1305dd58a9e5b
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/059f3e5d9f578a5c04e0498e0ea1305dd58a9e5b
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Beginning process to insert contributors from facade commits for repo w entry info: 25452
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010003f8-eb00-0000-0000-000000000000'), 'cntrb_login': 'goern', 'cntrb_created_at': '2010-04-30T08:09:26Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@redhat-et', 'cntrb_location': 'Bonn, Germany', 'cntrb_canonical': '[email protected]', 'gh_user_id': 260331, 'gh_login': 'goern', 'gh_url': 'https://api.github.com/users/goern', 'gh_html_url': 'https://github.com/goern', 'gh_node_id': 'MDQ6VXNlcjI2MDMzMQ==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/260331?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/goern/followers', 'gh_following_url': 'https://api.github.com/users/goern/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/goern/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/goern/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/goern/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/goern/orgs', 'gh_repos_url': 'https://api.github.com/users/goern/repos', 'gh_events_url': 'https://api.github.com/users/goern/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/goern/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T11:11:52Z', 'cntrb_full_name': 'Christoph Görn'}
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO cntrb_id 010003f8-eb00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84d8940>] has type <class 'list'>
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 01309f0d2bbec00419372dafd063fe5808d757ad
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/01309f0d2bbec00419372dafd063fe5808d757ad
2023-01-12 12:24:14 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:14,998: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[5bfc2ada-0703-4b20-8438-770d0883a1fa] succeeded in 0.223045650000131s: None
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000cb7-4800-0000-0000-000000000000'), 'cntrb_login': 'sduenas', 'cntrb_created_at': '2011-06-06T18:31:00Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 833352, 'gh_login': 'sduenas', 'gh_url': 'https://api.github.com/users/sduenas', 'gh_html_url': 'https://github.com/sduenas', 'gh_node_id': 'MDQ6VXNlcjgzMzM1Mg==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/833352?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sduenas/followers', 'gh_following_url': 'https://api.github.com/users/sduenas/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sduenas/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sduenas/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sduenas/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sduenas/orgs', 'gh_repos_url': 'https://api.github.com/users/sduenas/repos', 'gh_events_url': 'https://api.github.com/users/sduenas/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sduenas/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-04T08:57:02Z', 'cntrb_full_name': 'Santiago Dueñas'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000cb7-4800-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76980a0>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02ab313134a129866887cf8cb94e0f645dfc2807
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/02ab313134a129866887cf8cb94e0f645dfc2807
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102b055-e200-0000-0000-000000000000'), 'cntrb_login': 'michaelwoodruffdev', 'cntrb_created_at': '2018-11-16T22:40:34Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 45110754, 'gh_login': 'michaelwoodruffdev', 'gh_url': 'https://api.github.com/users/michaelwoodruffdev', 'gh_html_url': 'https://github.com/michaelwoodruffdev', 'gh_node_id': 'MDQ6VXNlcjQ1MTEwNzU0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/45110754?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/michaelwoodruffdev/followers', 'gh_following_url': 'https://api.github.com/users/michaelwoodruffdev/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/michaelwoodruffdev/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/michaelwoodruffdev/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/michaelwoodruffdev/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/michaelwoodruffdev/orgs', 'gh_repos_url': 'https://api.github.com/users/michaelwoodruffdev/repos', 'gh_events_url': 'https://api.github.com/users/michaelwoodruffdev/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/michaelwoodruffdev/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-12-02T23:29:49Z', 'cntrb_full_name': 'Michael Woodruff'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102b055-e200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87187c0>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0018b38ff01dfe5f32689d457b7dd7e0ef1e27fb
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0018b38ff01dfe5f32689d457b7dd7e0ef1e27fb
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010005cb-c700-0000-0000-000000000000'), 'cntrb_login': 'sgoggins', 'cntrb_created_at': '2010-08-29T16:25:48Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Missouri & Linux Foundation CHAOSS Working Group', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 379847, 'gh_login': 'sgoggins', 'gh_url': 'https://api.github.com/users/sgoggins', 'gh_html_url': 'https://github.com/sgoggins', 'gh_node_id': 'MDQ6VXNlcjM3OTg0Nw==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/379847?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sgoggins/followers', 'gh_following_url': 'https://api.github.com/users/sgoggins/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sgoggins/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sgoggins/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sgoggins/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sgoggins/orgs', 'gh_repos_url': 'https://api.github.com/users/sgoggins/repos', 'gh_events_url': 'https://api.github.com/users/sgoggins/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sgoggins/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:26:13Z', 'cntrb_full_name': 'Sean P. Goggins'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 010005cb-c700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7de96d0>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01008d21-d000-0000-0000-000000000000'), 'cntrb_login': 'dlumbrer', 'cntrb_created_at': '2014-10-15T09:13:12Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Spain', 'cntrb_canonical': '[email protected]', 'gh_user_id': 9249232, 'gh_login': 'dlumbrer', 'gh_url': 'https://api.github.com/users/dlumbrer', 'gh_html_url': 'https://github.com/dlumbrer', 'gh_node_id': 'MDQ6VXNlcjkyNDkyMzI=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/9249232?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/dlumbrer/followers', 'gh_following_url': 'https://api.github.com/users/dlumbrer/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/dlumbrer/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/dlumbrer/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/dlumbrer/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/dlumbrer/orgs', 'gh_repos_url': 'https://api.github.com/users/dlumbrer/repos', 'gh_events_url': 'https://api.github.com/users/dlumbrer/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/dlumbrer/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-20T20:56:18Z', 'cntrb_full_name': 'David Moreno Lumbreras'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 01008d21-d000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f7485756a30>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 029c5baab265f34aae5f1d673b2cb4daf6b391d7
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/029c5baab265f34aae5f1d673b2cb4daf6b391d7
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103426e-9100-0000-0000-000000000000'), 'cntrb_login': 'isabelizimm', 'cntrb_created_at': '2019-08-29T19:10:54Z', 'cntrb_email': None, 'cntrb_company': '@rstudio', 'cntrb_location': 'Florida, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 54685329, 'gh_login': 'isabelizimm', 'gh_url': 'https://api.github.com/users/isabelizimm', 'gh_html_url': 'https://github.com/isabelizimm', 'gh_node_id': 'MDQ6VXNlcjU0Njg1MzI5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/54685329?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/isabelizimm/followers', 'gh_following_url': 'https://api.github.com/users/isabelizimm/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/isabelizimm/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/isabelizimm/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/isabelizimm/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/isabelizimm/orgs', 'gh_repos_url': 'https://api.github.com/users/isabelizimm/repos', 'gh_events_url': 'https://api.github.com/users/isabelizimm/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/isabelizimm/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T17:50:04Z', 'cntrb_full_name': 'Isabel Zimmerman'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103426e-9100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8afc160>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:15,751: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[b9272f70-80e4-4bc6-bf00-287a126322ff] succeeded in 1.4141357480002625s: None
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0a142fd82fea2edd311cbb50348f744d93d69528
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/0a142fd82fea2edd311cbb50348f744d93d69528
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100a665-8700-0000-0000-000000000000'), 'cntrb_login': 'HumairAK', 'cntrb_created_at': '2015-02-08T05:31:38Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 10904967, 'gh_login': 'HumairAK', 'gh_url': 'https://api.github.com/users/HumairAK', 'gh_html_url': 'https://github.com/HumairAK', 'gh_node_id': 'MDQ6VXNlcjEwOTA0OTY3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/10904967?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/HumairAK/followers', 'gh_following_url': 'https://api.github.com/users/HumairAK/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/HumairAK/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/HumairAK/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/HumairAK/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/HumairAK/orgs', 'gh_repos_url': 'https://api.github.com/users/HumairAK/repos', 'gh_events_url': 'https://api.github.com/users/HumairAK/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/HumairAK/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T17:04:42Z', 'cntrb_full_name': 'Humair Khan'}
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100a665-8700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7691eb0>] has type <class 'list'>
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02ca9908e9ea209f6e77d1660026450da9582eec
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/02ca9908e9ea209f6e77d1660026450da9582eec
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101f002-df00-0000-0000-000000000000'), 'cntrb_login': 'animeshk08', 'cntrb_created_at': '2017-10-04T06:38:11Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@chaoss @kubernetes', 'cntrb_location': 'Bengaluru, India', 'cntrb_canonical': '[email protected]', 'gh_user_id': 32506591, 'gh_login': 'animeshk08', 'gh_url': 'https://api.github.com/users/animeshk08', 'gh_html_url': 'https://github.com/animeshk08', 'gh_node_id': 'MDQ6VXNlcjMyNTA2NTkx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/32506591?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/animeshk08/followers', 'gh_following_url': 'https://api.github.com/users/animeshk08/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/animeshk08/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/animeshk08/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/animeshk08/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/animeshk08/orgs', 'gh_repos_url': 'https://api.github.com/users/animeshk08/repos', 'gh_events_url': 'https://api.github.com/users/animeshk08/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/animeshk08/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-21T12:39:21Z', 'cntrb_full_name': 'Animesh Kumar'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101f002-df00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a81d9760>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 09e240b184df50a61557517836d4bcfba911e358
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/09e240b184df50a61557517836d4bcfba911e358
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010005cb-c700-0000-0000-000000000000'), 'cntrb_login': 'sgoggins', 'cntrb_created_at': '2010-08-29T16:25:48Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Missouri & Linux Foundation CHAOSS Working Group', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 379847, 'gh_login': 'sgoggins', 'gh_url': 'https://api.github.com/users/sgoggins', 'gh_html_url': 'https://github.com/sgoggins', 'gh_node_id': 'MDQ6VXNlcjM3OTg0Nw==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/379847?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sgoggins/followers', 'gh_following_url': 'https://api.github.com/users/sgoggins/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sgoggins/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sgoggins/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sgoggins/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sgoggins/orgs', 'gh_repos_url': 'https://api.github.com/users/sgoggins/repos', 'gh_events_url': 'https://api.github.com/users/sgoggins/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sgoggins/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:26:13Z', 'cntrb_full_name': 'Sean P. Goggins'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 010005cb-c700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a821d4f0>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0028c1a22755d86641331fcc25cf11ca184ee300
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0028c1a22755d86641331fcc25cf11ca184ee300
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010004fc-3f00-0000-0000-000000000000'), 'cntrb_login': 'sanacl', 'cntrb_created_at': '2010-07-08T18:53:20Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Bitergia', 'cntrb_location': 'Alcorcón', 'cntrb_canonical': '[email protected]', 'gh_user_id': 326719, 'gh_login': 'sanacl', 'gh_url': 'https://api.github.com/users/sanacl', 'gh_html_url': 'https://github.com/sanacl', 'gh_node_id': 'MDQ6VXNlcjMyNjcxOQ==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/326719?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sanacl/followers', 'gh_following_url': 'https://api.github.com/users/sanacl/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sanacl/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sanacl/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sanacl/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sanacl/orgs', 'gh_repos_url': 'https://api.github.com/users/sanacl/repos', 'gh_events_url': 'https://api.github.com/users/sanacl/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sanacl/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-12T16:34:16Z', 'cntrb_full_name': 'Luis Cañas-Díaz'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 010004fc-3f00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8af9820>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 05d9a0ada9262dc4e6926f8ca68b2f9a96963ae2
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/05d9a0ada9262dc4e6926f8ca68b2f9a96963ae2
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101eeec-0600-0000-0000-000000000000'), 'cntrb_login': 'oindrillac', 'cntrb_created_at': '2017-10-01T15:06:47Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@AICoE and @operate-first at Red Hat', 'cntrb_location': 'Boston ', 'cntrb_canonical': '[email protected]', 'gh_user_id': 32435206, 'gh_login': 'oindrillac', 'gh_url': 'https://api.github.com/users/oindrillac', 'gh_html_url': 'https://github.com/oindrillac', 'gh_node_id': 'MDQ6VXNlcjMyNDM1MjA2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/32435206?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/oindrillac/followers', 'gh_following_url': 'https://api.github.com/users/oindrillac/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/oindrillac/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/oindrillac/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/oindrillac/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/oindrillac/orgs', 'gh_repos_url': 'https://api.github.com/users/oindrillac/repos', 'gh_events_url': 'https://api.github.com/users/oindrillac/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/oindrillac/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T07:31:27Z', 'cntrb_full_name': 'Oindrilla Chatterjee'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101eeec-0600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87d2610>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0f27e1c7488a9f12f0bd0283af06cc9b45d3306a
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/0f27e1c7488a9f12f0bd0283af06cc9b45d3306a
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000278-6000-0000-0000-000000000000'), 'cntrb_login': 'durandom', 'cntrb_created_at': '2009-12-04T13:09:02Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Red Hat', 'cntrb_location': 'Kiel, Germany', 'cntrb_canonical': '[email protected]', 'gh_user_id': 161888, 'gh_login': 'durandom', 'gh_url': 'https://api.github.com/users/durandom', 'gh_html_url': 'https://github.com/durandom', 'gh_node_id': 'MDQ6VXNlcjE2MTg4OA==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/161888?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/durandom/followers', 'gh_following_url': 'https://api.github.com/users/durandom/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/durandom/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/durandom/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/durandom/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/durandom/orgs', 'gh_repos_url': 'https://api.github.com/users/durandom/repos', 'gh_events_url': 'https://api.github.com/users/durandom/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/durandom/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-17T17:09:21Z', 'cntrb_full_name': 'Marcel Hild'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000278-6000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8577670>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01006369-7b00-0000-0000-000000000000'), 'cntrb_login': 'valeriocos', 'cntrb_created_at': '2014-01-27T14:30:30Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Eventbrite', 'cntrb_location': 'Madrid, Spain', 'cntrb_canonical': '[email protected]', 'gh_user_id': 6515067, 'gh_login': 'valeriocos', 'gh_url': 'https://api.github.com/users/valeriocos', 'gh_html_url': 'https://github.com/valeriocos', 'gh_node_id': 'MDQ6VXNlcjY1MTUwNjc=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/6515067?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/valeriocos/followers', 'gh_following_url': 'https://api.github.com/users/valeriocos/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/valeriocos/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/valeriocos/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/valeriocos/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/valeriocos/orgs', 'gh_repos_url': 'https://api.github.com/users/valeriocos/repos', 'gh_events_url': 'https://api.github.com/users/valeriocos/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/valeriocos/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-22T07:55:51Z', 'cntrb_full_name': 'valerio'}
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO cntrb_id 01006369-7b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7fd5880>] has type <class 'list'>
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:16 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Alvaro del Castillo', 'hash': '05d9a0ada9262dc4e6926f8ca68b2f9a96963ae2', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0d11b347a2ff527ccce256bcd422f9f1e62a4d07
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/0d11b347a2ff527ccce256bcd422f9f1e62a4d07
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010177f7-2400-0000-0000-000000000000'), 'cntrb_login': 'IsaacMilarky', 'cntrb_created_at': '2016-12-18T19:35:40Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 24639268, 'gh_login': 'IsaacMilarky', 'gh_url': 'https://api.github.com/users/IsaacMilarky', 'gh_html_url': 'https://github.com/IsaacMilarky', 'gh_node_id': 'MDQ6VXNlcjI0NjM5MjY4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/24639268?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/IsaacMilarky/followers', 'gh_following_url': 'https://api.github.com/users/IsaacMilarky/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/IsaacMilarky/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/IsaacMilarky/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/IsaacMilarky/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/IsaacMilarky/orgs', 'gh_repos_url': 'https://api.github.com/users/IsaacMilarky/repos', 'gh_events_url': 'https://api.github.com/users/IsaacMilarky/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/IsaacMilarky/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-29T17:34:46Z', 'cntrb_full_name': 'Isaac Milarsky'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO cntrb_id 010177f7-2400-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7de9af0>] has type <class 'list'>
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000278-6000-0000-0000-000000000000'), 'cntrb_login': 'durandom', 'cntrb_created_at': '2009-12-04T13:09:02Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Red Hat', 'cntrb_location': 'Kiel, Germany', 'cntrb_canonical': '[email protected]', 'gh_user_id': 161888, 'gh_login': 'durandom', 'gh_url': 'https://api.github.com/users/durandom', 'gh_html_url': 'https://github.com/durandom', 'gh_node_id': 'MDQ6VXNlcjE2MTg4OA==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/161888?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/durandom/followers', 'gh_following_url': 'https://api.github.com/users/durandom/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/durandom/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/durandom/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/durandom/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/durandom/orgs', 'gh_repos_url': 'https://api.github.com/users/durandom/repos', 'gh_events_url': 'https://api.github.com/users/durandom/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/durandom/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-17T17:09:21Z', 'cntrb_full_name': 'Marcel Hild'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000278-6000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a3521700>] has type <class 'list'>
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 002b7f992e9afbd21a3a5f481ef79fffa992a0f7
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/002b7f992e9afbd21a3a5f481ef79fffa992a0f7
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0e1eaabd4395b210fcf9531a8b8425cf5de2ba6d
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/0e1eaabd4395b210fcf9531a8b8425cf5de2ba6d
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Alvaro del Castillo'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010071ba-d200-0000-0000-000000000000'), 'cntrb_login': 'tumido', 'cntrb_created_at': '2014-04-30T20:36:34Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': 'Czech Republic', 'cntrb_canonical': '[email protected]', 'gh_user_id': 7453394, 'gh_login': 'tumido', 'gh_url': 'https://api.github.com/users/tumido', 'gh_html_url': 'https://github.com/tumido', 'gh_node_id': 'MDQ6VXNlcjc0NTMzOTQ=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/7453394?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/tumido/followers', 'gh_following_url': 'https://api.github.com/users/tumido/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/tumido/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/tumido/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/tumido/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/tumido/orgs', 'gh_repos_url': 'https://api.github.com/users/tumido/repos', 'gh_events_url': 'https://api.github.com/users/tumido/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/tumido/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-23T12:21:31Z', 'cntrb_full_name': 'Tom Coufal'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO cntrb_id 010071ba-d200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87dfa60>] has type <class 'list'>
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1ead8b4320e1fd8d5c7d89203748de5ccc6a71c3
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/1ead8b4320e1fd8d5c7d89203748de5ccc6a71c3
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'isaacmilarky', 'hash': '002b7f992e9afbd21a3a5f481ef79fffa992a0f7', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': 'avomakesart', 'id': 40504240, 'node_id': 'MDQ6VXNlcjQwNTA0MjQw', 'avatar_url': 'https://avatars.githubusercontent.com/u/40504240?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/avomakesart', 'html_url': 'https://github.com/avomakesart', 'followers_url': 'https://api.github.com/users/avomakesart/followers', 'following_url': 'https://api.github.com/users/avomakesart/following{/other_user}', 'gists_url': 'https://api.github.com/users/avomakesart/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/avomakesart/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/avomakesart/subscriptions', 'organizations_url': 'https://api.github.com/users/avomakesart/orgs', 'repos_url': 'https://api.github.com/users/avomakesart/repos', 'events_url': 'https://api.github.com/users/avomakesart/events{/privacy}', 'received_events_url': 'https://api.github.com/users/avomakesart/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010089d4-5600-0000-0000-000000000000'), 'cntrb_login': 'mafesan', 'cntrb_created_at': '2014-10-06T07:31:13Z', 'cntrb_email': None, 'cntrb_company': 'Bitergia', 'cntrb_location': 'Madrid, Spain', 'cntrb_canonical': '[email protected]', 'gh_user_id': 9032790, 'gh_login': 'mafesan', 'gh_url': 'https://api.github.com/users/mafesan', 'gh_html_url': 'https://github.com/mafesan', 'gh_node_id': 'MDQ6VXNlcjkwMzI3OTA=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/9032790?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/mafesan/followers', 'gh_following_url': 'https://api.github.com/users/mafesan/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/mafesan/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/mafesan/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/mafesan/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/mafesan/orgs', 'gh_repos_url': 'https://api.github.com/users/mafesan/repos', 'gh_events_url': 'https://api.github.com/users/mafesan/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/mafesan/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-04T12:19:52Z', 'cntrb_full_name': 'Miguel Ángel Fernández'}
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO cntrb_id 010089d4-5600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a821d460>] has type <class 'list'>
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1077a9fc2eac46c92391202da01d8cdf8460af36
2023-01-12 12:24:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/1077a9fc2eac46c92391202da01d8cdf8460af36
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103a4a6-3300-0000-0000-000000000000'), 'cntrb_login': 'ipolonsk', 'cntrb_created_at': '2020-02-16T19:04:02Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 61122099, 'gh_login': 'ipolonsk', 'gh_url': 'https://api.github.com/users/ipolonsk', 'gh_html_url': 'https://github.com/ipolonsk', 'gh_node_id': 'MDQ6VXNlcjYxMTIyMDk5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/61122099?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ipolonsk/followers', 'gh_following_url': 'https://api.github.com/users/ipolonsk/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ipolonsk/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ipolonsk/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ipolonsk/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ipolonsk/orgs', 'gh_repos_url': 'https://api.github.com/users/ipolonsk/repos', 'gh_events_url': 'https://api.github.com/users/ipolonsk/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ipolonsk/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-10-10T07:37:50Z', 'cntrb_full_name': 'Ilana Polonsky'}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'isaacmilarky'}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103a4a6-3300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a821dd00>] has type <class 'list'>
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Couldn't resolve name url with given data. Reason:
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0032a5ad92449df87e060391a502f7c65559c249
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0032a5ad92449df87e060391a502f7c65559c249
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01026a0b-b000-0000-0000-000000000000'), 'cntrb_login': 'avomakesart', 'cntrb_created_at': '2018-06-22T21:30:22Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@bol.com', 'cntrb_location': 'Utrecht, Netherlands', 'cntrb_canonical': '[email protected]', 'gh_user_id': 40504240, 'gh_login': 'avomakesart', 'gh_url': 'https://api.github.com/users/avomakesart', 'gh_html_url': 'https://github.com/avomakesart', 'gh_node_id': 'MDQ6VXNlcjQwNTA0MjQw', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/40504240?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/avomakesart/followers', 'gh_following_url': 'https://api.github.com/users/avomakesart/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/avomakesart/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/avomakesart/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/avomakesart/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/avomakesart/orgs', 'gh_repos_url': 'https://api.github.com/users/avomakesart/repos', 'gh_events_url': 'https://api.github.com/users/avomakesart/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/avomakesart/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T13:33:21Z', 'cntrb_full_name': 'Alvaro Castillo '}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO cntrb_id 01026a0b-b000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87eb340>] has type <class 'list'>
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0ee0e66cb184f0468cc3c807faab291892ccde47
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/0ee0e66cb184f0468cc3c807faab291892ccde47
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0ecfeb26dc9661506f21f3309bbc17d6f1190d32
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/0ecfeb26dc9661506f21f3309bbc17d6f1190d32
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01004496-3a00-0000-0000-000000000000'), 'cntrb_login': 'MichaelClifford', 'cntrb_created_at': '2013-05-22T02:10:44Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'United States', 'cntrb_canonical': '[email protected]', 'gh_user_id': 4494906, 'gh_login': 'MichaelClifford', 'gh_url': 'https://api.github.com/users/MichaelClifford', 'gh_html_url': 'https://github.com/MichaelClifford', 'gh_node_id': 'MDQ6VXNlcjQ0OTQ5MDY=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/4494906?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/MichaelClifford/followers', 'gh_following_url': 'https://api.github.com/users/MichaelClifford/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/MichaelClifford/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/MichaelClifford/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/MichaelClifford/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/MichaelClifford/orgs', 'gh_repos_url': 'https://api.github.com/users/MichaelClifford/repos', 'gh_events_url': 'https://api.github.com/users/MichaelClifford/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/MichaelClifford/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T15:23:45Z', 'cntrb_full_name': 'Michael Clifford'}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO cntrb_id 01004496-3a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a2ff4310>] has type <class 'list'>
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1fd796368ab451d7f58395535dc4b04b13a8073d
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/1fd796368ab451d7f58395535dc4b04b13a8073d
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01018185-2b00-0000-0000-000000000000'), 'cntrb_login': 'vchrombie', 'cntrb_created_at': '2017-01-21T12:45:08Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@chaoss ex- @bitergia @amfoss', 'cntrb_location': 'Brooklyn, NY', 'cntrb_canonical': '[email protected]', 'gh_user_id': 25265451, 'gh_login': 'vchrombie', 'gh_url': 'https://api.github.com/users/vchrombie', 'gh_html_url': 'https://github.com/vchrombie', 'gh_node_id': 'MDQ6VXNlcjI1MjY1NDUx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/25265451?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/vchrombie/followers', 'gh_following_url': 'https://api.github.com/users/vchrombie/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/vchrombie/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/vchrombie/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/vchrombie/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/vchrombie/orgs', 'gh_repos_url': 'https://api.github.com/users/vchrombie/repos', 'gh_events_url': 'https://api.github.com/users/vchrombie/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/vchrombie/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-08T18:55:42Z', 'cntrb_full_name': 'Venu Vardhan Reddy Tekula'}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'J. Manrique Lopez de la Fuente', 'hash': '0ecfeb26dc9661506f21f3309bbc17d6f1190d32', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO cntrb_id 01018185-2b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87d2220>] has type <class 'list'>
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 16d309a5b2d2c2c582615f77ecf23a1c4f819525
2023-01-12 12:24:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/16d309a5b2d2c2c582615f77ecf23a1c4f819525
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101807a-5b00-0000-0000-000000000000'), 'cntrb_login': 'mrsaicharan1', 'cntrb_created_at': '2017-01-18T09:49:30Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Plano, Texas', 'cntrb_canonical': '[email protected]', 'gh_user_id': 25197147, 'gh_login': 'mrsaicharan1', 'gh_url': 'https://api.github.com/users/mrsaicharan1', 'gh_html_url': 'https://github.com/mrsaicharan1', 'gh_node_id': 'MDQ6VXNlcjI1MTk3MTQ3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/25197147?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/mrsaicharan1/followers', 'gh_following_url': 'https://api.github.com/users/mrsaicharan1/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/mrsaicharan1/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/mrsaicharan1/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/mrsaicharan1/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/mrsaicharan1/orgs', 'gh_repos_url': 'https://api.github.com/users/mrsaicharan1/repos', 'gh_events_url': 'https://api.github.com/users/mrsaicharan1/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/mrsaicharan1/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-04-06T17:41:35Z', 'cntrb_full_name': 'Saicharan Reddy'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010000c7-9700-0000-0000-000000000000'), 'cntrb_login': 'martinpovolny', 'cntrb_created_at': '2009-02-02T12:17:11Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Red Hat', 'cntrb_location': 'Brno, Czech Republic', 'cntrb_canonical': '[email protected]', 'gh_user_id': 51095, 'gh_login': 'martinpovolny', 'gh_url': 'https://api.github.com/users/martinpovolny', 'gh_html_url': 'https://github.com/martinpovolny', 'gh_node_id': 'MDQ6VXNlcjUxMDk1', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/51095?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/martinpovolny/followers', 'gh_following_url': 'https://api.github.com/users/martinpovolny/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/martinpovolny/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/martinpovolny/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/martinpovolny/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/martinpovolny/orgs', 'gh_repos_url': 'https://api.github.com/users/martinpovolny/repos', 'gh_events_url': 'https://api.github.com/users/martinpovolny/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/martinpovolny/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-08T05:40:49Z', 'cntrb_full_name': 'Martin Povolny'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'J. Manrique Lopez de la Fuente'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101807a-5b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8aca700>] has type <class 'list'>
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 010000c7-9700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8450e50>] has type <class 'list'>
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 14128dfc115f338708999035ab7e8ac0278f8533
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/14128dfc115f338708999035ab7e8ac0278f8533
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100700b-fb00-0000-0000-000000000000'), 'cntrb_login': 'hemajv', 'cntrb_created_at': '2014-04-19T01:15:06Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@AICoE, @operate-first at Red Hat', 'cntrb_location': 'Boston', 'cntrb_canonical': '[email protected]', 'gh_user_id': 7343099, 'gh_login': 'hemajv', 'gh_url': 'https://api.github.com/users/hemajv', 'gh_html_url': 'https://github.com/hemajv', 'gh_node_id': 'MDQ6VXNlcjczNDMwOTk=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/7343099?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/hemajv/followers', 'gh_following_url': 'https://api.github.com/users/hemajv/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/hemajv/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/hemajv/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/hemajv/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/hemajv/orgs', 'gh_repos_url': 'https://api.github.com/users/hemajv/repos', 'gh_events_url': 'https://api.github.com/users/hemajv/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/hemajv/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-04T12:45:07Z', 'cntrb_full_name': 'Hema Veeradhi'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100700b-fb00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a850dac0>] has type <class 'list'>
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 29211658b82ebb628adddeb9c10bc26fac7f6ae4
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/29211658b82ebb628adddeb9c10bc26fac7f6ae4
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': 'jorgejavierfm', 'id': 13924249, 'node_id': 'MDQ6VXNlcjEzOTI0MjQ5', 'avatar_url': 'https://avatars.githubusercontent.com/u/13924249?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jorgejavierfm', 'html_url': 'https://github.com/jorgejavierfm', 'followers_url': 'https://api.github.com/users/jorgejavierfm/followers', 'following_url': 'https://api.github.com/users/jorgejavierfm/following{/other_user}', 'gists_url': 'https://api.github.com/users/jorgejavierfm/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jorgejavierfm/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jorgejavierfm/subscriptions', 'organizations_url': 'https://api.github.com/users/jorgejavierfm/orgs', 'repos_url': 'https://api.github.com/users/jorgejavierfm/repos', 'events_url': 'https://api.github.com/users/jorgejavierfm/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jorgejavierfm/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010005cb-c700-0000-0000-000000000000'), 'cntrb_login': 'sgoggins', 'cntrb_created_at': '2010-08-29T16:25:48Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Missouri & Linux Foundation CHAOSS Working Group', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 379847, 'gh_login': 'sgoggins', 'gh_url': 'https://api.github.com/users/sgoggins', 'gh_html_url': 'https://github.com/sgoggins', 'gh_node_id': 'MDQ6VXNlcjM3OTg0Nw==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/379847?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sgoggins/followers', 'gh_following_url': 'https://api.github.com/users/sgoggins/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sgoggins/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sgoggins/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sgoggins/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sgoggins/orgs', 'gh_repos_url': 'https://api.github.com/users/sgoggins/repos', 'gh_events_url': 'https://api.github.com/users/sgoggins/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sgoggins/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:26:13Z', 'cntrb_full_name': 'Sean P. Goggins'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100a072-4400-0000-0000-000000000000'), 'cntrb_login': 'jjmerchante', 'cntrb_created_at': '2015-01-13T12:16:17Z', 'cntrb_email': None, 'cntrb_company': 'URJC', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 10515012, 'gh_login': 'jjmerchante', 'gh_url': 'https://api.github.com/users/jjmerchante', 'gh_html_url': 'https://github.com/jjmerchante', 'gh_node_id': 'MDQ6VXNlcjEwNTE1MDEy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/10515012?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jjmerchante/followers', 'gh_following_url': 'https://api.github.com/users/jjmerchante/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jjmerchante/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jjmerchante/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jjmerchante/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jjmerchante/orgs', 'gh_repos_url': 'https://api.github.com/users/jjmerchante/repos', 'gh_events_url': 'https://api.github.com/users/jjmerchante/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jjmerchante/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-08-08T07:17:00Z', 'cntrb_full_name': 'Jose Javier Merchante'}
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 010005cb-c700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87d2b20>] has type <class 'list'>
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100a072-4400-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a0c12610>] has type <class 'list'>
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 19459aed6581de7e984ee325e01fc9885b25d68b
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/19459aed6581de7e984ee325e01fc9885b25d68b
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 00503961a30fc380ab27c612a3639d6f43ac8489
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/00503961a30fc380ab27c612a3639d6f43ac8489
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:19 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Anand Sanmukhani', 'hash': '14128dfc115f338708999035ab7e8ac0278f8533', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100d477-9900-0000-0000-000000000000'), 'cntrb_login': 'jorgejavierfm', 'cntrb_created_at': '2015-08-23T01:17:00Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Miami', 'cntrb_canonical': '[email protected]', 'gh_user_id': 13924249, 'gh_login': 'jorgejavierfm', 'gh_url': 'https://api.github.com/users/jorgejavierfm', 'gh_html_url': 'https://github.com/jorgejavierfm', 'gh_node_id': 'MDQ6VXNlcjEzOTI0MjQ5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/13924249?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jorgejavierfm/followers', 'gh_following_url': 'https://api.github.com/users/jorgejavierfm/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jorgejavierfm/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jorgejavierfm/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jorgejavierfm/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jorgejavierfm/orgs', 'gh_repos_url': 'https://api.github.com/users/jorgejavierfm/repos', 'gh_events_url': 'https://api.github.com/users/jorgejavierfm/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jorgejavierfm/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-03-22T16:26:17Z', 'cntrb_full_name': 'Jorge J. de la Fuente'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100d477-9900-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76dac10>] has type <class 'list'>
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 3eba26a950d6548c2618c3034f231de1bc155810
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/3eba26a950d6548c2618c3034f231de1bc155810
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Anand Sanmukhani'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: 41898282+github-actions[bot]@users.noreply.github.com
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01027f51-2a00-0000-0000-000000000000'), 'cntrb_login': 'github-actions[bot]', 'cntrb_created_at': '2018-07-30T09:30:16Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '41898282+github-actions[bot]@users.noreply.github.com', 'gh_user_id': 41898282, 'gh_login': 'github-actions[bot]', 'gh_url': 'https://api.github.com/users/github-actions%5Bbot%5D', 'gh_html_url': 'https://github.com/apps/github-actions', 'gh_node_id': 'MDM6Qm90NDE4OTgyODI=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/in/15368?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/github-actions%5Bbot%5D/followers', 'gh_following_url': 'https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/github-actions%5Bbot%5D/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/github-actions%5Bbot%5D/orgs', 'gh_repos_url': 'https://api.github.com/users/github-actions%5Bbot%5D/repos', 'gh_events_url': 'https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/github-actions%5Bbot%5D/received_events', 'gh_type': 'Bot', 'gh_site_admin': False, 'cntrb_last_used': '2018-09-18T23:02:41Z', 'cntrb_full_name': 'github-actions[bot]'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 01027f51-2a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: 41898282+github-actions[bot]@users.noreply.github.com
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a2fdd850>] has type <class 'list'>
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Updating now resolved email 41898282+github-actions[bot]@users.noreply.github.com
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': '4n4nd', 'id': 22333506, 'node_id': 'MDQ6VXNlcjIyMzMzNTA2', 'avatar_url': 'https://avatars.githubusercontent.com/u/22333506?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/4n4nd', 'html_url': 'https://github.com/4n4nd', 'followers_url': 'https://api.github.com/users/4n4nd/followers', 'following_url': 'https://api.github.com/users/4n4nd/following{/other_user}', 'gists_url': 'https://api.github.com/users/4n4nd/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/4n4nd/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/4n4nd/subscriptions', 'organizations_url': 'https://api.github.com/users/4n4nd/orgs', 'repos_url': 'https://api.github.com/users/4n4nd/repos', 'events_url': 'https://api.github.com/users/4n4nd/events{/privacy}', 'received_events_url': 'https://api.github.com/users/4n4nd/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01005604-7100-0000-0000-000000000000'), 'cntrb_login': 'zhquan', 'cntrb_created_at': '2013-10-08T10:39:58Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Bitergia', 'cntrb_location': 'Madrid', 'cntrb_canonical': '[email protected]', 'gh_user_id': 5637233, 'gh_login': 'zhquan', 'gh_url': 'https://api.github.com/users/zhquan', 'gh_html_url': 'https://github.com/zhquan', 'gh_node_id': 'MDQ6VXNlcjU2MzcyMzM=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/5637233?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/zhquan/followers', 'gh_following_url': 'https://api.github.com/users/zhquan/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/zhquan/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/zhquan/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/zhquan/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/zhquan/orgs', 'gh_repos_url': 'https://api.github.com/users/zhquan/repos', 'gh_events_url': 'https://api.github.com/users/zhquan/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/zhquan/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-02T09:23:36Z', 'cntrb_full_name': 'Quan Zhou'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 01005604-7100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f7485768430>] has type <class 'list'>
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 265ba9a4f3026092255decdce765f02fae4d3409
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/265ba9a4f3026092255decdce765f02fae4d3409
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101eeec-0600-0000-0000-000000000000'), 'cntrb_login': 'oindrillac', 'cntrb_created_at': '2017-10-01T15:06:47Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@AICoE and @operate-first at Red Hat', 'cntrb_location': 'Boston ', 'cntrb_canonical': '[email protected]', 'gh_user_id': 32435206, 'gh_login': 'oindrillac', 'gh_url': 'https://api.github.com/users/oindrillac', 'gh_html_url': 'https://github.com/oindrillac', 'gh_node_id': 'MDQ6VXNlcjMyNDM1MjA2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/32435206?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/oindrillac/followers', 'gh_following_url': 'https://api.github.com/users/oindrillac/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/oindrillac/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/oindrillac/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/oindrillac/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/oindrillac/orgs', 'gh_repos_url': 'https://api.github.com/users/oindrillac/repos', 'gh_events_url': 'https://api.github.com/users/oindrillac/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/oindrillac/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T07:31:27Z', 'cntrb_full_name': 'Oindrilla Chatterjee'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101eeec-0600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a897d580>] has type <class 'list'>
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101e100-7300-0000-0000-000000000000'), 'cntrb_login': 'ccarterlandis', 'cntrb_created_at': '2017-08-31T22:01:37Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@Gusto', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 31522931, 'gh_login': 'ccarterlandis', 'gh_url': 'https://api.github.com/users/ccarterlandis', 'gh_html_url': 'https://github.com/ccarterlandis', 'gh_node_id': 'MDQ6VXNlcjMxNTIyOTMx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/31522931?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ccarterlandis/followers', 'gh_following_url': 'https://api.github.com/users/ccarterlandis/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ccarterlandis/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ccarterlandis/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ccarterlandis/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ccarterlandis/orgs', 'gh_repos_url': 'https://api.github.com/users/ccarterlandis/repos', 'gh_events_url': 'https://api.github.com/users/ccarterlandis/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ccarterlandis/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T17:00:36Z', 'cntrb_full_name': 'Carter Landis'}
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 5ac80d639f93df06373f6645c0e5e3c85be0fdde
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/5ac80d639f93df06373f6645c0e5e3c85be0fdde
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101e100-7300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84d8fd0>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010154c8-4200-0000-0000-000000000000'), 'cntrb_login': '4n4nd', 'cntrb_created_at': '2016-09-20T23:56:14Z', 'cntrb_email': None, 'cntrb_company': 'Microsoft', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 22333506, 'gh_login': '4n4nd', 'gh_url': 'https://api.github.com/users/4n4nd', 'gh_html_url': 'https://github.com/4n4nd', 'gh_node_id': 'MDQ6VXNlcjIyMzMzNTA2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/22333506?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/4n4nd/followers', 'gh_following_url': 'https://api.github.com/users/4n4nd/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/4n4nd/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/4n4nd/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/4n4nd/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/4n4nd/orgs', 'gh_repos_url': 'https://api.github.com/users/4n4nd/repos', 'gh_events_url': 'https://api.github.com/users/4n4nd/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/4n4nd/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-11T10:24:35Z', 'cntrb_full_name': 'Anand Sanmukhani'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100a072-4400-0000-0000-000000000000'), 'cntrb_login': 'jjmerchante', 'cntrb_created_at': '2015-01-13T12:16:17Z', 'cntrb_email': None, 'cntrb_company': 'URJC', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 10515012, 'gh_login': 'jjmerchante', 'gh_url': 'https://api.github.com/users/jjmerchante', 'gh_html_url': 'https://github.com/jjmerchante', 'gh_node_id': 'MDQ6VXNlcjEwNTE1MDEy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/10515012?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jjmerchante/followers', 'gh_following_url': 'https://api.github.com/users/jjmerchante/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jjmerchante/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jjmerchante/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jjmerchante/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jjmerchante/orgs', 'gh_repos_url': 'https://api.github.com/users/jjmerchante/repos', 'gh_events_url': 'https://api.github.com/users/jjmerchante/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jjmerchante/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-08-08T07:17:00Z', 'cntrb_full_name': 'Jose Javier Merchante'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0055d5e5eb2f3b14b16482bb44fd831742b2fbb1
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100a072-4400-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87f1160>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0055d5e5eb2f3b14b16482bb44fd831742b2fbb1
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 010154c8-4200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a78c3e20>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 54897b33c0e78e346d28b00556d7f3a55a9bcf19
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/54897b33c0e78e346d28b00556d7f3a55a9bcf19
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100a665-8700-0000-0000-000000000000'), 'cntrb_login': 'HumairAK', 'cntrb_created_at': '2015-02-08T05:31:38Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 10904967, 'gh_login': 'HumairAK', 'gh_url': 'https://api.github.com/users/HumairAK', 'gh_html_url': 'https://github.com/HumairAK', 'gh_node_id': 'MDQ6VXNlcjEwOTA0OTY3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/10904967?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/HumairAK/followers', 'gh_following_url': 'https://api.github.com/users/HumairAK/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/HumairAK/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/HumairAK/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/HumairAK/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/HumairAK/orgs', 'gh_repos_url': 'https://api.github.com/users/HumairAK/repos', 'gh_events_url': 'https://api.github.com/users/HumairAK/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/HumairAK/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T17:04:42Z', 'cntrb_full_name': 'Humair Khan'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100a665-8700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a2f34f70>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1ccda51aa537751014059d1b45cff687a15fad65
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/1ccda51aa537751014059d1b45cff687a15fad65
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000fdd-4d00-0000-0000-000000000000'), 'cntrb_login': 'jgbarah', 'cntrb_created_at': '2011-09-09T21:47:40Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 1039693, 'gh_login': 'jgbarah', 'gh_url': 'https://api.github.com/users/jgbarah', 'gh_html_url': 'https://github.com/jgbarah', 'gh_node_id': 'MDQ6VXNlcjEwMzk2OTM=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/1039693?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jgbarah/followers', 'gh_following_url': 'https://api.github.com/users/jgbarah/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jgbarah/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jgbarah/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jgbarah/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jgbarah/orgs', 'gh_repos_url': 'https://api.github.com/users/jgbarah/repos', 'gh_events_url': 'https://api.github.com/users/jgbarah/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jgbarah/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-15T15:39:10Z', 'cntrb_full_name': 'Jesus M. Gonzalez-Barahona'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000fdd-4d00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8c23a00>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 6a569a0926382bd14af2bf597a40a54e2f09ecf9
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-perceval-opnfv/commits/6a569a0926382bd14af2bf597a40a54e2f09ecf9
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01043bed-8300-0000-0000-000000000000'), 'cntrb_login': 'margarethaley', 'cntrb_created_at': '2020-09-09T18:12:26Z', 'cntrb_email': None, 'cntrb_company': 'College of the Holy Cross', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 71036291, 'gh_login': 'margarethaley', 'gh_url': 'https://api.github.com/users/margarethaley', 'gh_html_url': 'https://github.com/margarethaley', 'gh_node_id': 'MDQ6VXNlcjcxMDM2Mjkx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/71036291?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/margarethaley/followers', 'gh_following_url': 'https://api.github.com/users/margarethaley/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/margarethaley/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/margarethaley/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/margarethaley/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/margarethaley/orgs', 'gh_repos_url': 'https://api.github.com/users/margarethaley/repos', 'gh_events_url': 'https://api.github.com/users/margarethaley/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/margarethaley/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-04-15T13:09:51Z', 'cntrb_full_name': 'Margaret Haley'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 01043bed-8300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8208730>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 62295cfc17a4b6a6a71810bce1ad09e8dc8ce623
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/62295cfc17a4b6a6a71810bce1ad09e8dc8ce623
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01013cd8-ae00-0000-0000-000000000000'), 'cntrb_login': 'gabe-heim', 'cntrb_created_at': '2016-08-01T04:50:19Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Austin, TX', 'cntrb_canonical': '[email protected]', 'gh_user_id': 20764846, 'gh_login': 'gabe-heim', 'gh_url': 'https://api.github.com/users/gabe-heim', 'gh_html_url': 'https://github.com/gabe-heim', 'gh_node_id': 'MDQ6VXNlcjIwNzY0ODQ2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/20764846?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/gabe-heim/followers', 'gh_following_url': 'https://api.github.com/users/gabe-heim/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/gabe-heim/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/gabe-heim/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/gabe-heim/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/gabe-heim/orgs', 'gh_repos_url': 'https://api.github.com/users/gabe-heim/repos', 'gh_events_url': 'https://api.github.com/users/gabe-heim/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/gabe-heim/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-25T16:12:06Z', 'cntrb_full_name': 'Gabe Heim'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010011fa-c100-0000-0000-000000000000'), 'cntrb_login': 'jsmanrique', 'cntrb_created_at': '2011-11-07T16:00:27Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@Inditex', 'cntrb_location': 'Northern Spain', 'cntrb_canonical': '[email protected]', 'gh_user_id': 1178305, 'gh_login': 'jsmanrique', 'gh_url': 'https://api.github.com/users/jsmanrique', 'gh_html_url': 'https://github.com/jsmanrique', 'gh_node_id': 'MDQ6VXNlcjExNzgzMDU=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/1178305?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jsmanrique/followers', 'gh_following_url': 'https://api.github.com/users/jsmanrique/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jsmanrique/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jsmanrique/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jsmanrique/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jsmanrique/orgs', 'gh_repos_url': 'https://api.github.com/users/jsmanrique/repos', 'gh_events_url': 'https://api.github.com/users/jsmanrique/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jsmanrique/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T16:39:08Z', 'cntrb_full_name': 'Manrique Lopez'}
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 010011fa-c100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a306ca90>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 01013cd8-ae00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8d66340>] has type <class 'list'>
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 005820761d12aa0222b4cc42945f013f6843681b
2023-01-12 12:24:21 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/005820761d12aa0222b4cc42945f013f6843681b
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: dc451ac55b89beb7398afa4f39f9b1a3a68945b5
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/grimoirelab-hatstall/commits/dc451ac55b89beb7398afa4f39f9b1a3a68945b5
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010071ba-d200-0000-0000-000000000000'), 'cntrb_login': 'tumido', 'cntrb_created_at': '2014-04-30T20:36:34Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': 'Czech Republic', 'cntrb_canonical': '[email protected]', 'gh_user_id': 7453394, 'gh_login': 'tumido', 'gh_url': 'https://api.github.com/users/tumido', 'gh_html_url': 'https://github.com/tumido', 'gh_node_id': 'MDQ6VXNlcjc0NTMzOTQ=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/7453394?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/tumido/followers', 'gh_following_url': 'https://api.github.com/users/tumido/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/tumido/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/tumido/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/tumido/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/tumido/orgs', 'gh_repos_url': 'https://api.github.com/users/tumido/repos', 'gh_events_url': 'https://api.github.com/users/tumido/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/tumido/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-23T12:21:31Z', 'cntrb_full_name': 'Tom Coufal'}
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO cntrb_id 010071ba-d200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8c6c7f0>] has type <class 'list'>
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 20c2536f8a43c01d2cd0e7a4ba35ae868f6d6172
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/20c2536f8a43c01d2cd0e7a4ba35ae868f6d6172
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: 49699333+dependabot[bot]@users.noreply.github.com
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102f65a-0500-0000-0000-000000000000'), 'cntrb_login': 'dependabot[bot]', 'cntrb_created_at': '2019-04-16T22:34:25Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '49699333+dependabot[bot]@users.noreply.github.com', 'gh_user_id': 49699333, 'gh_login': 'dependabot[bot]', 'gh_url': 'https://api.github.com/users/dependabot%5Bbot%5D', 'gh_html_url': 'https://github.com/apps/dependabot', 'gh_node_id': 'MDM6Qm90NDk2OTkzMzM=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/in/29110?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/dependabot%5Bbot%5D/followers', 'gh_following_url': 'https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/dependabot%5Bbot%5D/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/dependabot%5Bbot%5D/orgs', 'gh_repos_url': 'https://api.github.com/users/dependabot%5Bbot%5D/repos', 'gh_events_url': 'https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/dependabot%5Bbot%5D/received_events', 'gh_type': 'Bot', 'gh_site_admin': False, 'cntrb_last_used': '2019-05-23T08:22:16Z', 'cntrb_full_name': 'dependabot[bot]'}
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102f65a-0500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Creating alias for email: 49699333+dependabot[bot]@users.noreply.github.com
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84ec6a0>] has type <class 'list'>
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Updating now resolved email 49699333+dependabot[bot]@users.noreply.github.com
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010054b5-be00-0000-0000-000000000000'), 'cntrb_login': 'billburnseh', 'cntrb_created_at': '2013-09-26T17:08:42Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Red Hat Inc', 'cntrb_location': 'New Hampshire, US', 'cntrb_canonical': '[email protected]', 'gh_user_id': 5551550, 'gh_login': 'billburnseh', 'gh_url': 'https://api.github.com/users/billburnseh', 'gh_html_url': 'https://github.com/billburnseh', 'gh_node_id': 'MDQ6VXNlcjU1NTE1NTA=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/5551550?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/billburnseh/followers', 'gh_following_url': 'https://api.github.com/users/billburnseh/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/billburnseh/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/billburnseh/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/billburnseh/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/billburnseh/orgs', 'gh_repos_url': 'https://api.github.com/users/billburnseh/repos', 'gh_events_url': 'https://api.github.com/users/billburnseh/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/billburnseh/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-12-02T14:17:22Z', 'cntrb_full_name': 'Bill Burns'}
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO cntrb_id 010054b5-be00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a803f610>] has type <class 'list'>
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 65c275187b9a1a8c95d0c5d75fd936db3b5ead84
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/65c275187b9a1a8c95d0c5d75fd936db3b5ead84
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103aa24-2600-0000-0000-000000000000'), 'cntrb_login': 'ABrain7710', 'cntrb_created_at': '2020-02-26T00:26:44Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 61482022, 'gh_login': 'ABrain7710', 'gh_url': 'https://api.github.com/users/ABrain7710', 'gh_html_url': 'https://github.com/ABrain7710', 'gh_node_id': 'MDQ6VXNlcjYxNDgyMDIy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/61482022?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ABrain7710/followers', 'gh_following_url': 'https://api.github.com/users/ABrain7710/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ABrain7710/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ABrain7710/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ABrain7710/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ABrain7710/orgs', 'gh_repos_url': 'https://api.github.com/users/ABrain7710/repos', 'gh_events_url': 'https://api.github.com/users/ABrain7710/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ABrain7710/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-11T17:23:02Z', 'cntrb_full_name': 'Andrew Brain'}
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103aa24-2600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a884f430>] has type <class 'list'>
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101715b-f600-0000-0000-000000000000'), 'cntrb_login': 'harshalmittal4', 'cntrb_created_at': '2016-11-27T12:10:00Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@atlassian', 'cntrb_location': 'Roorkee, India', 'cntrb_canonical': '[email protected]', 'gh_user_id': 24206326, 'gh_login': 'harshalmittal4', 'gh_url': 'https://api.github.com/users/harshalmittal4', 'gh_html_url': 'https://github.com/harshalmittal4', 'gh_node_id': 'MDQ6VXNlcjI0MjA2MzI2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/24206326?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/harshalmittal4/followers', 'gh_following_url': 'https://api.github.com/users/harshalmittal4/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/harshalmittal4/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/harshalmittal4/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/harshalmittal4/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/harshalmittal4/orgs', 'gh_repos_url': 'https://api.github.com/users/harshalmittal4/repos', 'gh_events_url': 'https://api.github.com/users/harshalmittal4/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/harshalmittal4/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-13T12:40:19Z', 'cntrb_full_name': 'Harshal Mittal'}
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101715b-f600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f748546b130>] has type <class 'list'>
2023-01-12 12:24:22 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01008d21-d000-0000-0000-000000000000'), 'cntrb_login': 'dlumbrer', 'cntrb_created_at': '2014-10-15T09:13:12Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Spain', 'cntrb_canonical': '[email protected]', 'gh_user_id': 9249232, 'gh_login': 'dlumbrer', 'gh_url': 'https://api.github.com/users/dlumbrer', 'gh_html_url': 'https://github.com/dlumbrer', 'gh_node_id': 'MDQ6VXNlcjkyNDkyMzI=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/9249232?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/dlumbrer/followers', 'gh_following_url': 'https://api.github.com/users/dlumbrer/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/dlumbrer/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/dlumbrer/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/dlumbrer/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/dlumbrer/orgs', 'gh_repos_url': 'https://api.github.com/users/dlumbrer/repos', 'gh_events_url': 'https://api.github.com/users/dlumbrer/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/dlumbrer/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-20T20:56:18Z', 'cntrb_full_name': 'David Moreno Lumbreras'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 01008d21-d000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749e2ea160>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103aa24-2600-0000-0000-000000000000'), 'cntrb_login': 'ABrain7710', 'cntrb_created_at': '2020-02-26T00:26:44Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 61482022, 'gh_login': 'ABrain7710', 'gh_url': 'https://api.github.com/users/ABrain7710', 'gh_html_url': 'https://github.com/ABrain7710', 'gh_node_id': 'MDQ6VXNlcjYxNDgyMDIy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/61482022?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ABrain7710/followers', 'gh_following_url': 'https://api.github.com/users/ABrain7710/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ABrain7710/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ABrain7710/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ABrain7710/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ABrain7710/orgs', 'gh_repos_url': 'https://api.github.com/users/ABrain7710/repos', 'gh_events_url': 'https://api.github.com/users/ABrain7710/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ABrain7710/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-11T17:23:02Z', 'cntrb_full_name': 'Andrew Brain'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01018185-2b00-0000-0000-000000000000'), 'cntrb_login': 'vchrombie', 'cntrb_created_at': '2017-01-21T12:45:08Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@chaoss ex- @bitergia @amfoss', 'cntrb_location': 'Brooklyn, NY', 'cntrb_canonical': '[email protected]', 'gh_user_id': 25265451, 'gh_login': 'vchrombie', 'gh_url': 'https://api.github.com/users/vchrombie', 'gh_html_url': 'https://github.com/vchrombie', 'gh_node_id': 'MDQ6VXNlcjI1MjY1NDUx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/25265451?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/vchrombie/followers', 'gh_following_url': 'https://api.github.com/users/vchrombie/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/vchrombie/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/vchrombie/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/vchrombie/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/vchrombie/orgs', 'gh_repos_url': 'https://api.github.com/users/vchrombie/repos', 'gh_events_url': 'https://api.github.com/users/vchrombie/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/vchrombie/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-08T18:55:42Z', 'cntrb_full_name': 'Venu Vardhan Reddy Tekula'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103aa24-2600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84ecd00>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01055be9-0300-0000-0000-000000000000'), 'cntrb_login': 'schwesig', 'cntrb_created_at': '2021-09-01T09:50:37Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat', 'cntrb_location': 'Germany', 'cntrb_canonical': '[email protected]', 'gh_user_id': 89909507, 'gh_login': 'schwesig', 'gh_url': 'https://api.github.com/users/schwesig', 'gh_html_url': 'https://github.com/schwesig', 'gh_node_id': 'MDQ6VXNlcjg5OTA5NTA3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/89909507?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/schwesig/followers', 'gh_following_url': 'https://api.github.com/users/schwesig/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/schwesig/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/schwesig/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/schwesig/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/schwesig/orgs', 'gh_repos_url': 'https://api.github.com/users/schwesig/repos', 'gh_events_url': 'https://api.github.com/users/schwesig/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/schwesig/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-16T19:19:23Z', 'cntrb_full_name': '\u200b/Thor(sten)?/ Schwesig'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 01018185-2b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749e595190>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 01055be9-0300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8b30220>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:23,513: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[5b17661b-193a-437e-abe8-db972bef6e26] succeeded in 8.992692085999806s: None
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 3e3d1510f7c32f5d3b0661e9a12e7056952e35a2
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/3e3d1510f7c32f5d3b0661e9a12e7056952e35a2
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100880c-9e00-0000-0000-000000000000'), 'cntrb_login': 'Shreyanand', 'cntrb_created_at': '2014-09-25T14:14:47Z', 'cntrb_email': None, 'cntrb_company': 'Red Hat Inc.', 'cntrb_location': 'USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 8916126, 'gh_login': 'Shreyanand', 'gh_url': 'https://api.github.com/users/Shreyanand', 'gh_html_url': 'https://github.com/Shreyanand', 'gh_node_id': 'MDQ6VXNlcjg5MTYxMjY=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/8916126?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Shreyanand/followers', 'gh_following_url': 'https://api.github.com/users/Shreyanand/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Shreyanand/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Shreyanand/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Shreyanand/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Shreyanand/orgs', 'gh_repos_url': 'https://api.github.com/users/Shreyanand/repos', 'gh_events_url': 'https://api.github.com/users/Shreyanand/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Shreyanand/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T12:20:17Z', 'cntrb_full_name': 'Shrey'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100880c-9e00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76a5d90>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 777199912a3cb9ed94ad1c9a68fdebd3c190039f
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/operate-first-twitter/commits/777199912a3cb9ed94ad1c9a68fdebd3c190039f
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010177f7-2400-0000-0000-000000000000'), 'cntrb_login': 'IsaacMilarky', 'cntrb_created_at': '2016-12-18T19:35:40Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 24639268, 'gh_login': 'IsaacMilarky', 'gh_url': 'https://api.github.com/users/IsaacMilarky', 'gh_html_url': 'https://github.com/IsaacMilarky', 'gh_node_id': 'MDQ6VXNlcjI0NjM5MjY4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/24639268?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/IsaacMilarky/followers', 'gh_following_url': 'https://api.github.com/users/IsaacMilarky/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/IsaacMilarky/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/IsaacMilarky/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/IsaacMilarky/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/IsaacMilarky/orgs', 'gh_repos_url': 'https://api.github.com/users/IsaacMilarky/repos', 'gh_events_url': 'https://api.github.com/users/IsaacMilarky/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/IsaacMilarky/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-29T17:34:46Z', 'cntrb_full_name': 'Isaac Milarsky'}
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO cntrb_id 010177f7-2400-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a306c700>] has type <class 'list'>
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 00731972058bba70515c02462cbe459567be7924
2023-01-12 12:24:23 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/00731972058bba70515c02462cbe459567be7924
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01018185-2b00-0000-0000-000000000000'), 'cntrb_login': 'vchrombie', 'cntrb_created_at': '2017-01-21T12:45:08Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@chaoss ex- @bitergia @amfoss', 'cntrb_location': 'Brooklyn, NY', 'cntrb_canonical': '[email protected]', 'gh_user_id': 25265451, 'gh_login': 'vchrombie', 'gh_url': 'https://api.github.com/users/vchrombie', 'gh_html_url': 'https://github.com/vchrombie', 'gh_node_id': 'MDQ6VXNlcjI1MjY1NDUx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/25265451?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/vchrombie/followers', 'gh_following_url': 'https://api.github.com/users/vchrombie/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/vchrombie/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/vchrombie/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/vchrombie/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/vchrombie/orgs', 'gh_repos_url': 'https://api.github.com/users/vchrombie/repos', 'gh_events_url': 'https://api.github.com/users/vchrombie/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/vchrombie/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-08T18:55:42Z', 'cntrb_full_name': 'Venu Vardhan Reddy Tekula'}
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO cntrb_id 01018185-2b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749e595190>] has type <class 'list'>
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:24,315: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[ca42a9a2-3811-4b42-9771-edf03a1bf89a] succeeded in 10.212525199998709s: None
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100700b-fb00-0000-0000-000000000000'), 'cntrb_login': 'hemajv', 'cntrb_created_at': '2014-04-19T01:15:06Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@AICoE, @operate-first at Red Hat', 'cntrb_location': 'Boston', 'cntrb_canonical': '[email protected]', 'gh_user_id': 7343099, 'gh_login': 'hemajv', 'gh_url': 'https://api.github.com/users/hemajv', 'gh_html_url': 'https://github.com/hemajv', 'gh_node_id': 'MDQ6VXNlcjczNDMwOTk=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/7343099?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/hemajv/followers', 'gh_following_url': 'https://api.github.com/users/hemajv/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/hemajv/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/hemajv/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/hemajv/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/hemajv/orgs', 'gh_repos_url': 'https://api.github.com/users/hemajv/repos', 'gh_events_url': 'https://api.github.com/users/hemajv/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/hemajv/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-04T12:45:07Z', 'cntrb_full_name': 'Hema Veeradhi'}
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100700b-fb00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8529700>] has type <class 'list'>
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 8b5816f0f218519bb36b1bd17f940c0c2c97f4c3
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/operate-first/blueprint/commits/8b5816f0f218519bb36b1bd17f940c0c2c97f4c3
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100e4f7-3c00-0000-0000-000000000000'), 'cntrb_login': 'chauhankaranraj', 'cntrb_created_at': '2015-10-06T22:25:22Z', 'cntrb_email': None, 'cntrb_company': 'Amazon Web Services', 'cntrb_location': 'Boston, MA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 15005500, 'gh_login': 'chauhankaranraj', 'gh_url': 'https://api.github.com/users/chauhankaranraj', 'gh_html_url': 'https://github.com/chauhankaranraj', 'gh_node_id': 'MDQ6VXNlcjE1MDA1NTAw', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/15005500?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/chauhankaranraj/followers', 'gh_following_url': 'https://api.github.com/users/chauhankaranraj/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/chauhankaranraj/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/chauhankaranraj/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/chauhankaranraj/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/chauhankaranraj/orgs', 'gh_repos_url': 'https://api.github.com/users/chauhankaranraj/repos', 'gh_events_url': 'https://api.github.com/users/chauhankaranraj/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/chauhankaranraj/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-07T04:07:44Z', 'cntrb_full_name': 'Karanraj Chauhan'}
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100e4f7-3c00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8c6c670>] has type <class 'list'>
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01021550-ba00-0000-0000-000000000000'), 'cntrb_login': 'Nebrethar', 'cntrb_created_at': '2017-12-30T01:03:56Z', 'cntrb_email': None, 'cntrb_company': 'University of Nebraska at Omaha', 'cntrb_location': 'Omaha, NE, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 34951354, 'gh_login': 'Nebrethar', 'gh_url': 'https://api.github.com/users/Nebrethar', 'gh_html_url': 'https://github.com/Nebrethar', 'gh_node_id': 'MDQ6VXNlcjM0OTUxMzU0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/34951354?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Nebrethar/followers', 'gh_following_url': 'https://api.github.com/users/Nebrethar/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Nebrethar/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Nebrethar/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Nebrethar/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Nebrethar/orgs', 'gh_repos_url': 'https://api.github.com/users/Nebrethar/repos', 'gh_events_url': 'https://api.github.com/users/Nebrethar/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Nebrethar/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-06T17:46:00Z', 'cntrb_full_name': 'Matt Cantu Snell'}
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO cntrb_id 01021550-ba00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8736b80>] has type <class 'list'>
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:24 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:24,954: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[63dcd9f8-f3ef-41f5-ad82-6d71247779eb] succeeded in 11.272008066000126s: None
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01013cd8-ae00-0000-0000-000000000000'), 'cntrb_login': 'gabe-heim', 'cntrb_created_at': '2016-08-01T04:50:19Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Austin, TX', 'cntrb_canonical': '[email protected]', 'gh_user_id': 20764846, 'gh_login': 'gabe-heim', 'gh_url': 'https://api.github.com/users/gabe-heim', 'gh_html_url': 'https://github.com/gabe-heim', 'gh_node_id': 'MDQ6VXNlcjIwNzY0ODQ2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/20764846?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/gabe-heim/followers', 'gh_following_url': 'https://api.github.com/users/gabe-heim/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/gabe-heim/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/gabe-heim/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/gabe-heim/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/gabe-heim/orgs', 'gh_repos_url': 'https://api.github.com/users/gabe-heim/repos', 'gh_events_url': 'https://api.github.com/users/gabe-heim/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/gabe-heim/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-25T16:12:06Z', 'cntrb_full_name': 'Gabe Heim'}
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO cntrb_id 01013cd8-ae00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76a5ee0>] has type <class 'list'>
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 00e71cc67ab702dd8e8490ba5dd527e441774ffd
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/00e71cc67ab702dd8e8490ba5dd527e441774ffd
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100d60d-1a00-0000-0000-000000000000'), 'cntrb_login': 'harshad16', 'cntrb_created_at': '2015-08-29T09:37:07Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Red Hat @AICoE ', 'cntrb_location': 'Boston', 'cntrb_canonical': '[email protected]', 'gh_user_id': 14028058, 'gh_login': 'harshad16', 'gh_url': 'https://api.github.com/users/harshad16', 'gh_html_url': 'https://github.com/harshad16', 'gh_node_id': 'MDQ6VXNlcjE0MDI4MDU4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/14028058?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/harshad16/followers', 'gh_following_url': 'https://api.github.com/users/harshad16/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/harshad16/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/harshad16/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/harshad16/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/harshad16/orgs', 'gh_repos_url': 'https://api.github.com/users/harshad16/repos', 'gh_events_url': 'https://api.github.com/users/harshad16/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/harshad16/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T14:34:24Z', 'cntrb_full_name': 'Harshad Reddy Nalla'}
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100d60d-1a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8713220>] has type <class 'list'>
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01043bed-8300-0000-0000-000000000000'), 'cntrb_login': 'margarethaley', 'cntrb_created_at': '2020-09-09T18:12:26Z', 'cntrb_email': None, 'cntrb_company': 'College of the Holy Cross', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 71036291, 'gh_login': 'margarethaley', 'gh_url': 'https://api.github.com/users/margarethaley', 'gh_html_url': 'https://github.com/margarethaley', 'gh_node_id': 'MDQ6VXNlcjcxMDM2Mjkx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/71036291?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/margarethaley/followers', 'gh_following_url': 'https://api.github.com/users/margarethaley/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/margarethaley/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/margarethaley/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/margarethaley/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/margarethaley/orgs', 'gh_repos_url': 'https://api.github.com/users/margarethaley/repos', 'gh_events_url': 'https://api.github.com/users/margarethaley/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/margarethaley/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-04-15T13:09:51Z', 'cntrb_full_name': 'Margaret Haley'}
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO cntrb_id 01043bed-8300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8718b80>] has type <class 'list'>
2023-01-12 12:24:25 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100f612-c500-0000-0000-000000000000'), 'cntrb_login': 'ChristianCme', 'cntrb_created_at': '2015-12-03T00:55:28Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Cambridge, MA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 16126661, 'gh_login': 'ChristianCme', 'gh_url': 'https://api.github.com/users/ChristianCme', 'gh_html_url': 'https://github.com/ChristianCme', 'gh_node_id': 'MDQ6VXNlcjE2MTI2NjYx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/16126661?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ChristianCme/followers', 'gh_following_url': 'https://api.github.com/users/ChristianCme/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ChristianCme/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ChristianCme/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ChristianCme/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ChristianCme/orgs', 'gh_repos_url': 'https://api.github.com/users/ChristianCme/repos', 'gh_events_url': 'https://api.github.com/users/ChristianCme/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ChristianCme/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-08T05:28:19Z', 'cntrb_full_name': 'Christian Cmehil-Warn'}
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100f612-c500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8b3e190>] has type <class 'list'>
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 00f399e4ed0f8810a68759d31eee3a52fd8af1ed
2023-01-12 12:24:26 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/00f399e4ed0f8810a68759d31eee3a52fd8af1ed
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Done with inserting and updating facade contributors
[2023-01-12 12:24:27,425: INFO/MainProcess] Task augur.tasks.github.facade_github.tasks.insert_facade_contributors[c34794a2-bb3a-4b56-9947-e27a2322f4cf] succeeded in 13.54519013600111s: None
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101e100-7300-0000-0000-000000000000'), 'cntrb_login': 'ccarterlandis', 'cntrb_created_at': '2017-08-31T22:01:37Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@Gusto', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 31522931, 'gh_login': 'ccarterlandis', 'gh_url': 'https://api.github.com/users/ccarterlandis', 'gh_html_url': 'https://github.com/ccarterlandis', 'gh_node_id': 'MDQ6VXNlcjMxNTIyOTMx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/31522931?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ccarterlandis/followers', 'gh_following_url': 'https://api.github.com/users/ccarterlandis/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ccarterlandis/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ccarterlandis/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ccarterlandis/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ccarterlandis/orgs', 'gh_repos_url': 'https://api.github.com/users/ccarterlandis/repos', 'gh_events_url': 'https://api.github.com/users/ccarterlandis/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ccarterlandis/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T17:00:36Z', 'cntrb_full_name': 'Carter Landis'}
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101e100-7300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7ffcfa0>] has type <class 'list'>
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0107e322e7c26718f13db5e1aaa8c2ffca70afc7
2023-01-12 12:24:27 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0107e322e7c26718f13db5e1aaa8c2ffca70afc7
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01016318-0c00-0000-0000-000000000000'), 'cntrb_login': 'jzukosky', 'cntrb_created_at': '2016-11-05T02:23:20Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Cambridge, Massachusetts', 'cntrb_canonical': '[email protected]', 'gh_user_id': 23271436, 'gh_login': 'jzukosky', 'gh_url': 'https://api.github.com/users/jzukosky', 'gh_html_url': 'https://github.com/jzukosky', 'gh_node_id': 'MDQ6VXNlcjIzMjcxNDM2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/23271436?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/jzukosky/followers', 'gh_following_url': 'https://api.github.com/users/jzukosky/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/jzukosky/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/jzukosky/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/jzukosky/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/jzukosky/orgs', 'gh_repos_url': 'https://api.github.com/users/jzukosky/repos', 'gh_events_url': 'https://api.github.com/users/jzukosky/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/jzukosky/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T12:31:18Z', 'cntrb_full_name': 'Jonah Zukosky'}
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO cntrb_id 01016318-0c00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84074f0>] has type <class 'list'>
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 018465c98e2444cd4f48843723d44c0c7da3e6d3
2023-01-12 12:24:30 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/018465c98e2444cd4f48843723d44c0c7da3e6d3
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000cc1-1000-0000-0000-000000000000'), 'cntrb_login': 'howderek', 'cntrb_created_at': '2011-06-07T19:14:38Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@esnet @chaoss', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 835856, 'gh_login': 'howderek', 'gh_url': 'https://api.github.com/users/howderek', 'gh_html_url': 'https://github.com/howderek', 'gh_node_id': 'MDQ6VXNlcjgzNTg1Ng==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/835856?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/howderek/followers', 'gh_following_url': 'https://api.github.com/users/howderek/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/howderek/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/howderek/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/howderek/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/howderek/orgs', 'gh_repos_url': 'https://api.github.com/users/howderek/repos', 'gh_events_url': 'https://api.github.com/users/howderek/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/howderek/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-10-20T23:58:25Z', 'cntrb_full_name': 'Derek Howard'}
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000cc1-1000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7ffcee0>] has type <class 'list'>
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 01968f1b96cb96f26ff411321e1e8bf0bacbccd5
2023-01-12 12:24:31 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/01968f1b96cb96f26ff411321e1e8bf0bacbccd5
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100f37d-9100-0000-0000-000000000000'), 'cntrb_login': 'bing0n3', 'cntrb_created_at': '2015-11-21T15:25:24Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'ByteDance', 'cntrb_location': 'Hangzhou, China', 'cntrb_canonical': '[email protected]', 'gh_user_id': 15957393, 'gh_login': 'bing0n3', 'gh_url': 'https://api.github.com/users/bing0n3', 'gh_html_url': 'https://github.com/bing0n3', 'gh_node_id': 'MDQ6VXNlcjE1OTU3Mzkz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/15957393?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/bing0n3/followers', 'gh_following_url': 'https://api.github.com/users/bing0n3/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/bing0n3/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/bing0n3/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/bing0n3/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/bing0n3/orgs', 'gh_repos_url': 'https://api.github.com/users/bing0n3/repos', 'gh_events_url': 'https://api.github.com/users/bing0n3/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/bing0n3/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-10T02:39:26Z', 'cntrb_full_name': 'Bingwen Ma'}
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100f37d-9100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a78e5100>] has type <class 'list'>
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 01e98b073c498c3a5be33b7493e2a2b3e9ddeb77
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/01e98b073c498c3a5be33b7493e2a2b3e9ddeb77
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010153aa-4300-0000-0000-000000000000'), 'cntrb_login': 'parthsharma2', 'cntrb_created_at': '2016-09-17T16:19:41Z', 'cntrb_email': None, 'cntrb_company': '@asetalias @chaoss', 'cntrb_location': 'New Delhi, India', 'cntrb_canonical': '[email protected]', 'gh_user_id': 22260291, 'gh_login': 'parthsharma2', 'gh_url': 'https://api.github.com/users/parthsharma2', 'gh_html_url': 'https://github.com/parthsharma2', 'gh_node_id': 'MDQ6VXNlcjIyMjYwMjkx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/22260291?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/parthsharma2/followers', 'gh_following_url': 'https://api.github.com/users/parthsharma2/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/parthsharma2/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/parthsharma2/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/parthsharma2/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/parthsharma2/orgs', 'gh_repos_url': 'https://api.github.com/users/parthsharma2/repos', 'gh_events_url': 'https://api.github.com/users/parthsharma2/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/parthsharma2/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-09-05T06:49:23Z', 'cntrb_full_name': 'Parth Sharma'}
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO cntrb_id 010153aa-4300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a82de700>] has type <class 'list'>
2023-01-12 12:24:32 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000cc1-1000-0000-0000-000000000000'), 'cntrb_login': 'howderek', 'cntrb_created_at': '2011-06-07T19:14:38Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@esnet @chaoss', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 835856, 'gh_login': 'howderek', 'gh_url': 'https://api.github.com/users/howderek', 'gh_html_url': 'https://github.com/howderek', 'gh_node_id': 'MDQ6VXNlcjgzNTg1Ng==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/835856?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/howderek/followers', 'gh_following_url': 'https://api.github.com/users/howderek/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/howderek/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/howderek/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/howderek/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/howderek/orgs', 'gh_repos_url': 'https://api.github.com/users/howderek/repos', 'gh_events_url': 'https://api.github.com/users/howderek/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/howderek/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-10-20T23:58:25Z', 'cntrb_full_name': 'Derek Howard'}
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000cc1-1000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a82de850>] has type <class 'list'>
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 020565babbf4269291b043053d0b4a5a1fa280eb
2023-01-12 12:24:33 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/020565babbf4269291b043053d0b4a5a1fa280eb
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010173a4-2900-0000-0000-000000000000'), 'cntrb_login': 'abhinavbajpai2012', 'cntrb_created_at': '2016-12-03T14:22:04Z', 'cntrb_email': None, 'cntrb_company': 'Indian Institute of Technology Dhanbad', 'cntrb_location': 'Dhanbad', 'cntrb_canonical': '[email protected]', 'gh_user_id': 24355881, 'gh_login': 'abhinavbajpai2012', 'gh_url': 'https://api.github.com/users/abhinavbajpai2012', 'gh_html_url': 'https://github.com/abhinavbajpai2012', 'gh_node_id': 'MDQ6VXNlcjI0MzU1ODgx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/24355881?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/abhinavbajpai2012/followers', 'gh_following_url': 'https://api.github.com/users/abhinavbajpai2012/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/abhinavbajpai2012/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/abhinavbajpai2012/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/abhinavbajpai2012/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/abhinavbajpai2012/orgs', 'gh_repos_url': 'https://api.github.com/users/abhinavbajpai2012/repos', 'gh_events_url': 'https://api.github.com/users/abhinavbajpai2012/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/abhinavbajpai2012/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-03-23T18:02:17Z', 'cntrb_full_name': 'Abhinav Bajpai'}
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO cntrb_id 010173a4-2900-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7ffcf10>] has type <class 'list'>
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0210f45a0e3ce3781d6a29472feb1f3143d9ffdf
2023-01-12 12:24:34 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0210f45a0e3ce3781d6a29472feb1f3143d9ffdf
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100b728-7300-0000-0000-000000000000'), 'cntrb_login': 'Ulincsys', 'cntrb_created_at': '2015-04-18T04:55:05Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'United States', 'cntrb_canonical': '[email protected]', 'gh_user_id': 12003443, 'gh_login': 'Ulincsys', 'gh_url': 'https://api.github.com/users/Ulincsys', 'gh_html_url': 'https://github.com/Ulincsys', 'gh_node_id': 'MDQ6VXNlcjEyMDAzNDQz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/12003443?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Ulincsys/followers', 'gh_following_url': 'https://api.github.com/users/Ulincsys/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Ulincsys/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Ulincsys/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Ulincsys/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Ulincsys/orgs', 'gh_repos_url': 'https://api.github.com/users/Ulincsys/repos', 'gh_events_url': 'https://api.github.com/users/Ulincsys/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Ulincsys/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-11T16:25:31Z', 'cntrb_full_name': 'John Kieran'}
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100b728-7300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8739c70>] has type <class 'list'>
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 021f661885d45aa5cd782397663059a690468bee
2023-01-12 12:24:35 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/021f661885d45aa5cd782397663059a690468bee
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101758b-a700-0000-0000-000000000000'), 'cntrb_login': 'diananova', 'cntrb_created_at': '2016-12-09T17:07:52Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Genoa', 'cntrb_canonical': '[email protected]', 'gh_user_id': 24480679, 'gh_login': 'diananova', 'gh_url': 'https://api.github.com/users/diananova', 'gh_html_url': 'https://github.com/diananova', 'gh_node_id': 'MDQ6VXNlcjI0NDgwNjc5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/24480679?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/diananova/followers', 'gh_following_url': 'https://api.github.com/users/diananova/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/diananova/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/diananova/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/diananova/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/diananova/orgs', 'gh_repos_url': 'https://api.github.com/users/diananova/repos', 'gh_events_url': 'https://api.github.com/users/diananova/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/diananova/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-04T15:56:40Z', 'cntrb_full_name': 'Diana Mukhanova'}
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101758b-a700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749d6cd790>] has type <class 'list'>
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100f37d-9100-0000-0000-000000000000'), 'cntrb_login': 'bing0n3', 'cntrb_created_at': '2015-11-21T15:25:24Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'ByteDance', 'cntrb_location': 'Hangzhou, China', 'cntrb_canonical': '[email protected]', 'gh_user_id': 15957393, 'gh_login': 'bing0n3', 'gh_url': 'https://api.github.com/users/bing0n3', 'gh_html_url': 'https://github.com/bing0n3', 'gh_node_id': 'MDQ6VXNlcjE1OTU3Mzkz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/15957393?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/bing0n3/followers', 'gh_following_url': 'https://api.github.com/users/bing0n3/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/bing0n3/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/bing0n3/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/bing0n3/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/bing0n3/orgs', 'gh_repos_url': 'https://api.github.com/users/bing0n3/repos', 'gh_events_url': 'https://api.github.com/users/bing0n3/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/bing0n3/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-10T02:39:26Z', 'cntrb_full_name': 'Bingwen Ma'}
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100f37d-9100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7ffca00>] has type <class 'list'>
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02347a86bfb7cdaeddb59b26425375e3af92ec15
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/02347a86bfb7cdaeddb59b26425375e3af92ec15
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:36 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Abhinav - FOSS', 'hash': '02347a86bfb7cdaeddb59b26425375e3af92ec15', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Abhinav - FOSS'}
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': 'theawless', 'id': 15650532, 'node_id': 'MDQ6VXNlcjE1NjUwNTMy', 'avatar_url': 'https://avatars.githubusercontent.com/u/15650532?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/theawless', 'html_url': 'https://github.com/theawless', 'followers_url': 'https://api.github.com/users/theawless/followers', 'following_url': 'https://api.github.com/users/theawless/following{/other_user}', 'gists_url': 'https://api.github.com/users/theawless/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/theawless/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/theawless/subscriptions', 'organizations_url': 'https://api.github.com/users/theawless/orgs', 'repos_url': 'https://api.github.com/users/theawless/repos', 'events_url': 'https://api.github.com/users/theawless/events{/privacy}', 'received_events_url': 'https://api.github.com/users/theawless/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100eece-e400-0000-0000-000000000000'), 'cntrb_login': 'theawless', 'cntrb_created_at': '2015-11-04T11:52:59Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'AWS', 'cntrb_location': 'Seattle, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 15650532, 'gh_login': 'theawless', 'gh_url': 'https://api.github.com/users/theawless', 'gh_html_url': 'https://github.com/theawless', 'gh_node_id': 'MDQ6VXNlcjE1NjUwNTMy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/15650532?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/theawless/followers', 'gh_following_url': 'https://api.github.com/users/theawless/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/theawless/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/theawless/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/theawless/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/theawless/orgs', 'gh_repos_url': 'https://api.github.com/users/theawless/repos', 'gh_events_url': 'https://api.github.com/users/theawless/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/theawless/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T19:44:14Z', 'cntrb_full_name': 'Abhinav Singh'}
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100eece-e400-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7a87f70>] has type <class 'list'>
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 025827b8ffc6bba619d861d865b5f02ffff06dd8
2023-01-12 12:24:37 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/025827b8ffc6bba619d861d865b5f02ffff06dd8
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010105ea-2600-0000-0000-000000000000'), 'cntrb_login': 'abuhman', 'cntrb_created_at': '2016-02-10T17:37:42Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 17164838, 'gh_login': 'abuhman', 'gh_url': 'https://api.github.com/users/abuhman', 'gh_html_url': 'https://github.com/abuhman', 'gh_node_id': 'MDQ6VXNlcjE3MTY0ODM4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/17164838?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/abuhman/followers', 'gh_following_url': 'https://api.github.com/users/abuhman/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/abuhman/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/abuhman/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/abuhman/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/abuhman/orgs', 'gh_repos_url': 'https://api.github.com/users/abuhman/repos', 'gh_events_url': 'https://api.github.com/users/abuhman/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/abuhman/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2020-11-03T17:58:45Z', 'cntrb_full_name': 'abuhman'}
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO cntrb_id 010105ea-2600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76a0d60>] has type <class 'list'>
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 026cf75e56ac9c156d554b7227c40753843b298f
2023-01-12 12:24:38 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/026cf75e56ac9c156d554b7227c40753843b298f
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01018530-b300-0000-0000-000000000000'), 'cntrb_login': 'aksh555', 'cntrb_created_at': '2017-02-02T12:58:07Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@chaoss, @IEEE-NITK', 'cntrb_location': 'NJ, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 25505971, 'gh_login': 'aksh555', 'gh_url': 'https://api.github.com/users/aksh555', 'gh_html_url': 'https://github.com/aksh555', 'gh_node_id': 'MDQ6VXNlcjI1NTA1OTcx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/25505971?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/aksh555/followers', 'gh_following_url': 'https://api.github.com/users/aksh555/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/aksh555/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/aksh555/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/aksh555/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/aksh555/orgs', 'gh_repos_url': 'https://api.github.com/users/aksh555/repos', 'gh_events_url': 'https://api.github.com/users/aksh555/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/aksh555/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-20T12:50:46Z', 'cntrb_full_name': 'Akshara Prabhakar'}
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO cntrb_id 01018530-b300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749df9fd00>] has type <class 'list'>
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02a65d5a178356d81d65240ca26052dae4528b89
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/02a65d5a178356d81d65240ca26052dae4528b89
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Ulincsys', 'hash': '02a65d5a178356d81d65240ca26052dae4528b89', 'email_raw': '', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Email less than two characters
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Couldn't resolve name url with given data. Reason:
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02c58aec7d76ec4e64c753656cb4b894af1cb0cb
2023-01-12 12:24:39 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/02c58aec7d76ec4e64c753656cb4b894af1cb0cb
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010359e6-0a00-0000-0000-000000000000'), 'cntrb_login': 'Dhruv-Sachdev1313', 'cntrb_created_at': '2019-10-06T12:20:20Z', 'cntrb_email': None, 'cntrb_company': 'BeyondIRR', 'cntrb_location': 'Mumbai, India', 'cntrb_canonical': '[email protected]', 'gh_user_id': 56223242, 'gh_login': 'Dhruv-Sachdev1313', 'gh_url': 'https://api.github.com/users/Dhruv-Sachdev1313', 'gh_html_url': 'https://github.com/Dhruv-Sachdev1313', 'gh_node_id': 'MDQ6VXNlcjU2MjIzMjQy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/56223242?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Dhruv-Sachdev1313/followers', 'gh_following_url': 'https://api.github.com/users/Dhruv-Sachdev1313/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Dhruv-Sachdev1313/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Dhruv-Sachdev1313/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Dhruv-Sachdev1313/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Dhruv-Sachdev1313/orgs', 'gh_repos_url': 'https://api.github.com/users/Dhruv-Sachdev1313/repos', 'gh_events_url': 'https://api.github.com/users/Dhruv-Sachdev1313/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Dhruv-Sachdev1313/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T13:08:49Z', 'cntrb_full_name': 'Dhruv Sachdev'}
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO cntrb_id 010359e6-0a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8208130>] has type <class 'list'>
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 02cfe83b7c6da2dc9f438045fd8236d00add03bd
2023-01-12 12:24:40 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/02cfe83b7c6da2dc9f438045fd8236d00add03bd
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010255e5-b200-0000-0000-000000000000'), 'cntrb_login': 'Pogayo', 'cntrb_created_at': '2018-05-11T07:21:32Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Carnegie Mellon University', 'cntrb_location': 'Pittsburgh', 'cntrb_canonical': '[email protected]', 'gh_user_id': 39183794, 'gh_login': 'Pogayo', 'gh_url': 'https://api.github.com/users/Pogayo', 'gh_html_url': 'https://github.com/Pogayo', 'gh_node_id': 'MDQ6VXNlcjM5MTgzNzk0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/39183794?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Pogayo/followers', 'gh_following_url': 'https://api.github.com/users/Pogayo/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Pogayo/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Pogayo/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Pogayo/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Pogayo/orgs', 'gh_repos_url': 'https://api.github.com/users/Pogayo/repos', 'gh_events_url': 'https://api.github.com/users/Pogayo/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Pogayo/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-06T00:00:22Z', 'cntrb_full_name': 'Perez Ogayo'}
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO cntrb_id 010255e5-b200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84ed580>] has type <class 'list'>
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 034985555c64fb2150ca7bf177474bbc49603d76
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/034985555c64fb2150ca7bf177474bbc49603d76
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:24:41 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Andrew', 'hash': '034985555c64fb2150ca7bf177474bbc49603d76', 'email_raw': 'andrew@root', 'resolution_status': 'not_unresolved'}
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/users?q=andrew@root+in:email+type:user
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from andrew@root
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': 'andrew@root', 'name': 'Andrew'}
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Couldn't resolve name url with given data. Reason:
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101e100-7300-0000-0000-000000000000'), 'cntrb_login': 'ccarterlandis', 'cntrb_created_at': '2017-08-31T22:01:37Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@Gusto', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 31522931, 'gh_login': 'ccarterlandis', 'gh_url': 'https://api.github.com/users/ccarterlandis', 'gh_html_url': 'https://github.com/ccarterlandis', 'gh_node_id': 'MDQ6VXNlcjMxNTIyOTMx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/31522931?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ccarterlandis/followers', 'gh_following_url': 'https://api.github.com/users/ccarterlandis/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ccarterlandis/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ccarterlandis/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ccarterlandis/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ccarterlandis/orgs', 'gh_repos_url': 'https://api.github.com/users/ccarterlandis/repos', 'gh_events_url': 'https://api.github.com/users/ccarterlandis/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ccarterlandis/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T17:00:36Z', 'cntrb_full_name': 'Carter Landis'}
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101e100-7300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749dc89850>] has type <class 'list'>
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 04173f6ac4a951d5d07f36b51d102a7def63a5d3
2023-01-12 12:24:42 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/04173f6ac4a951d5d07f36b51d102a7def63a5d3
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000a03-5000-0000-0000-000000000000'), 'cntrb_login': 'germonprez', 'cntrb_created_at': '2011-03-07T19:14:09Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Nebraska at Omaha', 'cntrb_location': 'Omaha, NE', 'cntrb_canonical': '[email protected]', 'gh_user_id': 656208, 'gh_login': 'germonprez', 'gh_url': 'https://api.github.com/users/germonprez', 'gh_html_url': 'https://github.com/germonprez', 'gh_node_id': 'MDQ6VXNlcjY1NjIwOA==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/656208?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/germonprez/followers', 'gh_following_url': 'https://api.github.com/users/germonprez/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/germonprez/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/germonprez/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/germonprez/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/germonprez/orgs', 'gh_repos_url': 'https://api.github.com/users/germonprez/repos', 'gh_events_url': 'https://api.github.com/users/germonprez/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/germonprez/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-09T22:38:58Z', 'cntrb_full_name': 'Matt Germonprez'}
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000a03-5000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8048df0>] has type <class 'list'>
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 042dd7a899c65a3bf502304c339a89074d0bf4cb
2023-01-12 12:24:43 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/042dd7a899c65a3bf502304c339a89074d0bf4cb
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01043fa7-9000-0000-0000-000000000000'), 'cntrb_login': 'oma131', 'cntrb_created_at': '2020-09-14T16:22:43Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 71280528, 'gh_login': 'oma131', 'gh_url': 'https://api.github.com/users/oma131', 'gh_html_url': 'https://github.com/oma131', 'gh_node_id': 'MDQ6VXNlcjcxMjgwNTI4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/71280528?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/oma131/followers', 'gh_following_url': 'https://api.github.com/users/oma131/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/oma131/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/oma131/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/oma131/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/oma131/orgs', 'gh_repos_url': 'https://api.github.com/users/oma131/repos', 'gh_events_url': 'https://api.github.com/users/oma131/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/oma131/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-01T10:09:03Z', 'cntrb_full_name': 'Oma Anosike'}
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO cntrb_id 01043fa7-9000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a0a4ca60>] has type <class 'list'>
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 04443a1b58c6620ae6750f6a6ebb6e8df33cb605
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/04443a1b58c6620ae6750f6a6ebb6e8df33cb605
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01008739-4500-0000-0000-000000000000'), 'cntrb_login': 'GeorgLink', 'cntrb_created_at': '2014-09-22T13:56:39Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'Bitergia', 'cntrb_location': 'Omaha, NE, USA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 8862021, 'gh_login': 'GeorgLink', 'gh_url': 'https://api.github.com/users/GeorgLink', 'gh_html_url': 'https://github.com/GeorgLink', 'gh_node_id': 'MDQ6VXNlcjg4NjIwMjE=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/8862021?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/GeorgLink/followers', 'gh_following_url': 'https://api.github.com/users/GeorgLink/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/GeorgLink/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/GeorgLink/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/GeorgLink/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/GeorgLink/orgs', 'gh_repos_url': 'https://api.github.com/users/GeorgLink/repos', 'gh_events_url': 'https://api.github.com/users/GeorgLink/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/GeorgLink/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-06T23:36:06Z', 'cntrb_full_name': 'Georg J.P. Link'}
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO cntrb_id 01008739-4500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a821d3d0>] has type <class 'list'>
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 048de7f4ab40a63fcb5ab725182a734812c58c92
2023-01-12 12:24:44 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/048de7f4ab40a63fcb5ab725182a734812c58c92
2023-01-12 12:24:45 blueberry insert_facade_contributors[59440] INFO
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO err: GithubApiResult.SECONDARY_RATE_LIMIT
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102ce6d-fe00-0000-0000-000000000000'), 'cntrb_login': 'CMPerniciaro', 'cntrb_created_at': '2019-01-27T14:54:31Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 47083006, 'gh_login': 'CMPerniciaro', 'gh_url': 'https://api.github.com/users/CMPerniciaro', 'gh_html_url': 'https://github.com/CMPerniciaro', 'gh_node_id': 'MDQ6VXNlcjQ3MDgzMDA2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/47083006?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/CMPerniciaro/followers', 'gh_following_url': 'https://api.github.com/users/CMPerniciaro/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/CMPerniciaro/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/CMPerniciaro/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/CMPerniciaro/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/CMPerniciaro/orgs', 'gh_repos_url': 'https://api.github.com/users/CMPerniciaro/repos', 'gh_events_url': 'https://api.github.com/users/CMPerniciaro/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/CMPerniciaro/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T19:15:24Z', 'cntrb_full_name': 'Carolyn Perniciaro'}
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102ce6d-fe00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a88d5190>] has type <class 'list'>
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 05172e65644ee066627a0f9ea2eb6707458dc274
2023-01-12 12:25:45 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/05172e65644ee066627a0f9ea2eb6707458dc274
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010005cb-c700-0000-0000-000000000000'), 'cntrb_login': 'sgoggins', 'cntrb_created_at': '2010-08-29T16:25:48Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Missouri & Linux Foundation CHAOSS Working Group', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 379847, 'gh_login': 'sgoggins', 'gh_url': 'https://api.github.com/users/sgoggins', 'gh_html_url': 'https://github.com/sgoggins', 'gh_node_id': 'MDQ6VXNlcjM3OTg0Nw==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/379847?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sgoggins/followers', 'gh_following_url': 'https://api.github.com/users/sgoggins/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sgoggins/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sgoggins/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sgoggins/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sgoggins/orgs', 'gh_repos_url': 'https://api.github.com/users/sgoggins/repos', 'gh_events_url': 'https://api.github.com/users/sgoggins/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sgoggins/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:26:13Z', 'cntrb_full_name': 'Sean P. Goggins'}
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO cntrb_id 010005cb-c700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a78e5610>] has type <class 'list'>
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 05c325ce12ddb57e5d940510d33ac116c5174f3c
2023-01-12 12:25:46 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/05c325ce12ddb57e5d940510d33ac116c5174f3c
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000e73-6200-0000-0000-000000000000'), 'cntrb_login': 'sbrennan98', 'cntrb_created_at': '2011-07-29T15:56:07Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Austin, TX', 'cntrb_canonical': '[email protected]', 'gh_user_id': 947042, 'gh_login': 'sbrennan98', 'gh_url': 'https://api.github.com/users/sbrennan98', 'gh_html_url': 'https://github.com/sbrennan98', 'gh_node_id': 'MDQ6VXNlcjk0NzA0Mg==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/947042?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sbrennan98/followers', 'gh_following_url': 'https://api.github.com/users/sbrennan98/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sbrennan98/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sbrennan98/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sbrennan98/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sbrennan98/orgs', 'gh_repos_url': 'https://api.github.com/users/sbrennan98/repos', 'gh_events_url': 'https://api.github.com/users/sbrennan98/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sbrennan98/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-04T00:06:20Z', 'cntrb_full_name': 'Sean Brennan'}
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000e73-6200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8d01970>] has type <class 'list'>
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 05e612599006c25984626859865547596872c570
2023-01-12 12:25:47 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/05e612599006c25984626859865547596872c570
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01000383-bf00-0000-0000-000000000000'), 'cntrb_login': 'mscherer', 'cntrb_created_at': '2010-03-25T16:35:22Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 230335, 'gh_login': 'mscherer', 'gh_url': 'https://api.github.com/users/mscherer', 'gh_html_url': 'https://github.com/mscherer', 'gh_node_id': 'MDQ6VXNlcjIzMDMzNQ==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/230335?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/mscherer/followers', 'gh_following_url': 'https://api.github.com/users/mscherer/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/mscherer/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/mscherer/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/mscherer/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/mscherer/orgs', 'gh_repos_url': 'https://api.github.com/users/mscherer/repos', 'gh_events_url': 'https://api.github.com/users/mscherer/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/mscherer/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T10:32:01Z', 'cntrb_full_name': 'Michael Scherer'}
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO cntrb_id 01000383-bf00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f748688c490>] has type <class 'list'>
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 072a73e4dbcd71983f14efe222984f88a8f6f03b
2023-01-12 12:25:48 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/072a73e4dbcd71983f14efe222984f88a8f6f03b
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010466e9-ff00-0000-0000-000000000000'), 'cntrb_login': 'preeti-14-7', 'cntrb_created_at': '2020-11-02T20:10:33Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'WEST BENGAL ', 'cntrb_canonical': '[email protected]', 'gh_user_id': 73853439, 'gh_login': 'preeti-14-7', 'gh_url': 'https://api.github.com/users/preeti-14-7', 'gh_html_url': 'https://github.com/preeti-14-7', 'gh_node_id': 'MDQ6VXNlcjczODUzNDM5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/73853439?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/preeti-14-7/followers', 'gh_following_url': 'https://api.github.com/users/preeti-14-7/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/preeti-14-7/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/preeti-14-7/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/preeti-14-7/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/preeti-14-7/orgs', 'gh_repos_url': 'https://api.github.com/users/preeti-14-7/repos', 'gh_events_url': 'https://api.github.com/users/preeti-14-7/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/preeti-14-7/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-30T12:58:38Z', 'cntrb_full_name': 'Preeti Yadav'}
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO cntrb_id 010466e9-ff00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a821d340>] has type <class 'list'>
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 073f61dcee84b5a9ea660147b6c5f876387e97bd
2023-01-12 12:25:49 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/073f61dcee84b5a9ea660147b6c5f876387e97bd
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010348d6-0000-0000-0000-000000000000'), 'cntrb_login': 'adammenker', 'cntrb_created_at': '2019-09-09T17:40:06Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 55105024, 'gh_login': 'adammenker', 'gh_url': 'https://api.github.com/users/adammenker', 'gh_html_url': 'https://github.com/adammenker', 'gh_node_id': 'MDQ6VXNlcjU1MTA1MDI0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/55105024?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/adammenker/followers', 'gh_following_url': 'https://api.github.com/users/adammenker/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/adammenker/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/adammenker/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/adammenker/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/adammenker/orgs', 'gh_repos_url': 'https://api.github.com/users/adammenker/repos', 'gh_events_url': 'https://api.github.com/users/adammenker/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/adammenker/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:53:26Z', 'cntrb_full_name': 'adammenker'}
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO cntrb_id 010348d6-0000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749e2ea9a0>] has type <class 'list'>
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010005cb-c700-0000-0000-000000000000'), 'cntrb_login': 'sgoggins', 'cntrb_created_at': '2010-08-29T16:25:48Z', 'cntrb_email': '[email protected]', 'cntrb_company': 'University of Missouri & Linux Foundation CHAOSS Working Group', 'cntrb_location': 'Columbia, MO', 'cntrb_canonical': '[email protected]', 'gh_user_id': 379847, 'gh_login': 'sgoggins', 'gh_url': 'https://api.github.com/users/sgoggins', 'gh_html_url': 'https://github.com/sgoggins', 'gh_node_id': 'MDQ6VXNlcjM3OTg0Nw==', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/379847?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sgoggins/followers', 'gh_following_url': 'https://api.github.com/users/sgoggins/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sgoggins/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sgoggins/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sgoggins/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sgoggins/orgs', 'gh_repos_url': 'https://api.github.com/users/sgoggins/repos', 'gh_events_url': 'https://api.github.com/users/sgoggins/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sgoggins/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T18:26:13Z', 'cntrb_full_name': 'Sean P. Goggins'}
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO cntrb_id 010005cb-c700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a803f460>] has type <class 'list'>
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 07c229206f237907158f28ed57c772a7b9407788
2023-01-12 12:25:50 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/07c229206f237907158f28ed57c772a7b9407788
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100ac4c-c000-0000-0000-000000000000'), 'cntrb_login': 'NodiraIbrogimova', 'cntrb_created_at': '2015-03-03T10:25:14Z', 'cntrb_email': None, 'cntrb_company': 'Self-employed', 'cntrb_location': 'Earth', 'cntrb_canonical': '[email protected]', 'gh_user_id': 11291840, 'gh_login': 'NodiraIbrogimova', 'gh_url': 'https://api.github.com/users/NodiraIbrogimova', 'gh_html_url': 'https://github.com/NodiraIbrogimova', 'gh_node_id': 'MDQ6VXNlcjExMjkxODQw', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/11291840?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/NodiraIbrogimova/followers', 'gh_following_url': 'https://api.github.com/users/NodiraIbrogimova/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/NodiraIbrogimova/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/NodiraIbrogimova/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/NodiraIbrogimova/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/NodiraIbrogimova/orgs', 'gh_repos_url': 'https://api.github.com/users/NodiraIbrogimova/repos', 'gh_events_url': 'https://api.github.com/users/NodiraIbrogimova/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/NodiraIbrogimova/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-21T11:01:59Z', 'cntrb_full_name': 'Nodira Ibrogimova'}
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100ac4c-c000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749dcf8280>] has type <class 'list'>
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 07e839c6a2cc21d1aee7a95e212d72381dbda558
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/07e839c6a2cc21d1aee7a95e212d72381dbda558
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:25:51 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Alexandre Courouble', 'hash': '07e839c6a2cc21d1aee7a95e212d72381dbda558', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Alexandre Courouble'}
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Search query did not return any results, adding commit's table remains null...
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 092f3ac3bdb5548c11d6f265af35c8ea325b2920
2023-01-12 12:25:52 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/092f3ac3bdb5548c11d6f265af35c8ea325b2920
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102b39d-7200-0000-0000-000000000000'), 'cntrb_login': 'sta97', 'cntrb_created_at': '2018-11-25T05:41:51Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 45325682, 'gh_login': 'sta97', 'gh_url': 'https://api.github.com/users/sta97', 'gh_html_url': 'https://github.com/sta97', 'gh_node_id': 'MDQ6VXNlcjQ1MzI1Njgy', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/45325682?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sta97/followers', 'gh_following_url': 'https://api.github.com/users/sta97/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sta97/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sta97/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sta97/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sta97/orgs', 'gh_repos_url': 'https://api.github.com/users/sta97/repos', 'gh_events_url': 'https://api.github.com/users/sta97/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sta97/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-26T12:48:12Z', 'cntrb_full_name': 'StuartA'}
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102b39d-7200-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a794e820>] has type <class 'list'>
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 09e6dc4496ad23355ee8d15fbe365595b4e9c57a
2023-01-12 12:25:53 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/09e6dc4496ad23355ee8d15fbe365595b4e9c57a
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102830a-c500-0000-0000-000000000000'), 'cntrb_login': 'Preshh0', 'cntrb_created_at': '2018-08-06T11:56:23Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Enugu, Nigeria.', 'cntrb_canonical': '[email protected]', 'gh_user_id': 42142405, 'gh_login': 'Preshh0', 'gh_url': 'https://api.github.com/users/Preshh0', 'gh_html_url': 'https://github.com/Preshh0', 'gh_node_id': 'MDQ6VXNlcjQyMTQyNDA1', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/42142405?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Preshh0/followers', 'gh_following_url': 'https://api.github.com/users/Preshh0/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Preshh0/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Preshh0/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Preshh0/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Preshh0/orgs', 'gh_repos_url': 'https://api.github.com/users/Preshh0/repos', 'gh_events_url': 'https://api.github.com/users/Preshh0/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Preshh0/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-01T20:11:31Z', 'cntrb_full_name': 'Precious Onyewuchi'}
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102830a-c500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a88fd8b0>] has type <class 'list'>
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0ab24f8f712487e757ff2069aeb7773eada27241
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0ab24f8f712487e757ff2069aeb7773eada27241
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:25:54 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'JamesDonovan1', 'hash': '0ab24f8f712487e757ff2069aeb7773eada27241', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'JamesDonovan1'}
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Couldn't resolve name url with given data. Reason:
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0b6820c5b1b27974284c614a57a967822f4abaea
2023-01-12 12:25:55 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0b6820c5b1b27974284c614a57a967822f4abaea
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01039273-1600-0000-0000-000000000000'), 'cntrb_login': 'arausio', 'cntrb_created_at': '2020-01-15T16:40:24Z', 'cntrb_email': None, 'cntrb_company': '@chaoss @augurlabs', 'cntrb_location': 'The South Pole', 'cntrb_canonical': '[email protected]', 'gh_user_id': 59929366, 'gh_login': 'arausio', 'gh_url': 'https://api.github.com/users/arausio', 'gh_html_url': 'https://github.com/arausio', 'gh_node_id': 'MDQ6VXNlcjU5OTI5MzY2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/59929366?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/arausio/followers', 'gh_following_url': 'https://api.github.com/users/arausio/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/arausio/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/arausio/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/arausio/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/arausio/orgs', 'gh_repos_url': 'https://api.github.com/users/arausio/repos', 'gh_events_url': 'https://api.github.com/users/arausio/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/arausio/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2021-11-20T16:38:50Z', 'cntrb_full_name': 'pingu!'}
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO cntrb_id 01039273-1600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a88e25b0>] has type <class 'list'>
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0bca990fa4f3da3525849eb37b9e1801c143fbab
2023-01-12 12:25:56 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0bca990fa4f3da3525849eb37b9e1801c143fbab
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01029a91-cc00-0000-0000-000000000000'), 'cntrb_login': 'pratikmishra356', 'cntrb_created_at': '2018-09-28T18:55:36Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'KOLKATA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 43684300, 'gh_login': 'pratikmishra356', 'gh_url': 'https://api.github.com/users/pratikmishra356', 'gh_html_url': 'https://github.com/pratikmishra356', 'gh_node_id': 'MDQ6VXNlcjQzNjg0MzAw', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/43684300?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/pratikmishra356/followers', 'gh_following_url': 'https://api.github.com/users/pratikmishra356/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/pratikmishra356/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/pratikmishra356/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/pratikmishra356/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/pratikmishra356/orgs', 'gh_repos_url': 'https://api.github.com/users/pratikmishra356/repos', 'gh_events_url': 'https://api.github.com/users/pratikmishra356/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/pratikmishra356/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T13:00:55Z', 'cntrb_full_name': 'PRATIK MISHRA'}
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO cntrb_id 01029a91-cc00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f749dc853a0>] has type <class 'list'>
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0c4ad489b886a531972954472e2306573db341b2
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0c4ad489b886a531972954472e2306573db341b2
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:25:57 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Michael Woodruff', 'hash': '0c4ad489b886a531972954472e2306573db341b2', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:25:58 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:25:58 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:25:58 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Michael Woodruff'}
2023-01-12 12:25:58 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:25:58 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': 'woodruff', 'id': 8599418, 'node_id': 'MDQ6VXNlcjg1OTk0MTg=', 'avatar_url': 'https://avatars.githubusercontent.com/u/8599418?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/woodruff', 'html_url': 'https://github.com/woodruff', 'followers_url': 'https://api.github.com/users/woodruff/followers', 'following_url': 'https://api.github.com/users/woodruff/following{/other_user}', 'gists_url': 'https://api.github.com/users/woodruff/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/woodruff/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/woodruff/subscriptions', 'organizations_url': 'https://api.github.com/users/woodruff/orgs', 'repos_url': 'https://api.github.com/users/woodruff/repos', 'events_url': 'https://api.github.com/users/woodruff/events{/privacy}', 'received_events_url': 'https://api.github.com/users/woodruff/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01008337-7a00-0000-0000-000000000000'), 'cntrb_login': 'woodruff', 'cntrb_created_at': '2014-08-30T15:05:47Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'United States', 'cntrb_canonical': '[email protected]', 'gh_user_id': 8599418, 'gh_login': 'woodruff', 'gh_url': 'https://api.github.com/users/woodruff', 'gh_html_url': 'https://github.com/woodruff', 'gh_node_id': 'MDQ6VXNlcjg1OTk0MTg=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/8599418?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/woodruff/followers', 'gh_following_url': 'https://api.github.com/users/woodruff/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/woodruff/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/woodruff/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/woodruff/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/woodruff/orgs', 'gh_repos_url': 'https://api.github.com/users/woodruff/repos', 'gh_events_url': 'https://api.github.com/users/woodruff/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/woodruff/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2016-02-27T18:47:24Z', 'cntrb_full_name': 'Michael Woodruff'}
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO cntrb_id 01008337-7a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7a87880>] has type <class 'list'>
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0c83e4cca5e9b28c07d1674882401da46c363e47
2023-01-12 12:25:59 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0c83e4cca5e9b28c07d1674882401da46c363e47
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0102830a-c500-0000-0000-000000000000'), 'cntrb_login': 'Preshh0', 'cntrb_created_at': '2018-08-06T11:56:23Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Enugu, Nigeria.', 'cntrb_canonical': '[email protected]', 'gh_user_id': 42142405, 'gh_login': 'Preshh0', 'gh_url': 'https://api.github.com/users/Preshh0', 'gh_html_url': 'https://github.com/Preshh0', 'gh_node_id': 'MDQ6VXNlcjQyMTQyNDA1', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/42142405?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Preshh0/followers', 'gh_following_url': 'https://api.github.com/users/Preshh0/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Preshh0/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Preshh0/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Preshh0/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Preshh0/orgs', 'gh_repos_url': 'https://api.github.com/users/Preshh0/repos', 'gh_events_url': 'https://api.github.com/users/Preshh0/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Preshh0/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-01T20:11:31Z', 'cntrb_full_name': 'Precious Onyewuchi'}
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO cntrb_id 0102830a-c500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84a8b80>] has type <class 'list'>
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0d64909e8f9efedfcbeec29ed21ee05bce8c61e0
2023-01-12 12:26:00 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0d64909e8f9efedfcbeec29ed21ee05bce8c61e0
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101a73e-8100-0000-0000-000000000000'), 'cntrb_login': 'kmn5409', 'cntrb_created_at': '2017-04-18T18:00:51Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': 'Trinidad and Tobago', 'cntrb_canonical': '[email protected]', 'gh_user_id': 27737729, 'gh_login': 'kmn5409', 'gh_url': 'https://api.github.com/users/kmn5409', 'gh_html_url': 'https://github.com/kmn5409', 'gh_node_id': 'MDQ6VXNlcjI3NzM3NzI5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/27737729?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/kmn5409/followers', 'gh_following_url': 'https://api.github.com/users/kmn5409/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/kmn5409/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/kmn5409/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/kmn5409/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/kmn5409/orgs', 'gh_repos_url': 'https://api.github.com/users/kmn5409/repos', 'gh_events_url': 'https://api.github.com/users/kmn5409/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/kmn5409/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T15:20:11Z', 'cntrb_full_name': 'Keanu Nichols'}
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101a73e-8100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a852d2e0>] has type <class 'list'>
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0ee2298b86bd47b931fc3bee834d588461061764
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0ee2298b86bd47b931fc3bee834d588461061764
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0104fee8-1b00-0000-0000-000000000000'), 'cntrb_login': 'flyagaricdev', 'cntrb_created_at': '2021-05-07T09:39:31Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 83814427, 'gh_login': 'flyagaricdev', 'gh_url': 'https://api.github.com/users/flyagaricdev', 'gh_html_url': 'https://github.com/flyagaricdev', 'gh_node_id': 'MDQ6VXNlcjgzODE0NDI3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/83814427?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/flyagaricdev/followers', 'gh_following_url': 'https://api.github.com/users/flyagaricdev/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/flyagaricdev/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/flyagaricdev/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/flyagaricdev/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/flyagaricdev/orgs', 'gh_repos_url': 'https://api.github.com/users/flyagaricdev/repos', 'gh_events_url': 'https://api.github.com/users/flyagaricdev/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/flyagaricdev/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-06-08T12:15:06Z', 'cntrb_full_name': 'Agustina Milozzi'}
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO cntrb_id 0104fee8-1b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8afc610>] has type <class 'list'>
2023-01-12 12:26:01 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01008337-7a00-0000-0000-000000000000'), 'cntrb_login': 'woodruff', 'cntrb_created_at': '2014-08-30T15:05:47Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'United States', 'cntrb_canonical': '[email protected]', 'gh_user_id': 8599418, 'gh_login': 'woodruff', 'gh_url': 'https://api.github.com/users/woodruff', 'gh_html_url': 'https://github.com/woodruff', 'gh_node_id': 'MDQ6VXNlcjg1OTk0MTg=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/8599418?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/woodruff/followers', 'gh_following_url': 'https://api.github.com/users/woodruff/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/woodruff/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/woodruff/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/woodruff/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/woodruff/orgs', 'gh_repos_url': 'https://api.github.com/users/woodruff/repos', 'gh_events_url': 'https://api.github.com/users/woodruff/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/woodruff/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2016-02-27T18:47:24Z', 'cntrb_full_name': 'Michael Woodruff'}
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO cntrb_id 01008337-7a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8afc340>] has type <class 'list'>
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 0faca7c35131faee503ceeaf892547e80d699208
2023-01-12 12:26:02 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/0faca7c35131faee503ceeaf892547e80d699208
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0100121c-ea00-0000-0000-000000000000'), 'cntrb_login': 'maxhbr', 'cntrb_created_at': '2011-11-10T20:01:46Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@TNG Technology Consulting GmbH', 'cntrb_location': 'Germany', 'cntrb_canonical': '[email protected]', 'gh_user_id': 1187050, 'gh_login': 'maxhbr', 'gh_url': 'https://api.github.com/users/maxhbr', 'gh_html_url': 'https://github.com/maxhbr', 'gh_node_id': 'MDQ6VXNlcjExODcwNTA=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/1187050?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/maxhbr/followers', 'gh_following_url': 'https://api.github.com/users/maxhbr/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/maxhbr/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/maxhbr/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/maxhbr/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/maxhbr/orgs', 'gh_repos_url': 'https://api.github.com/users/maxhbr/repos', 'gh_events_url': 'https://api.github.com/users/maxhbr/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/maxhbr/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-14T08:20:50Z', 'cntrb_full_name': 'Maximilian Huber'}
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO cntrb_id 0100121c-ea00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a852e850>] has type <class 'list'>
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101e100-7300-0000-0000-000000000000'), 'cntrb_login': 'ccarterlandis', 'cntrb_created_at': '2017-08-31T22:01:37Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@Gusto', 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 31522931, 'gh_login': 'ccarterlandis', 'gh_url': 'https://api.github.com/users/ccarterlandis', 'gh_html_url': 'https://github.com/ccarterlandis', 'gh_node_id': 'MDQ6VXNlcjMxNTIyOTMx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/31522931?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ccarterlandis/followers', 'gh_following_url': 'https://api.github.com/users/ccarterlandis/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ccarterlandis/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ccarterlandis/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ccarterlandis/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ccarterlandis/orgs', 'gh_repos_url': 'https://api.github.com/users/ccarterlandis/repos', 'gh_events_url': 'https://api.github.com/users/ccarterlandis/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ccarterlandis/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T17:00:36Z', 'cntrb_full_name': 'Carter Landis'}
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101e100-7300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7a87be0>] has type <class 'list'>
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 10e7d336e754a67d251d4a3c196317aec7340d82
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/10e7d336e754a67d251d4a3c196317aec7340d82
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:26:03 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'sean', 'hash': '10e7d336e754a67d251d4a3c196317aec7340d82', 'email_raw': 'Doctor Sean P. Goggins, I', 'resolution_status': 'not_unresolved'}
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/users?q=Doctor Sean P. Goggins, I+in:email+type:user
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from Doctor Sean P. Goggins, I
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': 'Doctor Sean P. Goggins, I', 'name': 'sean'}
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Couldn't resolve name url with given data. Reason:
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 116c3d3b47e30ef9425ddaa775c27eb02624d0c1
2023-01-12 12:26:04 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/116c3d3b47e30ef9425ddaa775c27eb02624d0c1
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01007b5e-cc00-0000-0000-000000000000'), 'cntrb_login': 'lylynaheng', 'cntrb_created_at': '2014-07-07T02:41:13Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Bay Area, CA', 'cntrb_canonical': '[email protected]', 'gh_user_id': 8085196, 'gh_login': 'lylynaheng', 'gh_url': 'https://api.github.com/users/lylynaheng', 'gh_html_url': 'https://github.com/lylynaheng', 'gh_node_id': 'MDQ6VXNlcjgwODUxOTY=', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/8085196?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/lylynaheng/followers', 'gh_following_url': 'https://api.github.com/users/lylynaheng/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/lylynaheng/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/lylynaheng/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/lylynaheng/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/lylynaheng/orgs', 'gh_repos_url': 'https://api.github.com/users/lylynaheng/repos', 'gh_events_url': 'https://api.github.com/users/lylynaheng/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/lylynaheng/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-24T01:04:13Z', 'cntrb_full_name': 'Lylyna Heng '}
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO cntrb_id 01007b5e-cc00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8431880>] has type <class 'list'>
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 11bba2096e122398546b459191b6d252d06477c9
2023-01-12 12:26:05 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/11bba2096e122398546b459191b6d252d06477c9
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01012a29-7c00-0000-0000-000000000000'), 'cntrb_login': 'maxbalk', 'cntrb_created_at': '2016-05-23T21:32:04Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 19540348, 'gh_login': 'maxbalk', 'gh_url': 'https://api.github.com/users/maxbalk', 'gh_html_url': 'https://github.com/maxbalk', 'gh_node_id': 'MDQ6VXNlcjE5NTQwMzQ4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/19540348?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/maxbalk/followers', 'gh_following_url': 'https://api.github.com/users/maxbalk/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/maxbalk/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/maxbalk/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/maxbalk/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/maxbalk/orgs', 'gh_repos_url': 'https://api.github.com/users/maxbalk/repos', 'gh_events_url': 'https://api.github.com/users/maxbalk/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/maxbalk/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-08T17:18:42Z', 'cntrb_full_name': 'Max'}
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO cntrb_id 01012a29-7c00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a88f8670>] has type <class 'list'>
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 11f218fd9c0902b952ed292beef85d8a0c749cd1
2023-01-12 12:26:06 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/11f218fd9c0902b952ed292beef85d8a0c749cd1
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Pratik Mishra', 'hash': '11f218fd9c0902b952ed292beef85d8a0c749cd1', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Pratik Mishra'}
2023-01-12 12:26:07 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO When searching for a contributor, we found the following users: {'login': 'DolceParadise', 'id': 74451989, 'node_id': 'MDQ6VXNlcjc0NDUxOTg5', 'avatar_url': 'https://avatars.githubusercontent.com/u/74451989?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/DolceParadise', 'html_url': 'https://github.com/DolceParadise', 'followers_url': 'https://api.github.com/users/DolceParadise/followers', 'following_url': 'https://api.github.com/users/DolceParadise/following{/other_user}', 'gists_url': 'https://api.github.com/users/DolceParadise/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/DolceParadise/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/DolceParadise/subscriptions', 'organizations_url': 'https://api.github.com/users/DolceParadise/orgs', 'repos_url': 'https://api.github.com/users/DolceParadise/repos', 'events_url': 'https://api.github.com/users/DolceParadise/events{/privacy}', 'received_events_url': 'https://api.github.com/users/DolceParadise/received_events', 'type': 'User', 'site_admin': False, 'score': 1.0}
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0104700c-1500-0000-0000-000000000000'), 'cntrb_login': 'DolceParadise', 'cntrb_created_at': '2020-11-14T10:16:22Z', 'cntrb_email': None, 'cntrb_company': 'Indian Institute of Technology (IIT-BHU)', 'cntrb_location': 'Mumbai', 'cntrb_canonical': '[email protected]', 'gh_user_id': 74451989, 'gh_login': 'DolceParadise', 'gh_url': 'https://api.github.com/users/DolceParadise', 'gh_html_url': 'https://github.com/DolceParadise', 'gh_node_id': 'MDQ6VXNlcjc0NDUxOTg5', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/74451989?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/DolceParadise/followers', 'gh_following_url': 'https://api.github.com/users/DolceParadise/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/DolceParadise/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/DolceParadise/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/DolceParadise/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/DolceParadise/orgs', 'gh_repos_url': 'https://api.github.com/users/DolceParadise/repos', 'gh_events_url': 'https://api.github.com/users/DolceParadise/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/DolceParadise/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-10T13:29:33Z', 'cntrb_full_name': 'Pratik Mishra'}
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO cntrb_id 0104700c-1500-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a85b8ac0>] has type <class 'list'>
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1225d2a23a9706a0e5ae089400c8dd64ba82ced5
2023-01-12 12:26:08 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/1225d2a23a9706a0e5ae089400c8dd64ba82ced5
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01050405-4300-0000-0000-000000000000'), 'cntrb_login': 'bglob', 'cntrb_created_at': '2021-05-13T18:04:57Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 84149571, 'gh_login': 'bglob', 'gh_url': 'https://api.github.com/users/bglob', 'gh_html_url': 'https://github.com/bglob', 'gh_node_id': 'MDQ6VXNlcjg0MTQ5NTcx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/84149571?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/bglob/followers', 'gh_following_url': 'https://api.github.com/users/bglob/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/bglob/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/bglob/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/bglob/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/bglob/orgs', 'gh_repos_url': 'https://api.github.com/users/bglob/repos', 'gh_events_url': 'https://api.github.com/users/bglob/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/bglob/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-23T14:00:05Z', 'cntrb_full_name': 'Caleb Wilcox'}
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO cntrb_id 01050405-4300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8c6cf40>] has type <class 'list'>
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 129f061ed582ef1552a52503695234e2906f9808
2023-01-12 12:26:09 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/129f061ed582ef1552a52503695234e2906f9808
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101e358-6600-0000-0000-000000000000'), 'cntrb_login': 'tretrue', 'cntrb_created_at': '2017-09-06T00:45:29Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'University of Missouri - Columbia', 'cntrb_canonical': '[email protected]', 'gh_user_id': 31676518, 'gh_login': 'tretrue', 'gh_url': 'https://api.github.com/users/tretrue', 'gh_html_url': 'https://github.com/tretrue', 'gh_node_id': 'MDQ6VXNlcjMxNjc2NTE4', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/31676518?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/tretrue/followers', 'gh_following_url': 'https://api.github.com/users/tretrue/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/tretrue/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/tretrue/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/tretrue/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/tretrue/orgs', 'gh_repos_url': 'https://api.github.com/users/tretrue/repos', 'gh_events_url': 'https://api.github.com/users/tretrue/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/tretrue/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-06-12T23:30:05Z', 'cntrb_full_name': 'Robert Lincoln Truesdale III'}
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101e358-6600-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8127490>] has type <class 'list'>
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 12bd7a82ddbc6705d7eb0e2aafa86087d3cd311f
2023-01-12 12:26:10 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/12bd7a82ddbc6705d7eb0e2aafa86087d3cd311f
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01029a37-3300-0000-0000-000000000000'), 'cntrb_login': 'ortonpaul', 'cntrb_created_at': '2018-09-28T02:34:03Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 43661107, 'gh_login': 'ortonpaul', 'gh_url': 'https://api.github.com/users/ortonpaul', 'gh_html_url': 'https://github.com/ortonpaul', 'gh_node_id': 'MDQ6VXNlcjQzNjYxMTA3', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/43661107?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ortonpaul/followers', 'gh_following_url': 'https://api.github.com/users/ortonpaul/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ortonpaul/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ortonpaul/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ortonpaul/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ortonpaul/orgs', 'gh_repos_url': 'https://api.github.com/users/ortonpaul/repos', 'gh_events_url': 'https://api.github.com/users/ortonpaul/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ortonpaul/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-10-27T14:29:40Z', 'cntrb_full_name': 'Paul Orton'}
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO cntrb_id 01029a37-3300-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8c6c580>] has type <class 'list'>
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 14ae240ed19613a6d1ca532a9ebbf3c22d24066d
2023-01-12 12:26:11 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/14ae240ed19613a6d1ca532a9ebbf3c22d24066d
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0105777b-d900-0000-0000-000000000000'), 'cntrb_login': 'WhiteWolf47', 'cntrb_created_at': '2021-10-01T05:23:32Z', 'cntrb_email': '[email protected]', 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 91716569, 'gh_login': 'WhiteWolf47', 'gh_url': 'https://api.github.com/users/WhiteWolf47', 'gh_html_url': 'https://github.com/WhiteWolf47', 'gh_node_id': 'U_kgDOBXd72Q', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/91716569?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/WhiteWolf47/followers', 'gh_following_url': 'https://api.github.com/users/WhiteWolf47/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/WhiteWolf47/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/WhiteWolf47/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/WhiteWolf47/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/WhiteWolf47/orgs', 'gh_repos_url': 'https://api.github.com/users/WhiteWolf47/repos', 'gh_events_url': 'https://api.github.com/users/WhiteWolf47/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/WhiteWolf47/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-01T14:43:44Z', 'cntrb_full_name': 'ANURAG BHANDARI'}
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO cntrb_id 0105777b-d900-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a879bc40>] has type <class 'list'>
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 15709e1d7d14e7224ba8e8eca933b0d1db76899d
2023-01-12 12:26:12 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/15709e1d7d14e7224ba8e8eca933b0d1db76899d
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0104085d-6a00-0000-0000-000000000000'), 'cntrb_login': 'singhavs', 'cntrb_created_at': '2020-06-30T19:26:37Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Bangalore', 'cntrb_canonical': '[email protected]', 'gh_user_id': 67657066, 'gh_login': 'singhavs', 'gh_url': 'https://api.github.com/users/singhavs', 'gh_html_url': 'https://github.com/singhavs', 'gh_node_id': 'MDQ6VXNlcjY3NjU3MDY2', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/67657066?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/singhavs/followers', 'gh_following_url': 'https://api.github.com/users/singhavs/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/singhavs/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/singhavs/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/singhavs/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/singhavs/orgs', 'gh_repos_url': 'https://api.github.com/users/singhavs/repos', 'gh_events_url': 'https://api.github.com/users/singhavs/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/singhavs/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-03T06:13:35Z', 'cntrb_full_name': 'singhavs'}
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO cntrb_id 0104085d-6a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a84eeb20>] has type <class 'list'>
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 15a9be06ebaab5e070e45e3ec6dc9b3d99290a27
2023-01-12 12:26:13 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/15a9be06ebaab5e070e45e3ec6dc9b3d99290a27
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010321f6-8000-0000-0000-000000000000'), 'cntrb_login': 'ajeurkar', 'cntrb_created_at': '2019-07-05T04:49:32Z', 'cntrb_email': None, 'cntrb_company': 'Proxima Solutions', 'cntrb_location': 'Pune', 'cntrb_canonical': '[email protected]', 'gh_user_id': 52557440, 'gh_login': 'ajeurkar', 'gh_url': 'https://api.github.com/users/ajeurkar', 'gh_html_url': 'https://github.com/ajeurkar', 'gh_node_id': 'MDQ6VXNlcjUyNTU3NDQw', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/52557440?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ajeurkar/followers', 'gh_following_url': 'https://api.github.com/users/ajeurkar/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ajeurkar/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ajeurkar/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ajeurkar/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ajeurkar/orgs', 'gh_repos_url': 'https://api.github.com/users/ajeurkar/repos', 'gh_events_url': 'https://api.github.com/users/ajeurkar/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ajeurkar/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-02T07:30:11Z', 'cntrb_full_name': 'Ajinkya Jeurkar'}
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO cntrb_id 010321f6-8000-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a7de9c40>] has type <class 'list'>
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 15ed2b4852fb29fd03ec1c6a7c691bc29bff678d
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/15ed2b4852fb29fd03ec1c6a7c691bc29bff678d
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103b057-6c00-0000-0000-000000000000'), 'cntrb_login': 'sg7801', 'cntrb_created_at': '2020-03-06T20:25:14Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 61888364, 'gh_login': 'sg7801', 'gh_url': 'https://api.github.com/users/sg7801', 'gh_html_url': 'https://github.com/sg7801', 'gh_node_id': 'MDQ6VXNlcjYxODg4MzY0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/61888364?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/sg7801/followers', 'gh_following_url': 'https://api.github.com/users/sg7801/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/sg7801/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/sg7801/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/sg7801/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/sg7801/orgs', 'gh_repos_url': 'https://api.github.com/users/sg7801/repos', 'gh_events_url': 'https://api.github.com/users/sg7801/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/sg7801/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-05T12:09:29Z', 'cntrb_full_name': 'Srishti Guleria'}
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103b057-6c00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f748688c490>] has type <class 'list'>
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 161f73934c1123e55f34ca97779ba584706f4ccb
2023-01-12 12:26:14 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/161f73934c1123e55f34ca97779ba584706f4ccb
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0105ceb9-1100-0000-0000-000000000000'), 'cntrb_login': 'rooby786', 'cntrb_created_at': '2022-01-10T08:07:54Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 97433873, 'gh_login': 'rooby786', 'gh_url': 'https://api.github.com/users/rooby786', 'gh_html_url': 'https://github.com/rooby786', 'gh_node_id': 'U_kgDOBc65EQ', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/97433873?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/rooby786/followers', 'gh_following_url': 'https://api.github.com/users/rooby786/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/rooby786/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/rooby786/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/rooby786/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/rooby786/orgs', 'gh_repos_url': 'https://api.github.com/users/rooby786/repos', 'gh_events_url': 'https://api.github.com/users/rooby786/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/rooby786/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-04-10T10:20:50Z', 'cntrb_full_name': 'Robeena Anwar'}
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO cntrb_id 0105ceb9-1100-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a87e1f70>] has type <class 'list'>
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 168dad1ba8c36615173c5395c881f3bfe38b328a
2023-01-12 12:26:15 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/168dad1ba8c36615173c5395c881f3bfe38b328a
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Failed to get login from commit hash
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Here is the commit: {'name': 'Eunice Cheng', 'hash': '168dad1ba8c36615173c5395c881f3bfe38b328a', 'email_raw': '[email protected]', 'resolution_status': 'not_unresolved'}
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO email api url https://api.github.com/search/[email protected]+in:email+type:user
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from [email protected]
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Inserting data to unresolved: {'email': '[email protected]', 'name': 'Eunice Cheng'}
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Could not resolve the username from the email. Trying a name only search...
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Search query did not return any results, adding commit's table remains null...
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] ERROR Failed to get login from supplemental data!
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 17bce17839935e317ef566b6afb8354e081b51ae
2023-01-12 12:26:16 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/17bce17839935e317ef566b6afb8354e081b51ae
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('01037add-9b00-0000-0000-000000000000'), 'cntrb_login': 'Kushal-kothari', 'cntrb_created_at': '2019-12-01T07:15:02Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': '127.0.0.1', 'cntrb_canonical': '[email protected]', 'gh_user_id': 58383771, 'gh_login': 'Kushal-kothari', 'gh_url': 'https://api.github.com/users/Kushal-kothari', 'gh_html_url': 'https://github.com/Kushal-kothari', 'gh_node_id': 'MDQ6VXNlcjU4MzgzNzcx', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/58383771?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Kushal-kothari/followers', 'gh_following_url': 'https://api.github.com/users/Kushal-kothari/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Kushal-kothari/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Kushal-kothari/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Kushal-kothari/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Kushal-kothari/orgs', 'gh_repos_url': 'https://api.github.com/users/Kushal-kothari/repos', 'gh_events_url': 'https://api.github.com/users/Kushal-kothari/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Kushal-kothari/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-11-04T19:29:03Z', 'cntrb_full_name': 'Kushal Kothari'}
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO cntrb_id 01037add-9b00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8da43d0>] has type <class 'list'>
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 184bb6c1655a6243724221af9db8c2d965746aca
2023-01-12 12:26:17 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/184bb6c1655a6243724221af9db8c2d965746aca
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0101ec42-1900-0000-0000-000000000000'), 'cntrb_login': 'manangoel99', 'cntrb_created_at': '2017-09-25T08:43:03Z', 'cntrb_email': None, 'cntrb_company': '@wandb ', 'cntrb_location': 'Hyderabad, Telangana', 'cntrb_canonical': '[email protected]', 'gh_user_id': 32260633, 'gh_login': 'manangoel99', 'gh_url': 'https://api.github.com/users/manangoel99', 'gh_html_url': 'https://github.com/manangoel99', 'gh_node_id': 'MDQ6VXNlcjMyMjYwNjMz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/32260633?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/manangoel99/followers', 'gh_following_url': 'https://api.github.com/users/manangoel99/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/manangoel99/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/manangoel99/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/manangoel99/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/manangoel99/orgs', 'gh_repos_url': 'https://api.github.com/users/manangoel99/repos', 'gh_events_url': 'https://api.github.com/users/manangoel99/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/manangoel99/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2023-01-12T12:47:16Z', 'cntrb_full_name': 'Manan Goel'}
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO cntrb_id 0101ec42-1900-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8549af0>] has type <class 'list'>
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 193654efc1328acdc27dc3cba029ba969e9e6702
2023-01-12 12:26:18 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/193654efc1328acdc27dc3cba029ba969e9e6702
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('0103985c-e700-0000-0000-000000000000'), 'cntrb_login': 'Priya730', 'cntrb_created_at': '2020-01-26T12:51:15Z', 'cntrb_email': '[email protected]', 'cntrb_company': '@CHAOSS', 'cntrb_location': 'India', 'cntrb_canonical': '[email protected]', 'gh_user_id': 60316903, 'gh_login': 'Priya730', 'gh_url': 'https://api.github.com/users/Priya730', 'gh_html_url': 'https://github.com/Priya730', 'gh_node_id': 'MDQ6VXNlcjYwMzE2OTAz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/60316903?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/Priya730/followers', 'gh_following_url': 'https://api.github.com/users/Priya730/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/Priya730/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/Priya730/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/Priya730/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/Priya730/orgs', 'gh_repos_url': 'https://api.github.com/users/Priya730/repos', 'gh_events_url': 'https://api.github.com/users/Priya730/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/Priya730/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-22T13:20:22Z', 'cntrb_full_name': 'Priya Srivastava'}
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO cntrb_id 0103985c-e700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a76da7c0>] has type <class 'list'>
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1bde56c9e24beab01374382a2929f994f93edf0a
2023-01-12 12:26:19 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/1bde56c9e24beab01374382a2929f994f93edf0a
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010290ce-4700-0000-0000-000000000000'), 'cntrb_login': 'ElitaNelson', 'cntrb_created_at': '2018-09-06T17:24:22Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': None, 'cntrb_canonical': '[email protected]', 'gh_user_id': 43044423, 'gh_login': 'ElitaNelson', 'gh_url': 'https://api.github.com/users/ElitaNelson', 'gh_html_url': 'https://github.com/ElitaNelson', 'gh_node_id': 'MDQ6VXNlcjQzMDQ0NDIz', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/43044423?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/ElitaNelson/followers', 'gh_following_url': 'https://api.github.com/users/ElitaNelson/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/ElitaNelson/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/ElitaNelson/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/ElitaNelson/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/ElitaNelson/orgs', 'gh_repos_url': 'https://api.github.com/users/ElitaNelson/repos', 'gh_events_url': 'https://api.github.com/users/ElitaNelson/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/ElitaNelson/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-04-06T23:28:16Z', 'cntrb_full_name': 'Elita Nelson'}
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO cntrb_id 010290ce-4700-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO [<augur.application.db.models.augur_data.Contributor object at 0x7f74a8488700>] has type <class 'list'>
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO Updating now resolved email [email protected]
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO Trying to create endpoint from commit hash: 1be4b2328dd9e074933a2909eef8e6ec9066ff39
2023-01-12 12:26:20 blueberry insert_facade_contributors[59440] INFO Url: https://api.github.com/repos/chaoss/augur/commits/1be4b2328dd9e074933a2909eef8e6ec9066ff39
2023-01-12 12:26:21 blueberry insert_facade_contributors[59440] INFO Successfully retrieved data from github for email: [email protected]
2023-01-12 12:26:21 blueberry insert_facade_contributors[59440] INFO {'cntrb_id': UUID('010467ab-1a00-0000-0000-000000000000'), 'cntrb_login': 'meetagrawal09', 'cntrb_created_at': '2020-11-03T17:02:01Z', 'cntrb_email': None, 'cntrb_company': None, 'cntrb_location': 'Nagpur, Maharashtra', 'cntrb_canonical': '[email protected]', 'gh_user_id': 73902874, 'gh_login': 'meetagrawal09', 'gh_url': 'https://api.github.com/users/meetagrawal09', 'gh_html_url': 'https://github.com/meetagrawal09', 'gh_node_id': 'MDQ6VXNlcjczOTAyODc0', 'gh_avatar_url': 'https://avatars.githubusercontent.com/u/73902874?v=4', 'gh_gravatar_id': '', 'gh_followers_url': 'https://api.github.com/users/meetagrawal09/followers', 'gh_following_url': 'https://api.github.com/users/meetagrawal09/following{/other_user}', 'gh_gists_url': 'https://api.github.com/users/meetagrawal09/gists{/gist_id}', 'gh_starred_url': 'https://api.github.com/users/meetagrawal09/starred{/owner}{/repo}', 'gh_subscriptions_url': 'https://api.github.com/users/meetagrawal09/subscriptions', 'gh_organizations_url': 'https://api.github.com/users/meetagrawal09/orgs', 'gh_repos_url': 'https://api.github.com/users/meetagrawal09/repos', 'gh_events_url': 'https://api.github.com/users/meetagrawal09/events{/privacy}', 'gh_received_events_url': 'https://api.github.com/users/meetagrawal09/received_events', 'gh_type': 'User', 'gh_site_admin': False, 'cntrb_last_used': '2022-12-28T11:59:39Z', 'cntrb_full_name': 'Meet Agrawal'}
2023-01-12 12:26:21 blueberry insert_facade_contributors[59440] INFO cntrb_id 010467ab-1a00-0000-0000-000000000000 found in database and assigned to enriched data
2023-01-12 12:26:21 blueberry insert_facade_contributors[59440] INFO Creating alias for email: [email protected]