forked from restspace/rs-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.log.1
6436 lines (6436 loc) · 512 KB
/
main.log.1
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
10:08:09:916 Start -- load tenant basicChord
10:08:09:926 Start -- loading manifests for basicChord
10:08:09:974 End -- loading manifests for basicChord
10:08:09:976 Start -- loading service at ./services/auth.ts
10:08:14:111 End -- loading service at ./services/auth.ts
10:08:14:117 Loaded tenant basicChord successfully
10:08:14:121 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:08:14:123 Start -- loading service at ./services/file.ts
10:08:17:383 End -- loading service at ./services/file.ts
10:08:20:066 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:08:20:074 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:08:20:079 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:08:20:107 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:08:20:108 Start -- loading service at ./services/data.ts
10:08:23:332 End -- loading service at ./services/data.ts
10:08:23:341 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:08:23:356 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:08:23:364 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:08:23:374 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:08:23:380 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:08:23:384 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:08:23:388 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:08:23:411 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:08:23:412 Start -- loading service at ./services/dataset.ts
10:08:26:534 End -- loading service at ./services/dataset.ts
10:08:26:539 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:08:26:540 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:08:26:548 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:08:26:559 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:08:26:564 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:08:26:567 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:08:26:570 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:08:26:586 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:08:26:595 Start -- loading service at ./services/user-filter.ts
10:08:30:542 End -- loading service at ./services/user-filter.ts
10:08:30:549 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:08:30:551 user [email protected] setting password to hel...
10:08:31:530 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:08:52:774 Request (basicChord) GET http://basicChord.restspace.local:3100/user/?$list=details
10:10:47:913 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:10:47:921 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:10:47:926 user [email protected] setting password to hel...
10:10:49:166 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:10:50:377 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:10:50:386 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:10:50:401 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:10:50:413 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:10:14:43:491 Start -- load tenant basicChord
10:14:43:499 Start -- loading manifests for basicChord
10:14:43:539 End -- loading manifests for basicChord
10:14:43:541 Start -- loading service at ./services/auth.ts
10:14:43:789 End -- loading service at ./services/auth.ts
10:14:43:791 Loaded tenant basicChord successfully
10:14:43:792 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:14:43:793 Start -- loading service at ./services/file.ts
10:14:43:971 End -- loading service at ./services/file.ts
10:14:44:081 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:14:44:087 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:14:44:091 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:14:44:109 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:14:44:110 Start -- loading service at ./services/data.ts
10:14:44:304 End -- loading service at ./services/data.ts
10:14:44:309 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:14:44:314 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:14:44:320 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:14:44:325 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:14:44:329 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:14:44:333 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:14:44:336 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:14:44:348 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:14:44:350 Start -- loading service at ./services/dataset.ts
10:14:44:553 End -- loading service at ./services/dataset.ts
10:14:44:555 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:14:44:556 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:14:44:560 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:14:44:565 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:14:44:570 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:14:44:572 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:14:44:574 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:14:44:588 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:14:44:609 Start -- loading service at ./services/user-filter.ts
10:14:44:876 End -- loading service at ./services/user-filter.ts
10:14:44:883 user [email protected] setting password to hel...
10:14:45:052 illegal user change: not an allowable change user: {"token":"","tokenExpiry":"2021-08-21T09:14:44.878Z","email":"[email protected]","originalEmail":"","roles":"U","password":"$2a$10$68wGHRADWju1IQOrg5COkO2/qSRlmZqYDsPEZ4KNbB7lnNQ.hcLY2"}
10:14:45:053 Request error for PUT: userFilter/user/[email protected]: 403 illegal user action
10:14:45:055 Request error for PUT: http://basicChord.restspace.local:3100/user/[email protected]: 403 illegal user action
10:14:45:068 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:14:45:072 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:14:45:073 user [email protected] setting password to hel...
10:14:45:251 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:14:45:440 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:14:45:447 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:14:45:458 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:14:45:470 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:14:45:872 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:14:45:877 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:14:45:881 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:14:46:089 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:14:46:265 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:268 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:269 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:269 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:270 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:275 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:276 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:277 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:280 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:285 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:285 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:286 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:288 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:289 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:14:46:292 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:14:46:294 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:14:47:260 Start -- load tenant pipeline
10:14:47:266 Start -- loading manifests for pipeline
10:14:47:278 End -- loading manifests for pipeline
10:14:47:280 Loaded tenant pipeline successfully
10:14:47:281 Request (pipeline) GET /test/xyz
10:14:47:284 Start -- loading service at ./services/mock.ts
10:14:47:285 End -- loading service at ./services/mock.ts
10:14:47:312 Request (pipeline) GET /test/xyz
10:14:47:312 Request (pipeline) GET /test/abc
10:14:47:343 Request (pipeline) GET /test/xyz
10:14:47:345 Request (pipeline) GET /test/abc
10:14:47:347 Request (pipeline) POST /lib/bypass
10:14:47:348 Start -- loading service at ./services/lib.ts
10:14:47:542 End -- loading service at ./services/lib.ts
10:14:47:571 Request (pipeline) GET /test/list
10:14:47:572 Request (pipeline) GET /test/abc
10:14:47:581 Request (pipeline) GET /test/abc
10:14:47:582 Request (pipeline) GET /test/xyz
10:14:47:596 Request (pipeline) GET /test/missingFile
10:14:47:597 Request error for GET: /test/missingFile: 404 Not found
10:14:47:613 Request (pipeline) GET /test/missingFile
10:14:47:614 Request error for GET: /test/missingFile: 404 Not found
10:14:47:629 Request (pipeline) GET /test/missingFile
10:14:47:630 Request error for GET: /test/missingFile: 404 Not found
10:14:47:632 Request (pipeline) GET /test/abc
10:14:47:643 Request (pipeline) GET /test/xyz
10:14:47:645 Request (pipeline) GET /test/def
10:14:47:666 Request (pipeline) GET /test/list
10:14:47:674 Request (pipeline) GET /test/xyz
10:14:47:693 Request (pipeline) GET /test/list
10:14:47:694 Request (pipeline) GET /test/xyz
10:14:47:707 Request (pipeline) GET /test/xyz
10:14:47:708 Request (pipeline) GET /test/list
10:14:47:710 Request (pipeline) GET /test/object
10:14:47:711 Request (pipeline) GET /test/def?val=aaa
10:14:47:724 Request (pipeline) GET /test/object
10:14:48:236 Start -- load tenant privateServices
10:14:48:246 Start -- loading manifests for privateServices
10:14:48:262 End -- loading manifests for privateServices
10:14:48:263 Loaded tenant privateServices successfully
10:14:48:264 Request (privateServices) GET /ps/xyz
10:14:48:266 Start -- loading service at ./services/mock.ts
10:14:48:269 End -- loading service at ./services/mock.ts
10:14:48:288 Start -- loading service at ./services/lib.ts
10:14:48:618 End -- loading service at ./services/lib.ts
10:14:49:521 Start -- load tenant servicesService
10:14:49:527 Start -- loading manifests for servicesService
10:14:49:557 End -- loading manifests for servicesService
10:14:49:560 Start -- loading service at ./services/auth.ts
10:14:49:840 End -- loading service at ./services/auth.ts
10:14:49:841 Loaded tenant servicesService successfully
10:14:49:842 Request (servicesService) PUT /user-bypass/[email protected]
10:14:49:843 Start -- loading service at ./services/dataset.ts
10:14:50:053 End -- loading service at ./services/dataset.ts
10:14:50:191 Request (servicesService) POST /auth/login
10:14:50:202 Start -- loading service at ./services/user-filter.ts
10:14:50:477 End -- loading service at ./services/user-filter.ts
10:14:50:673 Request (servicesService) PUT /.well-known/restspace/chords
10:14:50:674 Start -- loading service at ./services/services.ts
10:14:50:895 End -- loading service at ./services/services.ts
10:14:50:899 Start -- loading manifests for servicesService
10:14:50:899 End -- loading manifests for servicesService
10:14:50:901 Request (servicesService) GET /.well-known/restspace/services
10:15:01:566 Start -- load tenant basicChord
10:15:01:573 Start -- loading manifests for basicChord
10:15:01:613 End -- loading manifests for basicChord
10:15:01:614 Start -- loading service at ./services/auth.ts
10:15:01:904 End -- loading service at ./services/auth.ts
10:15:01:905 Loaded tenant basicChord successfully
10:15:01:906 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:15:01:907 Start -- loading service at ./services/file.ts
10:15:02:078 End -- loading service at ./services/file.ts
10:15:02:196 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:15:02:201 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:15:02:206 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:15:02:214 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:15:02:215 Start -- loading service at ./services/data.ts
10:15:02:393 End -- loading service at ./services/data.ts
10:15:02:399 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:15:02:405 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:15:02:410 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:15:02:417 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:15:02:420 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:15:02:424 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:15:02:426 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:15:02:451 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:15:02:452 Start -- loading service at ./services/dataset.ts
10:15:02:628 End -- loading service at ./services/dataset.ts
10:15:02:631 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:15:02:632 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:15:02:637 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:15:02:642 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:15:02:646 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:15:02:650 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:15:02:651 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:15:02:674 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:15:02:683 Start -- loading service at ./services/user-filter.ts
10:15:02:912 End -- loading service at ./services/user-filter.ts
10:15:02:916 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:15:02:917 user [email protected] setting password to hel...
10:15:03:095 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:15:03:103 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:15:03:105 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:15:03:107 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:15:03:121 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:15:03:124 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:15:03:125 user [email protected] setting password to hel...
10:15:03:299 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:15:03:473 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:15:03:479 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:15:03:488 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:15:03:495 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:15:03:829 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:15:03:833 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:15:03:838 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:15:04:010 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:15:04:180 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:182 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:183 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:184 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:185 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:189 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:190 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:191 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:194 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:200 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:200 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:201 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:202 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:204 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:15:04:207 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:15:04:209 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:15:05:011 Start -- load tenant pipeline
10:15:05:017 Start -- loading manifests for pipeline
10:15:05:028 End -- loading manifests for pipeline
10:15:05:029 Loaded tenant pipeline successfully
10:15:05:029 Request (pipeline) GET /test/xyz
10:15:05:031 Start -- loading service at ./services/mock.ts
10:15:05:032 End -- loading service at ./services/mock.ts
10:15:05:056 Request (pipeline) GET /test/xyz
10:15:05:057 Request (pipeline) GET /test/abc
10:15:05:092 Request (pipeline) GET /test/xyz
10:15:05:094 Request (pipeline) GET /test/abc
10:15:05:096 Request (pipeline) POST /lib/bypass
10:15:05:097 Start -- loading service at ./services/lib.ts
10:15:05:273 End -- loading service at ./services/lib.ts
10:15:05:297 Request (pipeline) GET /test/list
10:15:05:298 Request (pipeline) GET /test/abc
10:15:05:305 Request (pipeline) GET /test/abc
10:15:05:305 Request (pipeline) GET /test/xyz
10:15:05:328 Request (pipeline) GET /test/missingFile
10:15:05:330 Request error for GET: /test/missingFile: 404 Not found
10:15:05:343 Request (pipeline) GET /test/missingFile
10:15:05:344 Request error for GET: /test/missingFile: 404 Not found
10:15:05:359 Request (pipeline) GET /test/missingFile
10:15:05:360 Request error for GET: /test/missingFile: 404 Not found
10:15:05:362 Request (pipeline) GET /test/abc
10:15:05:375 Request (pipeline) GET /test/xyz
10:15:05:377 Request (pipeline) GET /test/def
10:15:05:393 Request (pipeline) GET /test/list
10:15:05:396 Request (pipeline) GET /test/xyz
10:15:05:423 Request (pipeline) GET /test/list
10:15:05:425 Request (pipeline) GET /test/xyz
10:15:05:439 Request (pipeline) GET /test/xyz
10:15:05:442 Request (pipeline) GET /test/list
10:15:05:443 Request (pipeline) GET /test/object
10:15:05:444 Request (pipeline) GET /test/def?val=aaa
10:15:05:456 Request (pipeline) GET /test/object
10:15:06:056 Start -- load tenant privateServices
10:15:06:062 Start -- loading manifests for privateServices
10:15:06:074 End -- loading manifests for privateServices
10:15:06:076 Loaded tenant privateServices successfully
10:15:06:077 Request (privateServices) GET /ps/xyz
10:15:06:078 Start -- loading service at ./services/mock.ts
10:15:06:079 End -- loading service at ./services/mock.ts
10:15:06:092 Start -- loading service at ./services/lib.ts
10:15:06:266 End -- loading service at ./services/lib.ts
10:15:06:836 Start -- load tenant servicesService
10:15:06:843 Start -- loading manifests for servicesService
10:15:06:875 End -- loading manifests for servicesService
10:15:06:877 Start -- loading service at ./services/auth.ts
10:15:07:098 End -- loading service at ./services/auth.ts
10:15:07:099 Loaded tenant servicesService successfully
10:15:07:100 Request (servicesService) PUT /user-bypass/[email protected]
10:15:07:102 Start -- loading service at ./services/dataset.ts
10:15:07:263 End -- loading service at ./services/dataset.ts
10:15:07:381 Request (servicesService) POST /auth/login
10:15:07:393 Start -- loading service at ./services/user-filter.ts
10:15:07:609 End -- loading service at ./services/user-filter.ts
10:15:07:781 Request (servicesService) PUT /.well-known/restspace/chords
10:15:07:782 Start -- loading service at ./services/services.ts
10:15:08:033 End -- loading service at ./services/services.ts
10:15:08:037 Start -- loading manifests for servicesService
10:15:08:038 End -- loading manifests for servicesService
10:15:08:040 Request (servicesService) GET /.well-known/restspace/services
10:17:49:323 Start -- load tenant basicChord
10:17:49:336 Start -- loading manifests for basicChord
10:17:49:385 End -- loading manifests for basicChord
10:17:49:388 Start -- loading service at ./services/auth.ts
10:17:49:700 End -- loading service at ./services/auth.ts
10:17:49:702 Loaded tenant basicChord successfully
10:17:49:703 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:17:49:706 Start -- loading service at ./services/file.ts
10:17:49:984 End -- loading service at ./services/file.ts
10:17:50:118 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:17:50:122 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:17:50:126 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:17:50:129 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:17:50:148 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:17:50:149 Start -- loading service at ./services/data.ts
10:17:50:332 End -- loading service at ./services/data.ts
10:17:50:338 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:17:50:343 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:17:50:348 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:17:50:353 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:17:50:356 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:17:50:361 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:17:50:364 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:17:50:384 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:17:50:385 Start -- loading service at ./services/dataset.ts
10:17:50:590 End -- loading service at ./services/dataset.ts
10:17:50:592 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:17:50:593 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:17:50:601 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:17:50:605 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:17:50:607 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:17:50:610 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:17:50:614 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:17:50:636 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:17:50:647 Start -- loading service at ./services/user-filter.ts
10:17:50:942 End -- loading service at ./services/user-filter.ts
10:17:50:948 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:17:50:949 user [email protected] setting password to hel...
10:17:51:159 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:17:51:172 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:17:51:174 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:17:51:176 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:17:51:188 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:17:51:190 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:17:51:192 user [email protected] setting password to hel...
10:17:51:377 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:17:51:551 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:17:51:557 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:17:51:567 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:17:51:575 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:17:51:920 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:17:51:924 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:17:51:928 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:17:52:151 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:17:52:401 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:403 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:404 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:406 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:407 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:411 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:414 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:415 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:419 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:422 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:423 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:425 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:427 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:430 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:17:52:432 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:17:52:434 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:17:53:399 Start -- load tenant pipeline
10:17:53:407 Start -- loading manifests for pipeline
10:17:53:423 End -- loading manifests for pipeline
10:17:53:424 Loaded tenant pipeline successfully
10:17:53:425 Request (pipeline) GET /test/xyz
10:17:53:428 Start -- loading service at ./services/mock.ts
10:17:53:430 End -- loading service at ./services/mock.ts
10:17:53:448 Request (pipeline) GET /test/xyz
10:17:53:449 Request (pipeline) GET /test/abc
10:17:53:476 Request (pipeline) GET /test/xyz
10:17:53:477 Request (pipeline) GET /test/abc
10:17:53:478 Request (pipeline) POST /lib/bypass
10:17:53:481 Start -- loading service at ./services/lib.ts
10:17:53:709 End -- loading service at ./services/lib.ts
10:17:53:729 Request (pipeline) GET /test/list
10:17:53:731 Request (pipeline) GET /test/abc
10:17:53:734 Request (pipeline) GET /test/abc
10:17:53:735 Request (pipeline) GET /test/xyz
10:17:53:760 Request (pipeline) GET /test/missingFile
10:17:53:761 Request error for GET: /test/missingFile: 404 Not found
10:17:53:777 Request (pipeline) GET /test/missingFile
10:17:53:778 Request error for GET: /test/missingFile: 404 Not found
10:17:53:793 Request (pipeline) GET /test/missingFile
10:17:53:794 Request error for GET: /test/missingFile: 404 Not found
10:17:53:795 Request (pipeline) GET /test/abc
10:17:53:810 Request (pipeline) GET /test/xyz
10:17:53:811 Request (pipeline) GET /test/def
10:17:53:825 Request (pipeline) GET /test/list
10:17:53:826 Request (pipeline) GET /test/xyz
10:17:53:841 Request (pipeline) GET /test/list
10:17:53:842 Request (pipeline) GET /test/xyz
10:17:53:858 Request (pipeline) GET /test/xyz
10:17:53:859 Request (pipeline) GET /test/list
10:17:53:861 Request (pipeline) GET /test/object
10:17:53:862 Request (pipeline) GET /test/def?val=aaa
10:17:53:874 Request (pipeline) GET /test/object
10:17:54:288 Start -- load tenant privateServices
10:17:54:294 Start -- loading manifests for privateServices
10:17:54:305 End -- loading manifests for privateServices
10:17:54:307 Loaded tenant privateServices successfully
10:17:54:308 Request (privateServices) GET /ps/xyz
10:17:54:310 Start -- loading service at ./services/mock.ts
10:17:54:311 End -- loading service at ./services/mock.ts
10:17:54:322 Start -- loading service at ./services/lib.ts
10:17:54:491 End -- loading service at ./services/lib.ts
10:17:55:073 Start -- load tenant servicesService
10:17:55:079 Start -- loading manifests for servicesService
10:17:55:113 End -- loading manifests for servicesService
10:17:55:115 Start -- loading service at ./services/auth.ts
10:17:55:333 End -- loading service at ./services/auth.ts
10:17:55:335 Loaded tenant servicesService successfully
10:17:55:336 Request (servicesService) PUT /user-bypass/[email protected]
10:17:55:338 Start -- loading service at ./services/dataset.ts
10:17:55:506 End -- loading service at ./services/dataset.ts
10:17:55:620 Request (servicesService) POST /auth/login
10:17:55:630 Start -- loading service at ./services/user-filter.ts
10:17:55:847 End -- loading service at ./services/user-filter.ts
10:17:56:017 Request (servicesService) PUT /.well-known/restspace/chords
10:17:56:017 Start -- loading service at ./services/services.ts
10:17:56:235 End -- loading service at ./services/services.ts
10:17:56:238 Start -- loading manifests for servicesService
10:17:56:239 End -- loading manifests for servicesService
10:17:56:240 Request (servicesService) GET /.well-known/restspace/services
10:19:27:041 Start -- load tenant basicChord
10:19:27:060 Start -- loading manifests for basicChord
10:19:27:115 End -- loading manifests for basicChord
10:19:27:117 Start -- loading service at ./services/auth.ts
10:19:31:205 End -- loading service at ./services/auth.ts
10:19:31:209 Loaded tenant basicChord successfully
10:19:31:212 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:19:31:214 Start -- loading service at ./services/file.ts
10:19:34:307 End -- loading service at ./services/file.ts
10:19:36:939 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:19:36:946 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:19:36:951 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:19:36:960 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:19:36:982 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:19:36:984 Start -- loading service at ./services/data.ts
10:19:40:168 End -- loading service at ./services/data.ts
10:19:40:178 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:19:40:184 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:19:40:191 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:19:40:196 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:19:40:200 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:19:40:207 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=full
10:19:40:212 Request error for GET: http://basicChord.restspace.local:3100/data/set1/0?$list=full: 404 Not found
10:19:40:213 Request error for GET: http://basicChord.restspace.local:3100/data/set1/0?$list=full: 404 Not found
10:19:57:838 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:19:57:848 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:19:57:867 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:19:57:869 Start -- loading service at ./services/dataset.ts
10:20:01:333 End -- loading service at ./services/dataset.ts
10:20:01:338 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:20:01:340 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:20:01:347 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:20:01:356 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:20:01:364 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:20:01:367 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:20:01:369 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:20:01:382 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:20:01:392 Start -- loading service at ./services/user-filter.ts
10:20:05:356 End -- loading service at ./services/user-filter.ts
10:20:05:363 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:20:05:364 user [email protected] setting password to hel...
10:20:06:347 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:20:06:357 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:20:06:360 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:20:06:362 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:20:06:387 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:20:06:394 Request error for GET: h10:20:40:075 Start -- load tenant basicChord
10:20:40:091 Start -- loading manifests for basicChord
10:20:40:151 End -- loading manifests for basicChord
10:20:40:153 Start -- loading service at ./services/auth.ts
10:20:44:460 End -- loading service at ./services/auth.ts
10:20:44:464 Loaded tenant basicChord successfully
10:20:44:467 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:20:44:471 Start -- loading service at ./services/file.ts
10:20:47:797 End -- loading service at ./services/file.ts
10:20:50:348 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:20:50:356 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:20:50:366 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:20:50:369 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:20:50:394 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:20:50:395 Start -- loading service at ./services/data.ts
10:20:53:766 End -- loading service at ./services/data.ts
10:20:53:776 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:20:53:787 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:20:53:797 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:20:53:803 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:20:53:809 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:20:53:816 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=full
10:20:53:823 Request error for GET: http://basicChord.restspace.local:3100/data/set1/0?$list=full: 404 Not found
10:20:53:825 Request error for GET: http://basicChord.restspace.local:3100/data/set1/0?$list=full: 404 Not found
10:21:43:744 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:21:43:749 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:21:43:761 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:21:43:762 Start -- loading service at ./services/dataset.ts
10:21:47:181 End -- loading service at ./services/dataset.ts
10:21:47:185 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:21:47:187 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:21:47:195 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:21:47:215 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:21:47:229 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:21:47:234 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:21:47:239 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:21:47:257 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:21:47:274 Start -- loading service at ./services/user-filter.ts
10:21:51:231 End -- loading service at ./services/user-filter.ts
10:21:51:239 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:21:51:240 user [email protected] setting password to hel...
10:21:52:334 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:21:52:344 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:21:52:347 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:21:52:349 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:21:52:363 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:21:52:368 Request error for GET: h10:37:00:409 Start -- load tenant basicChord
10:37:00:417 Start -- loading manifests for basicChord
10:37:00:457 End -- loading manifests for basicChord
10:37:00:458 Start -- loading service at ./services/auth.ts
10:37:04:718 End -- loading service at ./services/auth.ts
10:37:04:719 Loaded tenant basicChord successfully
10:37:04:721 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:37:04:722 Start -- loading service at ./services/file.ts
10:37:08:078 End -- loading service at ./services/file.ts
10:37:11:076 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:37:11:080 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:37:11:085 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:37:11:088 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:37:11:109 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:37:11:111 Start -- loading service at ./services/data.ts
10:37:14:322 End -- loading service at ./services/data.ts
10:37:14:366 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:37:14:368 Start -- loading service at ./services/dataset.ts
10:37:17:707 End -- loading service at ./services/dataset.ts
10:37:17:709 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:37:17:710 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:37:17:715 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:37:17:719 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:37:17:723 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:37:17:724 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:37:17:726 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:37:17:739 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:37:17:748 Start -- loading service at ./services/user-filter.ts
10:37:22:030 End -- loading service at ./services/user-filter.ts
10:37:22:034 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:37:22:037 user [email protected] setting password to hel...
10:37:23:048 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:37:23:058 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:37:23:060 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:37:23:062 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:37:23:071 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:37:23:074 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:37:23:075 user [email protected] setting password to hel...
10:37:24:085 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:37:25:082 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:37:25:089 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:37:25:100 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:37:25:109 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:37:27:110 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:37:27:115 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:37:27:119 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:37:28:142 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:37:29:150 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:151 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:152 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:153 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:154 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:158 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:159 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:161 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:167 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:173 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:173 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:174 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:176 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:177 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:37:29:179 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:37:29:181 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:37:39:606 Start -- load tenant pipeline
10:37:39:621 Start -- loading manifests for pipeline
10:37:39:638 End -- loading manifests for pipeline
10:37:39:638 Loaded tenant pipeline successfully
10:37:39:639 Request (pipeline) GET /test/xyz
10:37:39:642 Start -- loading service at ./services/mock.ts
10:37:39:644 End -- loading service at ./services/mock.ts
10:37:39:666 Request (pipeline) GET /test/xyz
10:37:39:667 Request (pipeline) GET /test/abc
10:37:39:696 Request (pipeline) GET /test/xyz
10:37:39:697 Request (pipeline) GET /test/abc
10:37:39:699 Request (pipeline) POST /lib/bypass
10:37:39:700 Start -- loading service at ./services/lib.ts
10:37:43:067 End -- loading service at ./services/lib.ts
10:37:43:082 Request (pipeline) GET /test/list
10:37:43:084 Request (pipeline) GET /test/abc
10:37:43:089 Request (pipeline) GET /test/abc
10:37:43:092 Request (pipeline) GET /test/xyz
10:37:43:111 Request (pipeline) GET /test/missingFile
10:37:43:112 Request error for GET: /test/missingFile: 404 Not found
10:37:43:128 Request (pipeline) GET /test/missingFile
10:37:43:129 Request error for GET: /test/missingFile: 404 Not found
10:37:43:145 Request (pipeline) GET /test/missingFile
10:37:43:146 Request error for GET: /test/missingFile: 404 Not found
10:37:43:148 Request (pipeline) GET /test/abc
10:37:43:161 Request (pipeline) GET /test/xyz
10:37:43:162 Request (pipeline) GET /test/def
10:37:43:177 Request (pipeline) GET /test/list
10:37:43:179 Request (pipeline) GET /test/xyz
10:37:43:190 Request (pipeline) GET /test/list
10:37:43:192 Request (pipeline) GET /test/xyz
10:37:43:210 Request (pipeline) GET /test/xyz
10:37:43:213 Request (pipeline) GET /test/list
10:37:43:217 Request (pipeline) GET /test/object
10:37:43:219 Request (pipeline) GET /test/def?val=aaa
10:37:43:239 Request (pipeline) GET /test/object
10:37:49:222 Start -- load tenant privateServices
10:37:49:229 Start -- loading manifests for privateServices
10:37:49:243 End -- loading manifests for privateServices
10:37:49:244 Loaded tenant privateServices successfully
10:37:49:245 Request (privateServices) GET /ps/xyz
10:37:49:247 Start -- loading service at ./services/mock.ts
10:37:49:247 End -- loading service at ./services/mock.ts
10:37:49:261 Start -- loading service at ./services/lib.ts
10:37:52:512 End -- loading service at ./services/lib.ts
10:37:59:688 Start -- load tenant servicesService
10:37:59:695 Start -- loading manifests for servicesService
10:37:59:732 End -- loading manifests for servicesService
10:37:59:734 Start -- loading service at ./services/auth.ts
10:38:04:013 End -- loading service at ./services/auth.ts
10:38:04:015 Loaded tenant servicesService successfully
10:38:04:016 Request (servicesService) PUT /user-bypass/[email protected]
10:38:04:017 Start -- loading service at ./services/dataset.ts
10:38:07:393 End -- loading service at ./services/dataset.ts
10:38:07:516 Request (servicesService) POST /auth/login
10:38:07:527 Start -- loading service at ./services/user-filter.ts
10:38:11:595 End -- loading service at ./services/user-filter.ts
10:38:12:611 Request (servicesService) PUT /.well-known/restspace/chords
10:38:12:611 Start -- loading service at ./services/services.ts
10:38:16:802 End -- loading service at ./services/services.ts
10:38:16:806 Start -- loading manifests for servicesService
10:38:16:807 End -- loading manifests for servicesService
10:38:16:808 Request (servicesService) GET /.well-known/restspace/services
10:40:15:683 Start -- load tenant basicChord
10:40:15:690 Start -- loading manifests for basicChord
10:40:15:729 End -- loading manifests for basicChord
10:40:15:731 Start -- loading service at ./services/auth.ts
10:40:15:944 End -- loading service at ./services/auth.ts
10:40:15:945 Loaded tenant basicChord successfully
10:40:15:947 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:40:15:948 Start -- loading service at ./services/file.ts
10:40:16:112 End -- loading service at ./services/file.ts
10:40:16:228 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:40:16:234 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:40:16:238 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:40:16:241 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:40:16:256 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:40:16:257 Start -- loading service at ./services/data.ts
10:40:16:422 End -- loading service at ./services/data.ts
10:40:16:428 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:40:16:433 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:40:16:437 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:40:16:443 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:40:16:446 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:40:16:450 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=full
10:40:16:456 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:40:16:459 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:40:16:478 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:40:16:479 Start -- loading service at ./services/dataset.ts
10:40:16:650 End -- loading service at ./services/dataset.ts
10:40:16:653 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:40:16:654 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:40:16:658 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:40:16:662 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:40:16:665 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:40:16:667 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:40:16:669 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:40:16:685 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:40:16:693 Start -- loading service at ./services/user-filter.ts
10:40:16:905 End -- loading service at ./services/user-filter.ts
10:40:16:909 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:40:16:910 user [email protected] setting password to hel...
10:40:17:091 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:40:17:099 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:40:17:101 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:40:17:103 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:40:17:116 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:40:17:119 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:40:17:119 user [email protected] setting password to hel...
10:40:17:290 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:40:17:467 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:40:17:473 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:40:17:482 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:40:17:490 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:40:17:827 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:40:17:831 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:40:17:835 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:40:18:003 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:40:18:169 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:171 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:172 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:173 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:173 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:177 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:178 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:180 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:187 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:190 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:191 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:192 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:195 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:196 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:40:18:199 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:40:18:201 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:40:19:021 Start -- load tenant pipeline
10:40:19:026 Start -- loading manifests for pipeline
10:40:19:038 End -- loading manifests for pipeline
10:40:19:040 Loaded tenant pipeline successfully
10:40:19:041 Request (pipeline) GET /test/xyz
10:40:19:043 Start -- loading service at ./services/mock.ts
10:40:19:044 End -- loading service at ./services/mock.ts
10:40:19:065 Request (pipeline) GET /test/xyz
10:40:19:066 Request (pipeline) GET /test/abc
10:40:19:094 Request (pipeline) GET /test/xyz
10:40:19:095 Request (pipeline) GET /test/abc
10:40:19:098 Request (pipeline) POST /lib/bypass
10:40:19:099 Start -- loading service at ./services/lib.ts
10:40:19:276 End -- loading service at ./services/lib.ts
10:40:19:285 Request (pipeline) GET /test/list
10:40:19:285 Request (pipeline) GET /test/abc
10:40:19:289 Request (pipeline) GET /test/abc
10:40:19:290 Request (pipeline) GET /test/xyz
10:40:19:301 Request (pipeline) GET /test/missingFile
10:40:19:302 Request error for GET: /test/missingFile: 404 Not found
10:40:19:320 Request (pipeline) GET /test/missingFile
10:40:19:322 Request error for GET: /test/missingFile: 404 Not found
10:40:19:337 Request (pipeline) GET /test/missingFile
10:40:19:341 Request error for GET: /test/missingFile: 404 Not found
10:40:19:343 Request (pipeline) GET /test/abc
10:40:19:366 Request (pipeline) GET /test/xyz
10:40:19:368 Request (pipeline) GET /test/def
10:40:19:382 Request (pipeline) GET /test/list
10:40:19:385 Request (pipeline) GET /test/xyz
10:40:19:398 Request (pipeline) GET /test/list
10:40:19:400 Request (pipeline) GET /test/xyz
10:40:19:412 Request (pipeline) GET /test/xyz
10:40:19:415 Request (pipeline) GET /test/list
10:40:19:417 Request (pipeline) GET /test/object
10:40:19:419 Request (pipeline) GET /test/def?val=aaa
10:40:19:428 Request (pipeline) GET /test/object
10:40:20:000 Start -- load tenant privateServices
10:40:20:006 Start -- loading manifests for privateServices
10:40:20:016 End -- loading manifests for privateServices
10:40:20:017 Loaded tenant privateServices successfully
10:40:20:018 Request (privateServices) GET /ps/xyz
10:40:20:019 Start -- loading service at ./services/mock.ts
10:40:20:020 End -- loading service at ./services/mock.ts
10:40:20:036 Start -- loading service at ./services/lib.ts
10:40:20:219 End -- loading service at ./services/lib.ts
10:40:20:811 Start -- load tenant servicesService
10:40:20:818 Start -- loading manifests for servicesService
10:40:20:845 End -- loading manifests for servicesService
10:40:20:847 Start -- loading service at ./services/auth.ts
10:40:21:060 End -- loading service at ./services/auth.ts
10:40:21:061 Loaded tenant servicesService successfully
10:40:21:062 Request (servicesService) PUT /user-bypass/[email protected]
10:40:21:064 Start -- loading service at ./services/dataset.ts
10:40:21:237 End -- loading service at ./services/dataset.ts
10:40:21:353 Request (servicesService) POST /auth/login
10:40:21:362 Start -- loading service at ./services/user-filter.ts
10:40:21:582 End -- loading service at ./services/user-filter.ts
10:40:21:751 Request (servicesService) PUT /.well-known/restspace/chords
10:40:21:752 Start -- loading service at ./services/services.ts
10:40:21:966 End -- loading service at ./services/services.ts
10:40:21:970 Start -- loading manifests for servicesService
10:40:21:971 End -- loading manifests for servicesService
10:40:21:972 Request (servicesService) GET /.well-known/restspace/services
10:42:42:107 Start -- load tenant basicChord
10:42:42:114 Start -- loading manifests for basicChord
10:42:42:158 End -- loading manifests for basicChord
10:42:42:160 Start -- loading service at ./services/auth.ts
10:42:42:388 End -- loading service at ./services/auth.ts
10:42:42:389 Loaded tenant basicChord successfully
10:42:42:390 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
10:42:42:392 Start -- loading service at ./services/file.ts
10:42:42:558 End -- loading service at ./services/file.ts
10:42:42:678 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
10:42:42:684 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
10:42:42:688 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
10:42:42:691 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
10:42:42:709 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
10:42:42:710 Start -- loading service at ./services/data.ts
10:42:42:886 End -- loading service at ./services/data.ts
10:42:42:892 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
10:42:42:896 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
10:42:42:900 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/abc.json
10:42:42:906 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/.schema.json
10:42:42:908 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=details
10:42:42:913 Request (basicChord) GET http://basicChord.restspace.local:3100/data/set1/?$list=full
10:42:42:920 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/abc.json
10:42:42:922 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/set1/.schema.json
10:42:42:935 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
10:42:42:935 Start -- loading service at ./services/dataset.ts
10:42:43:118 End -- loading service at ./services/dataset.ts
10:42:43:122 Request error for POST: http://basicChord.restspace.local:3100/data/ds/.schema.json: 400 Can't write fixed schema
10:42:43:123 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds/abc.json
10:42:43:128 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/abc
10:42:43:133 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds/?$list=details
10:42:43:136 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/abc.json
10:42:43:139 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds/.schema.json
10:42:43:140 Request error for DELETE: http://basicChord.restspace.local:3100/data/ds/.schema.json: 404 Not found
10:42:43:155 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:42:43:163 Start -- loading service at ./services/user-filter.ts
10:42:43:397 End -- loading service at ./services/user-filter.ts
10:42:43:402 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:42:43:402 user [email protected] setting password to hel...
10:42:43:577 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:42:43:586 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:42:43:588 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
10:42:43:589 Request error for DELETE: http://basicChord.restspace.local:3100/user-bypass/.schema.json: 404 Not found
10:42:43:597 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:42:43:602 Request error for GET: http://basicChord.restspace.local:3100/user/[email protected]: 404 Not found
10:42:43:602 user [email protected] setting password to hel...
10:42:43:769 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:42:43:943 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
10:42:43:950 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
10:42:43:959 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
10:42:43:969 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
10:42:44:304 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:42:44:308 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:42:44:312 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:42:44:486 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
10:42:44:650 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:652 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:653 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:653 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:654 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:658 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:659 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:660 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:663 Request (basicChord) GET http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:667 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:668 Unauthorized: anon for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:668 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:670 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:670 Request (basicChord) DELETE http://basicChord.restspace.local:3100/data/ds-auth/abc
10:42:44:672 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:42:44:674 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
10:42:45:460 Start -- load tenant pipeline
10:42:45:465 Start -- loading manifests for pipeline
10:42:45:476 End -- loading manifests for pipeline
10:42:45:477 Loaded tenant pipeline successfully
10:42:45:478 Request (pipeline) GET /test/xyz
10:42:45:480 Start -- loading service at ./services/mock.ts
10:42:45:481 End -- loading service at ./services/mock.ts
10:42:45:506 Request (pipeline) GET /test/xyz
10:42:45:507 Request (pipeline) GET /test/abc
10:42:45:536 Request (pipeline) GET /test/xyz
10:42:45:537 Request (pipeline) GET /test/abc
10:42:45:539 Request (pipeline) POST /lib/bypass
10:42:45:540 Start -- loading service at ./services/lib.ts
10:42:45:713 End -- loading service at ./services/lib.ts
10:42:45:727 Request (pipeline) GET /test/list
10:42:45:728 Request (pipeline) GET /test/abc
10:42:45:732 Request (pipeline) GET /test/abc
10:42:45:734 Request (pipeline) GET /test/xyz
10:42:45:759 Request (pipeline) GET /test/missingFile
10:42:45:760 Request error for GET: /test/missingFile: 404 Not found
10:42:45:776 Request (pipeline) GET /test/missingFile
10:42:45:777 Request error for GET: /test/missingFile: 404 Not found
10:42:45:792 Request (pipeline) GET /test/missingFile
10:42:45:793 Request error for GET: /test/missingFile: 404 Not found
10:42:45:795 Request (pipeline) GET /test/abc
10:42:45:807 Request (pipeline) GET /test/xyz
10:42:45:813 Request (pipeline) GET /test/def
10:42:45:837 Request (pipeline) GET /test/list
10:42:45:838 Request (pipeline) GET /test/xyz
10:42:45:854 Request (pipeline) GET /test/list
10:42:45:856 Request (pipeline) GET /test/xyz
10:42:45:870 Request (pipeline) GET /test/xyz
10:42:45:872 Request (pipeline) GET /test/list
10:42:45:874 Request (pipeline) GET /test/object
10:42:45:875 Request (pipeline) GET /test/def?val=aaa
10:42:45:888 Request (pipeline) GET /test/object
10:42:46:490 Start -- load tenant privateServices
10:42:46:497 Start -- loading manifests for privateServices
10:42:46:508 End -- loading manifests for privateServices
10:42:46:510 Loaded tenant privateServices successfully
10:42:46:512 Request (privateServices) GET /ps/xyz
10:42:46:514 Start -- loading service at ./services/mock.ts
10:42:46:515 End -- loading service at ./services/mock.ts
10:42:46:528 Start -- loading service at ./services/lib.ts
10:42:46:701 End -- loading service at ./services/lib.ts
10:42:47:290 Start -- load tenant servicesService
10:42:47:296 Start -- loading manifests for servicesService
10:42:47:327 End -- loading manifests for servicesService
10:42:47:328 Start -- loading service at ./services/auth.ts
10:42:47:546 End -- loading service at ./services/auth.ts
10:42:47:547 Loaded tenant servicesService successfully
10:42:47:548 Request (servicesService) PUT /user-bypass/[email protected]
10:42:47:549 Start -- loading service at ./services/dataset.ts
10:42:47:723 End -- loading service at ./services/dataset.ts
10:42:47:836 Request (servicesService) POST /auth/login
10:42:47:846 Start -- loading service at ./services/user-filter.ts
10:42:48:063 End -- loading service at ./services/user-filter.ts
10:42:48:247 Request (servicesService) PUT /.well-known/restspace/chords
10:42:48:248 Start -- loading service at ./services/services.ts
10:42:48:459 End -- loading service at ./services/services.ts
10:42:48:462 Start -- loading manifests for servicesService
10:42:48:463 End -- loading manifests for servicesService
10:42:48:464 Request (servicesService) GET /.well-known/restspace/services
12:09:20:202 Start -- load tenant basicChord
12:09:20:258 Start -- loading manifests for basicChord
12:09:20:313 End -- loading manifests for basicChord
12:09:20:316 Start -- loading service at ./services/auth.ts
12:09:25:246 End -- loading service at ./services/auth.ts
12:09:25:249 Loaded tenant basicChord successfully
12:09:25:251 Request (basicChord) PUT http://basicChord.restspace.local:3100/files/abc.json
12:09:25:252 Start -- loading service at ./services/file.ts
12:09:29:204 End -- loading service at ./services/file.ts
12:09:32:098 Request (basicChord) GET http://basicChord.restspace.local:3100/files/abc.json
12:09:32:109 Request (basicChord) GET http://basicChord.restspace.local:3100/files/?$list=details
12:09:32:113 Request (basicChord) GET http://basicChord.restspace.local:3100/files/
12:09:32:115 Request (basicChord) DELETE http://basicChord.restspace.local:3100/files/abc.json
12:09:32:146 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/.schema.json
12:09:32:147 Start -- loading service at ./services/data.ts
12:09:36:091 End -- loading service at ./services/data.ts
12:09:36:097 Request (basicChord) POST http://basicChord.restspace.local:3100/data/set1/.schema.json
12:09:36:100 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/set1/abc.json
12:09:36:142 Request (basicChord) POST http://basicChord.restspace.local:3100/data/ds/.schema.json
12:09:36:143 Start -- loading service at ./services/dataset.ts
12:09:39:700 End -- loading service at ./services/dataset.ts
12:09:39:743 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
12:09:39:763 Start -- loading service at ./services/user-filter.ts
12:09:44:897 End -- loading service at ./services/user-filter.ts
12:09:44:905 user [email protected] setting password to hel...
12:09:45:978 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
12:09:45:987 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/[email protected]
12:09:45:990 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user-bypass/.schema.json
12:09:46:009 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
12:09:46:013 user [email protected] setting password to hel...
12:09:47:051 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
12:09:48:105 Request (basicChord) GET http://basicChord.restspace.local:3100/auth/user
12:09:48:115 Request (basicChord) PUT http://basicChord.restspace.local:3100/user/[email protected]
12:09:48:123 Request (basicChord) GET http://basicChord.restspace.local:3100/user/[email protected]
12:09:48:135 Request (basicChord) DELETE http://basicChord.restspace.local:3100/user/[email protected]
12:09:50:201 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
12:09:50:205 Request (basicChord) PUT http://basicChord.restspace.local:3100/user-bypass/[email protected]
12:09:50:209 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
12:09:51:244 Request (basicChord) POST http://basicChord.restspace.local:3100/auth/login
12:09:52:269 Request (basicChord) PUT http://basicChord.restspace.local:3100/data/ds-auth/abc
12:09:52:272 Unauthorized: [email protected] for http://basicChord.restspace.local:3100/data/ds-auth/abc
12:10:02:884 Start -- load tenant pipeline
12:10:02:917 Start -- loading manifests for pipeline
12:10:02:948 End -- loading manifests for pipeline
12:10:02:949 Loaded tenant pipeline successfully
12:10:02:950 Request (pipeline) GET /test/xyz
12:10:02:951 Start -- loading service at ./services/mock.ts
12:10:02:952 End -- loading service at ./services/mock.ts
12:10:02:973 Request (pipeline) GET /test/xyz
12:10:02:973 Request (pipeline) GET /test/abc
12:10:03:004 Request (pipeline) GET /test/xyz
12:10:03:005 Request (pipeline) GET /test/abc
12:10:03:007 Request (pipeline) POST /lib/bypass
12:10:03:010 Start -- loading service at ./services/lib.ts
12:10:06:799 End -- loading service at ./services/lib.ts
12:10:06:818 Request (pipeline) GET /test/list
12:10:06:819 Request (pipeline) GET /test/abc
12:10:06:824 Request (pipeline) GET /test/abc
12:10:06:825 Request (pipeline) GET /test/xyz
12:10:06:853 Request (pipeline) GET /test/missingFile
12:10:06:855 Request (pipeline) GET /test/abc
12:10:06:901 Request (pipeline) GET /test/missingFile
12:10:06:919 Request (pipeline) GET /test/missingFile
12:10:06:935 Request (pipeline) GET /test/xyz
12:10:06:937 Request (pipeline) GET /test/def
12:10:06:970 Request (pipeline) GET /test/list
12:10:06:974 Request (pipeline) GET /test/xyz
12:10:06:995 Request (pipeline) GET /test/list
12:10:06:997 Request (pipeline) GET /test/xyz
12:10:07:009 Request (pipeline) GET /test/xyz
12:10:07:011 Request (pipeline) GET /test/list
12:10:07:015 Request (pipeline) GET /test/object