-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.txt
5432 lines (5334 loc) · 474 KB
/
logs.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
[2023-06-28 08:31:03,926 root.clean_queue(): 47]: The RQ queue "default" has been successfully flushed
[2023-06-28 08:31:04,327 root.clean_queue(): 47]: The RQ queue "low" has been successfully flushed
[2023-06-28 08:31:04,938 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 08:32:31,397 rq.worker.register_birth(): 791]: Registering birth of worker 511150984600438fb034eddf37dca8dd
[2023-06-28 08:32:31,397 rq.worker.register_birth(): 791]: Registering birth of worker 4b12feb851f043f38b5342d9bd103342
[2023-06-28 08:32:31,590 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 08:34:26,512 root.clean_queue(): 47]: The RQ queue "default" has been successfully flushed
[2023-06-28 08:34:26,914 root.clean_queue(): 47]: The RQ queue "low" has been successfully flushed
[2023-06-28 08:34:27,359 rq.worker.register_birth(): 791]: Registering birth of worker 59ceb3e1a1d94d25bb94262f33f17a1b
[2023-06-28 08:34:27,359 rq.worker.register_birth(): 791]: Registering birth of worker d26f14c9d1fd4de9b49e5cae77b55efe
[2023-06-28 08:34:27,360 rq.worker.bootstrap(): 569]: Worker rq:worker:59ceb3e1a1d94d25bb94262f33f17a1b started with PID 59743, version 1.15.1
[2023-06-28 08:34:27,360 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:59ceb3e1a1d94d25bb94262f33f17a1b
[2023-06-28 08:34:27,360 rq.worker.bootstrap(): 569]: Worker rq:worker:d26f14c9d1fd4de9b49e5cae77b55efe started with PID 59744, version 1.15.1
[2023-06-28 08:34:27,360 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:d26f14c9d1fd4de9b49e5cae77b55efe
[2023-06-28 08:34:27,361 rq.worker.bootstrap(): 573]: *** Listening on [32mdefault[39;49;00m...
[2023-06-28 08:34:27,361 rq.worker.bootstrap(): 573]: *** Listening on [32mlow[39;49;00m...
[2023-06-28 08:34:27,361 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:27,361 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:27,362 rq.worker.clean_registries(): 315]: Cleaning registries for queue: default
[2023-06-28 08:34:27,362 rq.worker.clean_registries(): 315]: Cleaning registries for queue: low
[2023-06-28 08:34:27,363 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on [32mlow[39;49;00m...
[2023-06-28 08:34:27,363 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on [32mdefault[39;49;00m...
[2023-06-28 08:34:27,363 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:27,363 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:27,363 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues [32mlow[39;49;00m and timeout 405
[2023-06-28 08:34:27,363 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues [32mdefault[39;49;00m and timeout 405
[2023-06-28 08:34:27,539 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 08:34:34,476 rq.worker.request_stop(): 989]: Got signal SIGINT
[2023-06-28 08:34:34,476 rq.worker.request_stop(): 989]: Got signal SIGINT
[2023-06-28 08:34:34,477 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 59ceb3e1a1d94d25bb94262f33f17a1b [PID 59743]: warm shut down requested
[2023-06-28 08:34:34,477 rq.worker.handle_warm_shutdown_request(): 1015]: Worker d26f14c9d1fd4de9b49e5cae77b55efe [PID 59744]: warm shut down requested
[2023-06-28 08:34:34,477 rq.worker.register_death(): 825]: Registering death
[2023-06-28 08:34:34,477 rq.worker.register_death(): 825]: Registering death
[2023-06-28 08:34:34,479 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:d26f14c9d1fd4de9b49e5cae77b55efe
[2023-06-28 08:34:34,479 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:59ceb3e1a1d94d25bb94262f33f17a1b
[2023-06-28 08:34:54,848 root.clean_queue(): 47]: The RQ queue "default" has been successfully flushed
[2023-06-28 08:34:55,269 root.clean_queue(): 47]: The RQ queue "low" has been successfully flushed
[2023-06-28 08:34:55,735 rq.worker.register_birth(): 791]: Registering birth of worker d4773de765434339b9a092c25649f4ab
[2023-06-28 08:34:55,735 rq.worker.register_birth(): 791]: Registering birth of worker 2126bf3cf2d041cdac55a0eb313e0c86
[2023-06-28 08:34:55,736 rq.worker.bootstrap(): 569]: Worker rq:worker:d4773de765434339b9a092c25649f4ab started with PID 59804, version 1.15.1
[2023-06-28 08:34:55,736 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:d4773de765434339b9a092c25649f4ab
[2023-06-28 08:34:55,736 rq.worker.bootstrap(): 569]: Worker rq:worker:2126bf3cf2d041cdac55a0eb313e0c86 started with PID 59803, version 1.15.1
[2023-06-28 08:34:55,736 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:2126bf3cf2d041cdac55a0eb313e0c86
[2023-06-28 08:34:55,738 rq.worker.bootstrap(): 573]: *** Listening on [32mdefault[39;49;00m...
[2023-06-28 08:34:55,738 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:55,738 rq.worker.bootstrap(): 573]: *** Listening on [32mlow[39;49;00m...
[2023-06-28 08:34:55,738 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:55,738 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on [32mdefault[39;49;00m...
[2023-06-28 08:34:55,738 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on [32mlow[39;49;00m...
[2023-06-28 08:34:55,738 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:55,738 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues [32mdefault[39;49;00m and timeout 405
[2023-06-28 08:34:55,738 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 08:34:55,738 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues [32mlow[39;49;00m and timeout 405
[2023-06-28 08:34:55,930 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 09:33:12,465 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 09:33:42,844 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 09:34:07,105 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 09:43:21,349 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 10:16:49,867 django.utils.autoreload.run_with_reloader(): 668]: Watching for file changes with StatReloader
[2023-06-28 10:17:08,211 django.server.log_message(): 212]: "GET /admin/github/aigithubproject/ HTTP/1.1" 200 13779
[2023-06-28 10:17:08,242 django.server.log_message(): 212]: "GET /admin/jsi18n/ HTTP/1.1" 200 3343
[2023-06-28 10:25:23,626 rq.worker.register_birth(): 791]: Registering birth of worker c34d65b69039495ab8b325b206a33940
[2023-06-28 10:25:23,633 rq.worker.bootstrap(): 569]: Worker rq:worker:c34d65b69039495ab8b325b206a33940 started with PID 1, version 1.15.1
[2023-06-28 10:25:23,635 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:c34d65b69039495ab8b325b206a33940
[2023-06-28 10:25:23,638 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:25:23,640 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:25:23,643 rq.worker.clean_registries(): 315]: Cleaning registries for queue: default
[2023-06-28 10:25:23,648 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:25:23,651 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:25:23,653 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:26:30,018 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:26:30,038 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:26:30,063 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:26:30,078 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:26:30,105 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:26:30,124 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:26:30,144 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:26:30,202 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 10:28:18,536 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 10:28:18,543 rq.worker.handle_warm_shutdown_request(): 1015]: Worker c34d65b69039495ab8b325b206a33940 [PID 1]: warm shut down requested
[2023-06-28 10:28:18,549 rq.worker.register_death(): 825]: Registering death
[2023-06-28 10:28:18,556 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:c34d65b69039495ab8b325b206a33940
[2023-06-28 10:28:23,089 rq.worker.register_birth(): 791]: Registering birth of worker 84c31c698279406dbefef98929f6ded4
[2023-06-28 10:28:23,093 rq.worker.bootstrap(): 569]: Worker rq:worker:84c31c698279406dbefef98929f6ded4 started with PID 1, version 1.15.1
[2023-06-28 10:28:23,094 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:84c31c698279406dbefef98929f6ded4
[2023-06-28 10:28:23,097 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:28:23,098 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:28:23,102 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:28:23,106 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:28:23,107 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:28:55,458 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:55,479 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:55,500 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:55,515 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:55,535 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:55,559 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:55,601 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:55,655 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:55,674 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:55,690 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:55,706 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:55,721 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:55,739 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:55,777 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:55,837 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:55,852 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:55,868 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:55,882 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:55,900 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:55,916 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:55,964 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:55,980 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:55,997 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:56,012 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:56,029 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:56,044 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:56,065 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:56,078 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:56,138 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:56,154 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:56,169 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:56,184 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:56,199 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:56,215 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:56,231 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:57,018 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:57,034 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:57,049 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:57,063 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:57,083 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:57,101 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:57,120 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:57,176 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 10:28:57,191 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:57,208 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:57,223 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:57,239 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:57,256 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:57,277 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:57,296 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:57,344 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 10:28:57,359 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:28:57,376 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:28:57,391 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:28:57,408 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:28:57,425 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:28:57,440 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:28:57,455 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:28:57,482 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 10:28:59,690 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 10:28:59,695 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 84c31c698279406dbefef98929f6ded4 [PID 1]: warm shut down requested
[2023-06-28 10:28:59,704 rq.worker.register_death(): 825]: Registering death
[2023-06-28 10:28:59,715 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:84c31c698279406dbefef98929f6ded4
[2023-06-28 10:29:36,046 rq.worker.register_birth(): 791]: Registering birth of worker 258d1d5772514fc187376b687db00150
[2023-06-28 10:29:36,050 rq.worker.bootstrap(): 569]: Worker rq:worker:258d1d5772514fc187376b687db00150 started with PID 1, version 1.15.1
[2023-06-28 10:29:36,052 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:258d1d5772514fc187376b687db00150
[2023-06-28 10:29:36,054 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:29:36,055 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:29:36,059 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:29:36,062 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:29:36,063 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:29:55,677 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:55,695 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:55,711 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:55,734 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:55,753 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:55,772 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:55,788 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:29:56,560 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:56,578 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:56,594 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:56,608 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:56,624 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:56,642 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:56,661 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:29:56,721 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:56,741 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:56,760 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:56,776 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:56,792 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:56,810 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:56,828 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:29:56,886 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:56,900 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:56,915 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:56,931 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:56,953 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:56,968 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:56,994 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:29:57,052 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:57,066 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:57,082 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:57,100 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:57,113 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:57,128 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:57,146 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:29:57,197 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:29:57,217 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:29:57,234 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:29:57,254 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:29:57,275 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:29:57,296 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:29:57,312 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:30:30,868 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 10:30:30,875 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 258d1d5772514fc187376b687db00150 [PID 1]: warm shut down requested
[2023-06-28 10:30:30,880 rq.worker.register_death(): 825]: Registering death
[2023-06-28 10:30:30,888 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:258d1d5772514fc187376b687db00150
[2023-06-28 10:30:36,269 rq.worker.register_birth(): 791]: Registering birth of worker cebfddce2aaa41ecabdfc7d56bd2465f
[2023-06-28 10:30:36,274 rq.worker.bootstrap(): 569]: Worker rq:worker:cebfddce2aaa41ecabdfc7d56bd2465f started with PID 1, version 1.15.1
[2023-06-28 10:30:36,275 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:cebfddce2aaa41ecabdfc7d56bd2465f
[2023-06-28 10:30:36,280 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:30:36,282 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:30:36,287 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:30:36,292 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:30:36,293 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:31:04,099 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:31:04,119 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:31:04,142 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:31:04,163 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:31:04,195 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:31:04,215 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:31:04,232 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:31:46,785 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 10:31:46,793 rq.worker.handle_warm_shutdown_request(): 1015]: Worker cebfddce2aaa41ecabdfc7d56bd2465f [PID 1]: warm shut down requested
[2023-06-28 10:31:46,803 rq.worker.register_death(): 825]: Registering death
[2023-06-28 10:31:46,811 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:cebfddce2aaa41ecabdfc7d56bd2465f
[2023-06-28 10:31:57,230 rq.worker.register_birth(): 791]: Registering birth of worker 116f2645f60a4efb9b2cb50de78bd1cd
[2023-06-28 10:31:57,239 rq.worker.bootstrap(): 569]: Worker rq:worker:116f2645f60a4efb9b2cb50de78bd1cd started with PID 1, version 1.15.1
[2023-06-28 10:31:57,249 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:116f2645f60a4efb9b2cb50de78bd1cd
[2023-06-28 10:31:57,257 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:31:57,258 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:31:57,262 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:31:57,269 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:31:57,270 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:32:02,454 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:02,476 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:02,492 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:02,510 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:02,526 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:02,548 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:02,598 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:02,618 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:02,633 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:02,650 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:02,673 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:02,691 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:02,709 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:02,760 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:02,781 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:02,798 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:02,817 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:02,833 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:02,853 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:02,869 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:02,912 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:02,930 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:02,948 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:02,963 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:02,981 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:02,998 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:03,017 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:03,034 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:03,093 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:03,113 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:03,130 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:03,147 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:03,166 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:03,185 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:03,201 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:03,264 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:03,278 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:03,295 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:03,311 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:03,325 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:03,342 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:03,358 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:32:35,127 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:32:35,153 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:32:35,170 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:32:35,187 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:32:35,204 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:32:35,229 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:32:35,248 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:36:29,326 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:36:29,348 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:36:29,371 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:36:29,385 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:36:29,400 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:36:29,421 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:36:29,474 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:36:29,496 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:36:29,513 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:36:29,529 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:36:29,550 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:36:29,571 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:36:29,589 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:36:29,615 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:37:36,264 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 10:37:36,271 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 116f2645f60a4efb9b2cb50de78bd1cd [PID 1]: warm shut down requested
[2023-06-28 10:37:36,275 rq.worker.register_death(): 825]: Registering death
[2023-06-28 10:37:36,287 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:116f2645f60a4efb9b2cb50de78bd1cd
[2023-06-28 10:37:41,371 rq.worker.register_birth(): 791]: Registering birth of worker 8633ed4f9ffa4cb4b078643b82fed50e
[2023-06-28 10:37:41,376 rq.worker.bootstrap(): 569]: Worker rq:worker:8633ed4f9ffa4cb4b078643b82fed50e started with PID 1, version 1.15.1
[2023-06-28 10:37:41,377 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:8633ed4f9ffa4cb4b078643b82fed50e
[2023-06-28 10:37:41,381 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 10:37:41,383 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:37:41,388 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 10:37:41,391 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:37:41,393 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:37:51,288 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:37:51,312 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:37:51,327 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:37:51,345 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:37:51,358 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:37:51,380 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:37:51,397 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:37:52,055 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:37:52,074 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:37:52,091 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:37:52,106 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:37:52,123 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:37:52,139 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:37:52,155 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:38:09,910 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:38:09,929 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:38:09,962 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:38:09,978 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:38:09,996 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:38:10,022 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:38:10,045 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:38:10,310 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:38:10,331 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:38:10,358 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:38:10,374 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:38:10,389 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:38:10,409 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:38:10,427 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:40:08,455 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:40:08,483 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:40:08,502 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:40:08,523 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:40:08,540 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:40:08,556 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:40:08,577 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:40:08,991 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:40:09,006 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:40:09,024 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:40:09,044 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:40:09,070 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:40:09,087 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:40:09,105 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:44:26,633 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:44:26,654 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:51:11,769 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:51:11,789 rq.worker.clean_registries(): 315]: Cleaning registries for queue: default
[2023-06-28 10:51:11,827 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:57:56,872 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 10:57:56,881 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 10:58:58,162 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:58:58,204 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:58:58,229 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:58:58,255 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:58:58,278 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:58:58,306 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:58:58,326 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:58:58,407 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:58:58,426 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:58:58,444 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:58:58,459 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:58:58,476 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:58:58,496 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:58:58,514 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:06,583 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:59:06,608 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:59:06,634 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:59:06,661 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:59:06,710 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:59:06,737 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:59:06,783 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:07,006 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:59:07,022 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:59:07,038 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:59:07,056 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:59:07,072 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:59:07,091 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:59:07,108 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:07,162 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:59:07,187 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:59:07,207 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:59:07,225 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:59:07,245 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:59:07,263 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:59:07,279 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:07,338 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:59:07,354 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:59:07,376 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:59:07,393 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 10:59:07,415 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:59:07,433 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:59:07,451 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:13,754 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 10:59:13,761 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 10:59:13,767 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 10:59:13,772 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 10:59:13,779 django.request.log_response(): 241]: Not Found: /static/admin/css/login.css
[2023-06-28 10:59:13,785 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 10:59:13,792 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 10:59:13,855 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 11:04:02,816 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:04:02,842 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 8633ed4f9ffa4cb4b078643b82fed50e [PID 1]: warm shut down requested
[2023-06-28 11:04:02,852 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:04:02,860 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:8633ed4f9ffa4cb4b078643b82fed50e
[2023-06-28 11:04:08,640 rq.worker.register_birth(): 791]: Registering birth of worker 4f3dcef2575748e79b5e04e7ab37f0d9
[2023-06-28 11:04:08,643 rq.worker.bootstrap(): 569]: Worker rq:worker:4f3dcef2575748e79b5e04e7ab37f0d9 started with PID 1, version 1.15.1
[2023-06-28 11:04:08,644 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:4f3dcef2575748e79b5e04e7ab37f0d9
[2023-06-28 11:04:08,648 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:04:08,649 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:04:08,655 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:04:08,658 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:04:08,659 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:04:29,567 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:04:29,586 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:04:29,604 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:04:29,622 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:04:29,642 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:04:29,662 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:04:29,707 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:04:29,770 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:04:29,785 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:04:29,800 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:04:29,816 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:04:29,830 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:04:29,844 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:04:29,859 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:04:36,690 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:04:36,709 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:04:36,726 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:04:36,746 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:04:36,777 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:04:43,759 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:06:14,535 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:06:14,541 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 4f3dcef2575748e79b5e04e7ab37f0d9 [PID 1]: warm shut down requested
[2023-06-28 11:06:14,545 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:06:14,550 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:4f3dcef2575748e79b5e04e7ab37f0d9
[2023-06-28 11:06:18,038 rq.worker.register_birth(): 791]: Registering birth of worker 4aa4c6d77cb74f3eb46254cef2511c78
[2023-06-28 11:06:18,043 rq.worker.bootstrap(): 569]: Worker rq:worker:4aa4c6d77cb74f3eb46254cef2511c78 started with PID 1, version 1.15.1
[2023-06-28 11:06:18,045 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:4aa4c6d77cb74f3eb46254cef2511c78
[2023-06-28 11:06:18,048 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:06:18,050 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:06:18,054 rq.worker.clean_registries(): 315]: Cleaning registries for queue: default
[2023-06-28 11:06:18,059 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:06:18,065 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:06:18,066 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:06:20,033 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:10:38,743 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:10:38,768 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 4aa4c6d77cb74f3eb46254cef2511c78 [PID 1]: warm shut down requested
[2023-06-28 11:10:38,772 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:10:38,778 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:4aa4c6d77cb74f3eb46254cef2511c78
[2023-06-28 11:10:42,693 rq.worker.register_birth(): 791]: Registering birth of worker 06dcbca15ec5449e8be9b8417dde8eeb
[2023-06-28 11:10:42,696 rq.worker.bootstrap(): 569]: Worker rq:worker:06dcbca15ec5449e8be9b8417dde8eeb started with PID 1, version 1.15.1
[2023-06-28 11:10:42,697 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:06dcbca15ec5449e8be9b8417dde8eeb
[2023-06-28 11:10:42,700 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:10:42,702 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:10:42,705 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:10:42,709 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:10:42,710 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:10:48,843 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:10:48,878 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:10:48,894 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:10:48,910 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:10:48,927 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:10:48,946 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:10:48,962 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:11:21,242 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:11:21,263 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:11:21,279 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:11:21,303 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:11:21,322 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:11:21,343 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:11:21,364 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:11:42,809 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:11:42,814 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 06dcbca15ec5449e8be9b8417dde8eeb [PID 1]: warm shut down requested
[2023-06-28 11:11:42,820 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:11:42,831 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:06dcbca15ec5449e8be9b8417dde8eeb
[2023-06-28 11:11:46,397 rq.worker.register_birth(): 791]: Registering birth of worker 2a81ef25a4824fc6a630d2be5b016c75
[2023-06-28 11:11:46,400 rq.worker.bootstrap(): 569]: Worker rq:worker:2a81ef25a4824fc6a630d2be5b016c75 started with PID 1, version 1.15.1
[2023-06-28 11:11:46,402 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:2a81ef25a4824fc6a630d2be5b016c75
[2023-06-28 11:11:46,406 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:11:46,407 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:11:46,413 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:11:46,419 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:11:46,421 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:11:53,544 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:11:53,561 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:11:53,577 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:11:53,596 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:11:53,612 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:11:53,628 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:11:53,648 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:11:54,597 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:11:54,612 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:11:54,626 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:11:54,644 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:11:54,660 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:11:54,679 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:11:54,695 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:11:54,762 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:11:54,782 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:11:54,799 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:11:54,818 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:11:54,833 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:11:54,849 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:11:54,867 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:11:54,933 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:11:54,953 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:11:54,971 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:11:54,991 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:11:55,008 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:11:55,024 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:11:55,042 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:28,682 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:12:28,694 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 2a81ef25a4824fc6a630d2be5b016c75 [PID 1]: warm shut down requested
[2023-06-28 11:12:28,701 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:12:28,715 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:2a81ef25a4824fc6a630d2be5b016c75
[2023-06-28 11:12:32,993 rq.worker.register_birth(): 791]: Registering birth of worker 5a242478a440435d86e03d79b90fa78b
[2023-06-28 11:12:32,997 rq.worker.bootstrap(): 569]: Worker rq:worker:5a242478a440435d86e03d79b90fa78b started with PID 1, version 1.15.1
[2023-06-28 11:12:32,998 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:5a242478a440435d86e03d79b90fa78b
[2023-06-28 11:12:33,002 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:12:33,003 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:12:33,006 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:12:33,011 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:12:33,012 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:12:35,577 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:12:35,599 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:12:35,617 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:12:35,634 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:12:35,653 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:12:35,676 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:35,692 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:12:36,511 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:12:36,526 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:12:36,543 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:12:36,558 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:12:36,574 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:12:36,591 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:36,607 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:12:36,676 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:12:36,698 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:12:36,718 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:12:36,734 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:12:36,750 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:12:36,769 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:36,786 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:12:36,861 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:12:36,883 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:12:36,898 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:12:36,915 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:12:36,933 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:12:36,983 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:37,001 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:12:37,018 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:12:37,035 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:12:37,051 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:12:37,069 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:12:37,085 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:12:37,104 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:12:37,120 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:13,988 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:13:13,993 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 5a242478a440435d86e03d79b90fa78b [PID 1]: warm shut down requested
[2023-06-28 11:13:14,004 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:13:14,014 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:5a242478a440435d86e03d79b90fa78b
[2023-06-28 11:13:18,291 rq.worker.register_birth(): 791]: Registering birth of worker 7d2366ea8dc44d789c044d1306fe73e7
[2023-06-28 11:13:18,294 rq.worker.bootstrap(): 569]: Worker rq:worker:7d2366ea8dc44d789c044d1306fe73e7 started with PID 1, version 1.15.1
[2023-06-28 11:13:18,296 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:7d2366ea8dc44d789c044d1306fe73e7
[2023-06-28 11:13:18,300 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:13:18,301 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:13:18,305 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:13:18,308 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:13:18,309 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:13:20,264 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:20,289 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:20,305 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:20,323 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:20,342 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:20,362 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:20,378 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:20,445 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 11:13:20,521 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:20,538 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:20,554 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:20,571 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:20,586 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:20,603 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:20,621 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:20,693 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:20,711 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:20,727 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:20,743 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:20,759 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:20,778 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:20,792 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:20,857 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:20,885 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:20,900 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:20,920 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:20,937 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:20,954 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:20,969 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:21,036 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:21,058 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:21,074 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:21,090 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:21,105 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:21,121 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:21,136 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:21,210 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:21,228 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:21,246 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:21,262 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:21,279 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:21,331 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:21,355 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:21,371 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:21,386 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:21,401 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:21,416 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:21,431 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:21,447 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:21,464 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:21,533 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 11:13:48,713 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:13:48,727 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 7d2366ea8dc44d789c044d1306fe73e7 [PID 1]: warm shut down requested
[2023-06-28 11:13:48,732 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:13:48,738 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:7d2366ea8dc44d789c044d1306fe73e7
[2023-06-28 11:13:52,219 rq.worker.register_birth(): 791]: Registering birth of worker 589472e44fb2437faf1b4c2a2160aa05
[2023-06-28 11:13:52,223 rq.worker.bootstrap(): 569]: Worker rq:worker:589472e44fb2437faf1b4c2a2160aa05 started with PID 1, version 1.15.1
[2023-06-28 11:13:52,224 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:589472e44fb2437faf1b4c2a2160aa05
[2023-06-28 11:13:52,228 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:13:52,230 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:13:52,234 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:13:52,238 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:13:52,239 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:13:54,441 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:54,465 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:54,482 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:54,502 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:54,518 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:54,536 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:54,552 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:13:54,622 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:13:54,639 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:13:54,658 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:13:54,673 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:13:54,692 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:13:54,707 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:13:54,724 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:14:26,783 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:14:26,804 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:14:26,824 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:14:26,847 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:14:26,872 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:14:26,893 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:14:26,917 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:14:27,113 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:14:27,120 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:14:27,126 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:14:27,131 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:14:27,137 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:14:27,143 django.request.log_response(): 241]: Not Found: /static/admin/css/login.css
[2023-06-28 11:14:27,148 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:14:27,391 django.request.log_response(): 241]: Not Found: /favicon.ico
[2023-06-28 11:15:09,979 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:15:10,005 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:15:10,023 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:15:10,040 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:15:10,063 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:15:10,080 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:15:10,096 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:15:10,887 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:15:10,904 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:15:10,921 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:15:10,946 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:15:10,969 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:15:10,989 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:15:11,005 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:15:11,062 django.request.log_response(): 241]: Not Found: /static/admin/css/base.css
[2023-06-28 11:15:11,079 django.request.log_response(): 241]: Not Found: /static/admin/css/responsive.css
[2023-06-28 11:15:11,097 django.request.log_response(): 241]: Not Found: /static/admin/css/dashboard.css
[2023-06-28 11:15:11,112 django.request.log_response(): 241]: Not Found: /static/admin/css/nav_sidebar.css
[2023-06-28 11:15:11,128 django.request.log_response(): 241]: Not Found: /static/admin/css/dark_mode.css
[2023-06-28 11:15:11,143 django.request.log_response(): 241]: Not Found: /static/admin/js/theme.js
[2023-06-28 11:15:11,165 django.request.log_response(): 241]: Not Found: /static/admin/js/nav_sidebar.js
[2023-06-28 11:15:12,301 rq.worker.request_stop(): 989]: Got signal SIGTERM
[2023-06-28 11:15:12,305 rq.worker.handle_warm_shutdown_request(): 1015]: Worker 589472e44fb2437faf1b4c2a2160aa05 [PID 1]: warm shut down requested
[2023-06-28 11:15:12,309 rq.worker.register_death(): 825]: Registering death
[2023-06-28 11:15:12,319 rq.worker.unsubscribe(): 621]: Unsubscribing from channel rq:pubsub:589472e44fb2437faf1b4c2a2160aa05
[2023-06-28 11:15:16,412 rq.worker.register_birth(): 791]: Registering birth of worker b4f51569d48a458daa95ff127d750aea
[2023-06-28 11:15:16,416 rq.worker.bootstrap(): 569]: Worker rq:worker:b4f51569d48a458daa95ff127d750aea started with PID 1, version 1.15.1
[2023-06-28 11:15:16,418 rq.worker.subscribe(): 613]: Subscribing to channel rq:pubsub:b4f51569d48a458daa95ff127d750aea
[2023-06-28 11:15:16,425 rq.worker.bootstrap(): 573]: *** Listening on default...
[2023-06-28 11:15:16,427 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:15:16,434 rq.worker.dequeue_job_and_maintain_ttl(): 640]: *** Listening on default...
[2023-06-28 11:15:16,441 rq.worker.heartbeat(): 712]: Sent heartbeat to prevent worker timeout. Next one should arrive in 480 seconds.
[2023-06-28 11:15:16,443 rq.worker.dequeue_job_and_maintain_ttl(): 654]: Dequeueing jobs on queues default and timeout 405
[2023-06-28 11:15:37,694 root.__init__(): 325]: The project does not exist in /github_projects/erelsgl/fairweb
[2023-06-28 11:15:37,767 django.request.log_response(): 241]: Internal Server Error: /admin/github/aigithubproject/
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 681, in get_field
return self.fields_map[field_name]
~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'is_application_running'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 272, in lookup_field
f = _get_non_gfk_field(opts, name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 303, in _get_non_gfk_field
field = opts.get_field(name)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 683, in get_field
raise FieldDoesNotExist(
django.core.exceptions.FieldDoesNotExist: AIGitHubProject has no field named 'is_application_running'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/core/handlers/base.py", line 220, in _get_response
response = response.render()
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/response.py", line 114, in render
self.content = self.rendered_content
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/response.py", line 92, in rendered_content
return template.render(context, self._request)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/backends/django.py", line 61, in render
return self.template.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 175, in render
return self._render(context)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 157, in render
return compiled_parent._render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 157, in render
return compiled_parent._render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 63, in render
result = block.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 63, in render
result = block.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/base.py", line 45, in render
return super().render(context)
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/library.py", line 258, in render
_dict = self.func(*resolved_args, **resolved_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 336, in result_list
"results": list(results(cl)),
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 312, in results
yield ResultList(None, items_for_result(cl, res, None))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 303, in __init__
super().__init__(*items)
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 213, in items_for_result
f, attr, value = lookup_field(field_name, result, cl.model_admin)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 281, in lookup_field
value = attr(obj)
^^^^^^^^^
File "/arielinstaller/github/admin.py", line 29, in is_application_running
return AIApplicationRunner(obj).is_application_running()
^^^^^^^^^^^^^^^^^^^^^^^^
File "/arielinstaller/github/utils.py", line 327, in __init__
self.project.save()
File "/arielinstaller/github/models.py", line 56, in save
if not self.is_cleaned:
^^^^^^^^^^^^^^^
AttributeError: 'AIGitHubProject' object has no attribute 'is_cleaned'
[2023-06-28 11:15:58,671 root.__init__(): 325]: The project does not exist in /github_projects/erelsgl/fairweb
[2023-06-28 11:15:58,706 django.request.log_response(): 241]: Internal Server Error: /admin/github/aigithubproject/
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 681, in get_field
return self.fields_map[field_name]
~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'is_application_running'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 272, in lookup_field
f = _get_non_gfk_field(opts, name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 303, in _get_non_gfk_field
field = opts.get_field(name)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 683, in get_field
raise FieldDoesNotExist(
django.core.exceptions.FieldDoesNotExist: AIGitHubProject has no field named 'is_application_running'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/core/handlers/base.py", line 220, in _get_response
response = response.render()
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/response.py", line 114, in render
self.content = self.rendered_content
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/response.py", line 92, in rendered_content
return template.render(context, self._request)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/backends/django.py", line 61, in render
return self.template.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 175, in render
return self._render(context)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 157, in render
return compiled_parent._render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 157, in render
return compiled_parent._render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 167, in _render
return self.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 63, in render
result = block.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/loader_tags.py", line 63, in render
result = block.nodelist.render(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in render
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 1005, in <listcomp>
return SafeString("".join([node.render_annotated(context) for node in self]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/base.py", line 966, in render_annotated
return self.render(context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/base.py", line 45, in render
return super().render(context)
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/template/library.py", line 258, in render
_dict = self.func(*resolved_args, **resolved_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 336, in result_list
"results": list(results(cl)),
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 312, in results
yield ResultList(None, items_for_result(cl, res, None))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 303, in __init__
super().__init__(*items)
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/templatetags/admin_list.py", line 213, in items_for_result
f, attr, value = lookup_field(field_name, result, cl.model_admin)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 281, in lookup_field
value = attr(obj)
^^^^^^^^^
File "/arielinstaller/github/admin.py", line 29, in is_application_running
return AIApplicationRunner(obj).is_application_running()
^^^^^^^^^^^^^^^^^^^^^^^^
File "/arielinstaller/github/utils.py", line 327, in __init__
self.project.save()
File "/arielinstaller/github/models.py", line 56, in save
if not self.is_cleaned:
^^^^^^^^^^^^^^^
AttributeError: 'AIGitHubProject' object has no attribute 'is_cleaned'
[2023-06-28 11:16:44,776 root.__init__(): 325]: The project does not exist in /github_projects/erelsgl/fairweb
[2023-06-28 11:16:44,838 django.request.log_response(): 241]: Internal Server Error: /admin/github/aigithubproject/
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 681, in get_field
return self.fields_map[field_name]
~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'is_application_running'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 272, in lookup_field
f = _get_non_gfk_field(opts, name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/contrib/admin/utils.py", line 303, in _get_non_gfk_field
field = opts.get_field(name)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/django/db/models/options.py", line 683, in get_field
raise FieldDoesNotExist(
django.core.exceptions.FieldDoesNotExist: AIGitHubProject has no field named 'is_application_running'
During handling of the above exception, another exception occurred: