-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExamSession250324.txt
2102 lines (2014 loc) · 137 KB
/
ExamSession250324.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
[Chargement des réponses...] Nom du fichier : /soratra/answers_25-03-24.csv
[... Chargement des réponses] Nombre de réponses chargées : 80
[Correction d'un étudiant...] Réf étudiante : STD22012
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Sheddy00/poja-soratra-std22012, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22012-194816164
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Sheddy00/poja-soratra-std22012/actions/workflows/cd-storage-efs.yml, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Sheddy00/poja-soratra-std22012, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22012-139254281
cd /tmp/ExamSession-STD22012-139254281 && gh run view actions
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Sheddy00/poja-soratra-std22012/actions/workflows/cd-storage-efs.yml, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Sheddy00/poja-soratra-std22012, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22012-339396133
cd /tmp/ExamSession-STD22012-339396133 && gh run view actions
Non trouvé : 0 point
PUT https://github.com/Sheddy00/poja-soratra-std22012/actions/runs/8416111706/job/23042424910/soratra/STD22012
Statut http reçu : 403
GET https://github.com/Sheddy00/poja-soratra-std22012/actions/runs/8416111706/job/23042424910/soratra/STD22012
Statut http reçu : 404
Erreur : com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false')
at [Source: (StringReader); line: 7, column: 2]
[... Correction d'un étudiant] Réf étudiante : STD22012, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22056
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/ManoaHEI/poja-soratra-std22056, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22056-147225542
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/ManoaHEI/poja-soratra-std22056/actions/runs/8415545610/job/23041169831, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/ManoaHEI/poja-soratra-std22056, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22056-766986529
cd /tmp/ExamSession-STD22056-766986529 && gh run view 8415545610
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/ManoaHEI/poja-soratra-std22056/actions/runs/8415545610/job/23041169831, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/ManoaHEI/poja-soratra-std22056, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22056-364069300
cd /tmp/ExamSession-STD22056-364069300 && gh run view 8415545610
Non trouvé : 0 point
PUT null/soratra/STD22056
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22056
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22056, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22057
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/faniryKely/poja-soratra-STD22057, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22057-538873769
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/faniryKely/poja-soratra-STD22057/actions/runs/8415560443/job/23040878037, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/faniryKely/poja-soratra-STD22057, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22057-121687602
cd /tmp/ExamSession-STD22057-121687602 && gh run view 8415560443
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/faniryKely/poja-soratra-STD22057/actions/runs/8415560443/job/23040878037, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/faniryKely/poja-soratra-STD22057, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22057-75810995
cd /tmp/ExamSession-STD22057-75810995 && gh run view 8415560443
Non trouvé : 0 point
PUT https://ffm5rtt6w1.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22057
Statut http reçu : 400
GET https://ffm5rtt6w1.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22057
Statut http reçu : 405
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22057, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD21089
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/HEI-Andy/poja-soratra-std21089, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21089-151682340
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/HEI-Andy/poja-soratra-std21089/actions/runs/8415861439/job/23041653796, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/HEI-Andy/poja-soratra-std21089, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21089-367710618
cd /tmp/ExamSession-STD21089-367710618 && gh run view 8415861439
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/HEI-Andy/poja-soratra-std21089/actions/runs/8415861439/job/23041653796, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/HEI-Andy/poja-soratra-std21089, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21089-429672602
cd /tmp/ExamSession-STD21089-429672602 && gh run view 8415861439
Non trouvé : 0 point
Erreur : java.lang.IllegalArgumentException: invalid URI scheme arn
Erreur : java.lang.IllegalArgumentException: invalid URI scheme arn
PUT arn:aws:cloudformation:eu-west-3:851725449686:stack/preprod-compute-poja-soratra-std21089/501f3a30-ea6e-11ee-a98a-0e5d06b9fcb5/soratra/STD21089
GET arn:aws:cloudformation:eu-west-3:851725449686:stack/preprod-compute-poja-soratra-std21089/501f3a30-ea6e-11ee-a98a-0e5d06b9fcb5/soratra/STD21089
[... Correction d'un étudiant] Réf étudiante : STD21089, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22098
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Tombosoa/poja-soratra-std22098, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22098-514893253
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Tombosoa/poja-soratra-std22098/actions/runs/8416158006/job/23042451554, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Tombosoa/poja-soratra-std22098, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22098-335836188
cd /tmp/ExamSession-STD22098-335836188 && gh run view 8416158006
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/Tombosoa/poja-soratra-std22098/actions/runs/8416158006/job/23042451554, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Tombosoa/poja-soratra-std22098, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22098-475506734
cd /tmp/ExamSession-STD22098-475506734 && gh run view 8416158006
Trouvé : 3 points
PUT https://bnxdilsxrj.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22098
Statut http reçu : 500
GET https://bnxdilsxrj.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22098
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
Les Url sont présignées, et sont de poja.soratra : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22098, points obtenus : 18
[Correction d'un étudiant...] Réf étudiante : STD22054
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/nirinaHelena/poja-soratra-std22054.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22054-477986181
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/nirinaHelena/poja-soratra-std22054/actions/runs/8415553753, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/nirinaHelena/poja-soratra-std22054.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22054-437541274
cd /tmp/ExamSession-STD22054-437541274 && gh run view actions
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/nirinaHelena/poja-soratra-std22054/actions/runs/8415553753, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/nirinaHelena/poja-soratra-std22054.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22054-781935196
cd /tmp/ExamSession-STD22054-781935196 && gh run view actions
Non trouvé : 0 point
PUT https://96kga94rx7.execute-api.eu-west-3.amazonaws.com/Preprod/soratra/STD22054
Statut http reçu : 403
GET https://96kga94rx7.execute-api.eu-west-3.amazonaws.com/Preprod/soratra/STD22054
Statut http reçu : 403
Erreur : com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "message" (class school.hei.corrector.soratra.Soratra), not marked as ignorable (2 known properties: "original_url", "transformed_url"])
at [Source: (String)"{"message":"Forbidden"}"; line: 1, column: 13] (through reference chain: school.hei.corrector.soratra.Soratra["message"])
[... Correction d'un étudiant] Réf étudiante : STD22054, points obtenus : 6
[Correction d'un étudiant...] Réf étudiante : STD22052
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/RickaPrincy/poja-soratra-std22052, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22052-981596865
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/RickaPrincy/poja-soratra-std22052/actions/runs/8415628585/job/23041044179, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/RickaPrincy/poja-soratra-std22052, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22052-155030285
cd /tmp/ExamSession-STD22052-155030285 && gh run view 8415628585
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/RickaPrincy/poja-soratra-std22052/actions/runs/8415628585/job/23041044179, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/RickaPrincy/poja-soratra-std22052, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22052-711777667
cd /tmp/ExamSession-STD22052-711777667 && gh run view 8415628585
Trouvé : 3 points
PUT https://10n8r4k3bg.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22052
200 OK reçu : 6 points
GET https://10n8r4k3bg.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22052
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
Les Url sont présignées, et sont de poja.soratra : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22052, points obtenus : 24
[Correction d'un étudiant...] Réf étudiante : STD21084
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Sarobidy-nantenaina/poja-soratra-std21084, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21084-427441733
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Sarobidy-nantenaina/poja-soratra-std21084/actions/runs/8416231790/job/23042662606, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Sarobidy-nantenaina/poja-soratra-std21084, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21084-569492017
cd /tmp/ExamSession-STD21084-569492017 && gh run view 8416231790
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/Sarobidy-nantenaina/poja-soratra-std21084/actions/runs/8416231790/job/23042662606, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Sarobidy-nantenaina/poja-soratra-std21084, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD21084-455068325
cd /tmp/ExamSession-STD21084-455068325 && gh run view 8416231790
Trouvé : 3 points
PUT https://bom394qy05.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD21084
Statut http reçu : 502
GET https://bom394qy05.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD21084
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
Les Url sont présignées, et sont de poja.soratra : 2 points
[... Correction d'un étudiant] Réf étudiante : STD21084, points obtenus : 18
[Correction d'un étudiant...] Réf étudiante : STD22097
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/lovasoa3/poja-soratra-std22097, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22097-824343334
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/lovasoa3/poja-soratra-std22097/actions/runs/8415562193/job/23041993346, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/lovasoa3/poja-soratra-std22097, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22097-388912914
cd /tmp/ExamSession-STD22097-388912914 && gh run view 8415562193
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/lovasoa3/poja-soratra-std22097/actions/runs/8415562193/job/23041993346, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/lovasoa3/poja-soratra-std22097, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22097-176655074
cd /tmp/ExamSession-STD22097-176655074 && gh run view 8415562193
Non trouvé : 0 point
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22097
GET null/soratra/STD22097
[... Correction d'un étudiant] Réf étudiante : STD22097, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22050
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/AndoKami/poja-soratra-std22050, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22050-667741528
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/AndoKami/poja-soratra-std22050/actions/runs/8415925202/job/23041813788, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/AndoKami/poja-soratra-std22050, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22050-379549804
cd /tmp/ExamSession-STD22050-379549804 && gh run view 8415925202
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/AndoKami/poja-soratra-std22050/actions/runs/8415925202/job/23041813788, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/AndoKami/poja-soratra-std22050, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22050-341151624
cd /tmp/ExamSession-STD22050-341151624 && gh run view 8415925202
Non trouvé : 0 point
PUT https://npwf8nlfj2.execute-api.eu-west-3.amazonaws.com/Prod/ping/soratra/STD22050
Statut http reçu : 404
GET https://npwf8nlfj2.execute-api.eu-west-3.amazonaws.com/Prod/ping/soratra/STD22050
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22050, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22095
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Marc985/poja-soratra-std22095, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22095-870095039
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Marc985/poja-soratra-std22095/actions/runs/8415450084/job/23040719502, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Marc985/poja-soratra-std22095, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22095-774346841
cd /tmp/ExamSession-STD22095-774346841 && gh run view 8415450084
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/Marc985/poja-soratra-std22095/actions/runs/8415450084/job/23040719502, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Marc985/poja-soratra-std22095, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22095-617156594
cd /tmp/ExamSession-STD22095-617156594 && gh run view 8415450084
Trouvé : 3 points
PUT https://jvzk0ip4g5.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22095
GET https://jvzk0ip4g5.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22095
Statut http reçu : 404
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22095, points obtenus : 8
[Correction d'un étudiant...] Réf étudiante : STD22092
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/tsanta-niaina-MT/poja-soratra-std22092, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22092-597580341
Version de poja non reconnue : 0 point
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/tsanta-niaina-MT/poja-soratra-std22092, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22092-479709948
Erreur : java.lang.NullPointerException: Cannot invoke "String.replace(java.lang.CharSequence, java.lang.CharSequence)" because "runUrl" is null
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/tsanta-niaina-MT/poja-soratra-std22092, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22092-244143833
PUT null/soratra/STD22092
Erreur : java.lang.NullPointerException: Cannot invoke "String.replace(java.lang.CharSequence, java.lang.CharSequence)" because "runUrl" is null
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22092
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22092, points obtenus : 0
[Correction d'un étudiant...] Réf étudiante : STD22093
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/mampiononavoahary/poja-soratra-std22093, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22093-8019483
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/mampiononavoahary/poja-soratra-std22093/actions/runs/8415770066, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/mampiononavoahary/poja-soratra-std22093, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22093-450827632
cd /tmp/ExamSession-STD22093-450827632 && gh run view actions
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/mampiononavoahary/poja-soratra-std22093/actions/runs/8415770066, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/mampiononavoahary/poja-soratra-std22093, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22093-699003630
cd /tmp/ExamSession-STD22093-699003630 && gh run view actions
Non trouvé : 0 point
PUT null/soratra/STD22093
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22093
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22093, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22090
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/kareemnomenjanahary/poja-soratra-std22090.git, branche : preprod
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/kareemnomenjanahary/poja-soratra-std22090.git, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/kareemnomenjanahary/poja-soratra-std22090.git, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22090
GET null/soratra/STD22090
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22090, points obtenus : 0
[Correction d'un étudiant...] Réf étudiante : STD22019
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/MihajaFi/poja-soratra-std22019, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22019-656746872
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/MihajaFi/poja-soratra-std22019/actions/runs/8415499080/job/23040738586, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/MihajaFi/poja-soratra-std22019, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22019-742674033
cd /tmp/ExamSession-STD22019-742674033 && gh run view 8415499080
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/MihajaFi/poja-soratra-std22019/actions/runs/8415499080/job/23040738586, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/MihajaFi/poja-soratra-std22019, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22019-350311152
cd /tmp/ExamSession-STD22019-350311152 && gh run view 8415499080
Trouvé : 3 points
PUT https://sog5klncc1.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22019
GET https://sog5klncc1.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22019
Statut http reçu : 504
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22019, points obtenus : 12
[Correction d'un étudiant...] Réf étudiante : STD22016
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/tyfia-rak/poja-soratra-std22016, branche : preprod
Les URL ne sont pas présignées, ou ne sont pas de poja.sarisary : BlackAndWhite{original_url='https://original.url', transformed_url='https://transformed.url'}
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=https://github.com/tyfia-rak/poja-soratra-std22016/actions/runs/8416030033/job/23042080606, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/tyfia-rak/poja-soratra-std22016, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
health-check ? branch=preprod, runUrl=https://github.com/tyfia-rak/poja-soratra-std22016/actions/runs/8416030033/job/23042080606, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/tyfia-rak/poja-soratra-std22016, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
PUT null/soratra/STD22016
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22016
[... Correction d'un étudiant] Réf étudiante : STD22016, points obtenus : 0
[Correction d'un étudiant...] Réf étudiante : STD22017
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/ZoFitahiana/poja-soratra-std22017, branche : preprod
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=https://github.com/ZoFitahiana/poja-soratra-std22017/actions/runs/8415573520/job/23040908732, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/ZoFitahiana/poja-soratra-std22017, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
health-check ? branch=preprod, runUrl=https://github.com/ZoFitahiana/poja-soratra-std22017/actions/runs/8415573520/job/23040908732, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/ZoFitahiana/poja-soratra-std22017, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
PUT https://352zgr72lc.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22017
Statut http reçu : 404
GET https://352zgr72lc.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22017
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22017, points obtenus : 4
[Correction d'un étudiant...] Réf étudiante : STD22058
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/fandresenaravohary/poja-soratra-std22058, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22058-21956126
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/fandresenaravohary/poja-soratra-std22058/actions/runs/8415877601/job/23041740446, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/fandresenaravohary/poja-soratra-std22058, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22058-627275481
cd /tmp/ExamSession-STD22058-627275481 && gh run view 8415877601
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/fandresenaravohary/poja-soratra-std22058/actions/runs/8415877601/job/23041740446, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/fandresenaravohary/poja-soratra-std22058, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22058-772041714
cd /tmp/ExamSession-STD22058-772041714 && gh run view 8415877601
Trouvé : 3 points
PUT https://75wamrvlrf.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22058
Statut http reçu : 404
GET https://75wamrvlrf.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22058
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
[... Correction d'un étudiant] Réf étudiante : STD22058, points obtenus : 8
at [Source: (String)""; line: 1, column: 0]
[Correction d'un étudiant...] Réf étudiante : STD22059
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Ravo1401/poja-soratra-std22059, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22059-918541655
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Ravo1401/poja-soratra-std22059/actions/runs/8415640906/job/23041076083, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Ravo1401/poja-soratra-std22059, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22059-330537437
cd /tmp/ExamSession-STD22059-330537437 && gh run view 8415640906
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Ravo1401/poja-soratra-std22059/actions/runs/8415640906/job/23041076083, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Ravo1401/poja-soratra-std22059, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22059-18873013
cd /tmp/ExamSession-STD22059-18873013 && gh run view 8415640906
Non trouvé : 0 point
PUT null/soratra/STD22059
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22059
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22059, points obtenus : 6
[Correction d'un étudiant...] Réf étudiante : STD22045
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Lovatiana15/poja-soratra-std22045, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22045-741988869
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Lovatiana15/poja-soratra-std22045/actions/runs/8415541541/job/23040833419, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Lovatiana15/poja-soratra-std22045, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22045-558770038
cd /tmp/ExamSession-STD22045-558770038 && gh run view 8415541541
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Lovatiana15/poja-soratra-std22045/actions/runs/8415541541/job/23040833419, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Lovatiana15/poja-soratra-std22045, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22045-427553900
cd /tmp/ExamSession-STD22045-427553900 && gh run view 8415541541
Non trouvé : 0 point
PUT https://ldcxfxtwf3.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22045
Statut http reçu : 504
GET https://ldcxfxtwf3.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22045
Statut http reçu : 504
Erreur : com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "message" (class school.hei.corrector.soratra.Soratra), not marked as ignorable (2 known properties: "original_url", "transformed_url"])
at [Source: (String)"{"message": "Endpoint request timed out"}"; line: 1, column: 14] (through reference chain: school.hei.corrector.soratra.Soratra["message"])
[... Correction d'un étudiant] Réf étudiante : STD22045, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22089
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/andydevlabs/poja-soratra-std22089.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22089-722928633
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/andydevlabs/poja-soratra-std22089.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22089-108987884
Erreur : java.lang.NullPointerException: Cannot invoke "String.replace(java.lang.CharSequence, java.lang.CharSequence)" because "runUrl" is null
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/andydevlabs/poja-soratra-std22089.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22089-825459742
Erreur : java.lang.NullPointerException: Cannot invoke "String.replace(java.lang.CharSequence, java.lang.CharSequence)" because "runUrl" is null
PUT null/soratra/STD22089
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22089
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22089, points obtenus : 6
[Correction d'un étudiant...] Réf étudiante : STD22001
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/loiqua/poja-soratra-std22001.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22001-970403256
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 non trouvée : 0 point
health-check ? branch=preprod, runUrl=https://github.com/loiqua/poja-soratra-std22001/actions/runs/8416121292/job/23042311010, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/loiqua/poja-soratra-std22001.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22001-522123938
cd /tmp/ExamSession-STD22001-522123938 && gh run view 8416121292
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/loiqua/poja-soratra-std22001/actions/runs/8416121292/job/23042311010, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/loiqua/poja-soratra-std22001.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22001-183277523
cd /tmp/ExamSession-STD22001-183277523 && gh run view 8416121292
Non trouvé : 0 point
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22001
GET null/soratra/STD22001
[... Correction d'un étudiant] Réf étudiante : STD22001, points obtenus : 4
[Correction d'un étudiant...] Réf étudiante : STD22046
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/KevinDonovan2/poja-soratra-std22046, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22046-548362627
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/KevinDonovan2/poja-soratra-std22046/actions/runs/8415520314/job/23040784345, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/KevinDonovan2/poja-soratra-std22046, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22046-898169207
cd /tmp/ExamSession-STD22046-898169207 && gh run view 8415520314
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/KevinDonovan2/poja-soratra-std22046/actions/runs/8415520314/job/23040784345, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/KevinDonovan2/poja-soratra-std22046, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22046-202950759
cd /tmp/ExamSession-STD22046-202950759 && gh run view 8415520314
Non trouvé : 0 point
PUT https://ch530xmh0j.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22046
Statut http reçu : 404
GET https://ch530xmh0j.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22046
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22046, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22087
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/allan-12/poja-soratra-std22087, branche : preprod
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/allan-12/poja-soratra-std22087, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
health-check ? branch=preprod, runUrl=null, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/allan-12/poja-soratra-std22087, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22087
GET null/soratra/STD22087
[... Correction d'un étudiant] Réf étudiante : STD22087, points obtenus : 0
[Correction d'un étudiant...] Réf étudiante : STD22044
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/andyxrakoto/poja-soratra-std22044, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22044-42737085
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/andyxrakoto/poja-soratra-std22044/actions/runs/8415525620/job/23040796513, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/andyxrakoto/poja-soratra-std22044, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22044-364915035
cd /tmp/ExamSession-STD22044-364915035 && gh run view 8415525620
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/andyxrakoto/poja-soratra-std22044/actions/runs/8415525620/job/23040796513, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/andyxrakoto/poja-soratra-std22044, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22044-181912620
cd /tmp/ExamSession-STD22044-181912620 && gh run view 8415525620
Non trouvé : 0 point
PUT https://eu-west-3.console.aws.amazon.com/apigateway/main/apis/675mgk2rrk/resources?api=675mgk2rrk®ion=eu-west-3/soratra/STD22044
Statut http reçu : 405
GET https://eu-west-3.console.aws.amazon.com/apigateway/main/apis/675mgk2rrk/resources?api=675mgk2rrk®ion=eu-west-3/soratra/STD22044
200 OK reçu : 2 points
Erreur : com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false')
at [Source: (String)"
<!DOCTYPE html>
<html lang="en">
<head><style >html { background-color: #f2f3f3; }</style></head>
<body class="">
<script type="text/javascript">
[... Correction d'un étudiant] Réf étudiante : STD22044, points obtenus : 4
(function() {
var hashArgs = "#" + (window.location.href.split("#")[1] || "");
var queryParams = window.location.search ? (window.location.search + "&") : "?";
var encodedHashArgs = "hashArgs=" + encodeURIComponent( hashArgs );
var redirectUrl = window.location.pathname + queryParams + encodedHashArgs;
[Correction d'un étudiant...] Réf étudiante : STD22085
Attribution de bonus si hébergement personnel
wi"[truncated 404 chars]; line: 2, column: 2]
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/ManoaRatsimandresy/poja-soratra-std22085, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22085-492067303
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/ManoaRatsimandresy/poja-soratra-std22085/actions/runs/8416169303, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/ManoaRatsimandresy/poja-soratra-std22085, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22085-238274681
cd /tmp/ExamSession-STD22085-238274681 && gh run view actions
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/ManoaRatsimandresy/poja-soratra-std22085/actions/runs/8416169303, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/ManoaRatsimandresy/poja-soratra-std22085, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22085-716108791
cd /tmp/ExamSession-STD22085-716108791 && gh run view actions
Non trouvé : 0 point
PUT null/soratra/STD22085
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22085
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22085, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22086
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/HarenaFiantso/poja-soratra-std22086.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22086-675110903
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/HarenaFiantso/poja-soratra-std22086/actions/runs/8416187068/job/23042523866, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/HarenaFiantso/poja-soratra-std22086.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22086-838532582
cd /tmp/ExamSession-STD22086-838532582 && gh run view 8416187068
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/HarenaFiantso/poja-soratra-std22086/actions/runs/8416187068/job/23042523866, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/HarenaFiantso/poja-soratra-std22086.git, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22086-427568261
cd /tmp/ExamSession-STD22086-427568261 && gh run view 8416187068
Trouvé : 3 points
PUT https://6qxdialnv6.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22086
Statut http reçu : 504
GET https://6qxdialnv6.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22086
200 OK reçu : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22086, points obtenus : 10
[Correction d'un étudiant...] Réf étudiante : STD22083
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Erreur : com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'OK': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false')
at [Source: (String)"OK"; line: 1, column: 3]
Clonant : https://github.com/Zo-Tsilavina/poja-soratra-std22083, branche : preprod
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Zo-Tsilavina/poja-soratra-std22083/actions/runs/8415725016, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Zo-Tsilavina/poja-soratra-std22083, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
health-check ? branch=preprod, runUrl=https://github.com/Zo-Tsilavina/poja-soratra-std22083/actions/runs/8415725016, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Zo-Tsilavina/poja-soratra-std22083, branche : preprod
Erreur : org.eclipse.jgit.api.errors.TransportException: Remote branch 'preprod' not found in upstream origin
PUT null/soratra/STD22083
GET null/soratra/STD22083
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22083, points obtenus : 4
[Correction d'un étudiant...] Réf étudiante : STD22040
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Dinoh04/poja-soratra-std22040/tree/main, branche : preprod
Version de poja non reconnue : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Dinoh04/poja-soratra-std22040/actions/runs/8415772259, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Dinoh04/poja-soratra-std22040/tree/main, branche : preprod
Erreur : org.eclipse.jgit.api.errors.InvalidRemoteException: Invalid remote: origin
health-check ? branch=preprod, runUrl=https://github.com/Dinoh04/poja-soratra-std22040/actions/runs/8415772259, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Dinoh04/poja-soratra-std22040/tree/main, branche : preprod
Erreur : org.eclipse.jgit.api.errors.InvalidRemoteException: Invalid remote: origin
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22040
GET null/soratra/STD22040
[... Correction d'un étudiant] Réf étudiante : STD22040, points obtenus : 0
[Correction d'un étudiant...] Réf étudiante : STD22081
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/kirisaki-vk/poja-soratra-std22081, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22081-69770579
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/kirisaki-vk/poja-soratra-std22081/actions/runs/8415528446/job/23040921553, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/kirisaki-vk/poja-soratra-std22081, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22081-982393674
cd /tmp/ExamSession-STD22081-982393674 && gh run view 8415528446
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/kirisaki-vk/poja-soratra-std22081/actions/runs/8415528446/job/23040921553, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/kirisaki-vk/poja-soratra-std22081, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22081-109257815
cd /tmp/ExamSession-STD22081-109257815 && gh run view 8415528446
Trouvé : 3 points
PUT https://0khjh4lwpc.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22081
200 OK reçu : 6 points
GET https://0khjh4lwpc.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22081
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
Les Url sont présignées, et sont de poja.soratra : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22081, points obtenus : 24
[Correction d'un étudiant...] Réf étudiante : STD22082
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/mvjdev/poja-soratra-std22082, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22082-538469988
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/mvjdev/poja-soratra-std22082/actions/runs/8416153437, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/mvjdev/poja-soratra-std22082, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22082-636981409
cd /tmp/ExamSession-STD22082-636981409 && gh run view actions
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/mvjdev/poja-soratra-std22082/actions/runs/8416153437, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/mvjdev/poja-soratra-std22082, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22082-468237550
cd /tmp/ExamSession-STD22082-468237550 && gh run view actions
Non trouvé : 0 point
PUT null/soratra/STD22082
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
GET null/soratra/STD22082
[... Correction d'un étudiant] Réf étudiante : STD22082, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : SDT22027
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
stdRef non trouvée dans nom du projet git : malus -2 points
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Astna17/poja-soratra-std22027, branche : preprod
... clonage réussi dans : /tmp/ExamSession-SDT22027-357337895
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Astna17/poja-soratra-std22027/actions/runs/8415806959/job/23041511425, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Astna17/poja-soratra-std22027, branche : preprod
... clonage réussi dans : /tmp/ExamSession-SDT22027-900624711
cd /tmp/ExamSession-SDT22027-900624711 && gh run view 8415806959
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Astna17/poja-soratra-std22027/actions/runs/8415806959/job/23041511425, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Astna17/poja-soratra-std22027, branche : preprod
... clonage réussi dans : /tmp/ExamSession-SDT22027-940906490
cd /tmp/ExamSession-SDT22027-940906490 && gh run view 8415806959
Non trouvé : 0 point
PUT https://eu-west-3.console.aws.amazon.com/apigateway/main/apis/ydnm1lfkkb/resources?api=ydnm1lfkkb®ion=eu-west-3/soratra/SDT22027
Statut http reçu : 405
GET https://eu-west-3.console.aws.amazon.com/apigateway/main/apis/ydnm1lfkkb/resources?api=ydnm1lfkkb®ion=eu-west-3/soratra/SDT22027
200 OK reçu : 2 points
Erreur : com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false')
at [Source: (String)"
<!DOCTYPE html>
[... Correction d'un étudiant] Réf étudiante : SDT22027, points obtenus : 2
<html lang="en">
<head><style >html { background-color: #f2f3f3; }</style></head>
[Correction d'un étudiant...] Réf étudiante : STD22080
<body class="">
Attribution de bonus si hébergement personnel
<script type="text/javascript">
Vérification de noms: stdRef et nom du projet
(function() {
Verification de la version de poja (12.4.1)
var hashArgs = "#" + (window.location.href.split("#")[1] || "");
var queryParams = window.location.search ? (window.location.search + "&") : "?";
Clonant : https://github.com/Maharavo1/poja-soratra-std22080, branche : preprod
var encodedHashArgs = "hashArgs=" + encodeURIComponent( hashArgs );
var redirectUrl = window.location.pathname + queryParams + encodedHashArgs;
wi"[truncated 404 chars]; line: 2, column: 2]
... clonage réussi dans : /tmp/ExamSession-STD22080-720236299
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Maharavo1/poja-soratra-std22080/actions/runs/8416139117/job/23042437728, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Maharavo1/poja-soratra-std22080, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22080-895834652
cd /tmp/ExamSession-STD22080-895834652 && gh run view 8416139117
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/Maharavo1/poja-soratra-std22080/actions/runs/8416139117/job/23042437728, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Maharavo1/poja-soratra-std22080, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22080-901718472
cd /tmp/ExamSession-STD22080-901718472 && gh run view 8416139117
Trouvé : 3 points
PUT https://32x18k1nfh.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22080
Statut http reçu : 404
GET https://32x18k1nfh.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22080
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22080, points obtenus : 8
[Correction d'un étudiant...] Réf étudiante : STD22007
Attribution de bonus si hébergement personnel
Bonus hébergement : 4 points
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Eclisher/Poja-soratra-std22007, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22007-288976954
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Eclisher/Poja-soratra-std22007/actions/runs/8415715973/job/23041269566, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Eclisher/Poja-soratra-std22007, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22007-405194065
cd /tmp/ExamSession-STD22007-405194065 && gh run view 8415715973
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Eclisher/Poja-soratra-std22007/actions/runs/8415715973/job/23041269566, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Eclisher/Poja-soratra-std22007, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22007-438393189
cd /tmp/ExamSession-STD22007-438393189 && gh run view 8415715973
Non trouvé : 0 point
PUT https://ojqie12pr3.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22007
Statut http reçu : 504
GET https://ojqie12pr3.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22007
200 OK reçu : 2 points
Format de réponse correct, déserialisation OK : 2 points
Les Url sont présignées, et sont de poja.soratra : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22007, points obtenus : 12
[Correction d'un étudiant...] Réf étudiante : STD22049
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Harenabs21/poja-soratra-std22049, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22049-213055434
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Harenabs21/poja-soratra-std22049/actions/runs/8415915624/job/23041974945, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Harenabs21/poja-soratra-std22049, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22049-542641928
cd /tmp/ExamSession-STD22049-542641928 && gh run view 8415915624
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Harenabs21/poja-soratra-std22049/actions/runs/8415915624/job/23041974945, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Harenabs21/poja-soratra-std22049, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22049-895641844
cd /tmp/ExamSession-STD22049-895641844 && gh run view 8415915624
Non trouvé : 0 point
PUT https://ml3pq96iwd.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22049
Statut http reçu : 504
GET https://ml3pq96iwd.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22049
200 OK reçu : 2 points
[... Correction d'un étudiant] Réf étudiante : STD22049, points obtenus : 4
[Correction d'un étudiant...] Réf étudiante : STD22005
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/FanomezanaNat/poja-soratra-std22005, branche : preprod
Erreur : com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "originalURL" (class school.hei.corrector.soratra.Soratra), not marked as ignorable (2 known properties: "original_url", "transformed_url"])
at [Source: (String)"{"originalURL":"https://preprod-bucket-poja-soratra-std22049-bucket-titsstfutzvj.s3.eu-west-3.amazonaws.com/STD22049-original.txt?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEHYaCWV1LXdlc3QtMyJHMEUCIBHZxBNdY02tfeTGljInsBPy6ssOD9ijEq16%2BVOHRbYCAiEAxyfWGOgiWWNMjbF2Qv%2FNZ8iW9nvi0WguztJOS0GpkVAq3AMIj%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4NTE3MjU0NDk2ODYiDGkUxrtXRJ7GQeiUuyqwA406JYwRF6vrf7N%2FIyAl9nSeFSaBkZMz%2BLXIfURJtZ%2B%2BY4XQjlQQC35TXPt06xV8wcHIlHe0pQUSl%2FA1xvEX9hRbY1HtYT%2Bhk3Aq0ZDWdr%2FfkQ6d9hER7"[truncated 2505 chars]; line: 1, column: 17] (through reference chain: school.hei.corrector.soratra.Soratra["originalURL"])
... clonage réussi dans : /tmp/ExamSession-STD22005-505660147
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/FanomezanaNat/poja-soratra-std22005/actions/runs/8415741122/job/23041469729, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/FanomezanaNat/poja-soratra-std22005, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22005-881829489
cd /tmp/ExamSession-STD22005-881829489 && gh run view 8415741122
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/FanomezanaNat/poja-soratra-std22005/actions/runs/8415741122/job/23041469729, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/FanomezanaNat/poja-soratra-std22005, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22005-573154462
cd /tmp/ExamSession-STD22005-573154462 && gh run view 8415741122
Trouvé : 3 points
PUT https://n6vrygfwjl.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22005
Statut http reçu : 404
GET https://n6vrygfwjl.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22005
Statut http reçu : 404
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
at [Source: (String)""; line: 1, column: 0]
[... Correction d'un étudiant] Réf étudiante : STD22005, points obtenus : 8
[Correction d'un étudiant...] Réf étudiante : STD22006
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/fanambynana/poja-soratra-std22006, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22006-377397337
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/fanambynana/poja-soratra-std22006/actions/runs/8415684565/job/23041460856, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/fanambynana/poja-soratra-std22006, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22006-9730573
cd /tmp/ExamSession-STD22006-9730573 && gh run view 8415684565
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/fanambynana/poja-soratra-std22006/actions/runs/8415684565/job/23041460856, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/fanambynana/poja-soratra-std22006, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22006-319393246
cd /tmp/ExamSession-STD22006-319393246 && gh run view 8415684565
Trouvé : 3 points
PUT https://7b504icj31.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22006
Statut http reçu : 404
GET https://7b504icj31.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22006
Statut http reçu : 404
[... Correction d'un étudiant] Réf étudiante : STD22006, points obtenus : 8
Erreur : com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input
[Correction d'un étudiant...] Réf étudiante : STD22047
at [Source: (String)""; line: 1, column: 0]
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Ngitangita/poja-soratra-std22047, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22047-935959995
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Ngitangita/poja-soratra-std22047/actions/runs/8416071773/job/23042182618, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Ngitangita/poja-soratra-std22047, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22047-531935731
cd /tmp/ExamSession-STD22047-531935731 && gh run view 8416071773
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Ngitangita/poja-soratra-std22047/actions/runs/8416071773/job/23042182618, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Ngitangita/poja-soratra-std22047, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22047-709860959
cd /tmp/ExamSession-STD22047-709860959 && gh run view 8416071773
Non trouvé : 0 point
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22047
GET null/soratra/STD22047
[... Correction d'un étudiant] Réf étudiante : STD22047, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22048
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Sullivan1301/poja-soratra-std22048, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22048-214389914
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Sullivan1301/poja-soratra-std22048/actions/runs/8415770861/job/23041414229, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Sullivan1301/poja-soratra-std22048, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22048-304610927
cd /tmp/ExamSession-STD22048-304610927 && gh run view 8415770861
Non trouvé : 0 point
health-check ? branch=preprod, runUrl=https://github.com/Sullivan1301/poja-soratra-std22048/actions/runs/8415770861/job/23041414229, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Sullivan1301/poja-soratra-std22048, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22048-356224097
cd /tmp/ExamSession-STD22048-356224097 && gh run view 8415770861
Non trouvé : 0 point
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
PUT null/soratra/STD22048
GET null/soratra/STD22048
Erreur : java.lang.IllegalArgumentException: URI with undefined scheme
[... Correction d'un étudiant] Réf étudiante : STD22048, points obtenus : 2
[Correction d'un étudiant...] Réf étudiante : STD22078
Attribution de bonus si hébergement personnel
Vérification de noms: stdRef et nom du projet
Verification de la version de poja (12.4.1)
Clonant : https://github.com/Abi-Nf/poja-soratra-std22078, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22078-8595702
Dépôt cloné : 0 point (et oui, plus de de bonus pour ça, fin de la gentillesse...)
poja v12.4.1 trouvée : 2 points
health-check ? branch=preprod, runUrl=https://github.com/Abi-Nf/poja-soratra-std22078/actions/runs/8415723244/job/23041394271, toLookFor=[✓ check-sync-stack, ✓ health-check-infra / check-sync-stack]
Clonant : https://github.com/Abi-Nf/poja-soratra-std22078, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22078-646779510
cd /tmp/ExamSession-STD22078-646779510 && gh run view 8415723244
Trouvé : 3 points
health-check ? branch=preprod, runUrl=https://github.com/Abi-Nf/poja-soratra-std22078/actions/runs/8415723244/job/23041394271, toLookFor=[✓ check-bucket, ✓ health-check-infra / check-bucket]
Clonant : https://github.com/Abi-Nf/poja-soratra-std22078, branche : preprod
... clonage réussi dans : /tmp/ExamSession-STD22078-288139222
cd /tmp/ExamSession-STD22078-288139222 && gh run view 8415723244
Trouvé : 3 points
PUT https://gsbawczt77.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22078
Statut http reçu : 504
GET https://gsbawczt77.execute-api.eu-west-3.amazonaws.com/Prod/soratra/STD22078