wordjelly-auth 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/ai_lab.jpg +0 -0
  3. data/app/assets/images/lab.jpg +0 -0
  4. data/app/assets/images/placeholder.png +0 -0
  5. data/app/assets/javascripts/auth/application.js +1 -2
  6. data/app/assets/javascripts/auth/auth_dependencies.js +25 -4
  7. data/app/assets/javascripts/auth/auth_modals_and_navbar.js +9 -6
  8. data/app/assets/stylesheets/auth/auth_default_css.scss +4 -4
  9. data/app/assets/stylesheets/auth/overrides.scss +12 -1
  10. data/app/controllers/auth/concerns/devise_concern.rb +7 -9
  11. data/app/controllers/auth/concerns/shopping/product_controller_concern.rb +41 -3
  12. data/app/controllers/auth/concerns/token_concern.rb +1 -1
  13. data/app/controllers/auth/concerns/work/instruction_controller_concern.rb +109 -0
  14. data/app/controllers/auth/shopping/shopping_controller.rb +0 -1
  15. data/app/controllers/auth/work/bullets_controller.rb +18 -0
  16. data/app/controllers/auth/work/instructions_controller.rb +16 -0
  17. data/app/controllers/auth/work/work_controller.rb +46 -0
  18. data/app/helpers/auth/work/bullets/bullets_helper.rb +25 -0
  19. data/app/helpers/auth/work/instructions/instructions_helper.rb +25 -0
  20. data/app/models/auth/concerns/chief_model_concern.rb +20 -0
  21. data/app/models/auth/concerns/notification_concern.rb +6 -0
  22. data/app/models/auth/concerns/owner_concern.rb +1 -2
  23. data/app/models/auth/concerns/shopping/product_concern.rb +9 -0
  24. data/app/models/auth/concerns/work/good_concern.rb +37 -0
  25. data/app/models/auth/concerns/work/inform_concern.rb +31 -0
  26. data/app/models/auth/image.rb +3 -0
  27. data/app/models/auth/work/VICTORY SPEECH: +12 -30
  28. data/app/models/auth/work/actor.rb +4 -0
  29. data/app/models/auth/work/bullet.rb +8 -0
  30. data/app/models/auth/work/cycle.rb +1 -1
  31. data/app/models/auth/work/information.rb +20 -0
  32. data/app/models/auth/work/instruction.rb +26 -0
  33. data/app/models/auth/work/link.rb +6 -0
  34. data/app/models/auth/work/minute.rb +151 -5
  35. data/app/models/auth/work/parameter.rb +9 -0
  36. data/app/models/auth/work/variable.rb +4 -0
  37. data/app/views/auth/modals/_oauth_and_submit.html.erb +2 -4
  38. data/app/views/auth/modals/_sign_in_inputs.html.erb +6 -4
  39. data/app/views/auth/modals/_sign_up_inputs.html.erb +1 -0
  40. data/app/views/auth/search/_search_bar.html.erb +8 -11
  41. data/app/views/auth/shopping/cart_items/_form.html.erb +2 -1
  42. data/app/views/auth/shopping/products/index.html.erb +6 -47
  43. data/app/views/auth/shopping/products/index/_show.html.erb +19 -0
  44. data/app/views/auth/shopping/products/show.html.erb +4 -11
  45. data/app/views/auth/shopping/products/show/_action_links.html.erb +2 -0
  46. data/app/views/auth/shopping/products/show/_content.html.erb +22 -0
  47. data/app/views/auth/shopping/products/show/_summary.html.erb +20 -0
  48. data/app/views/auth/work/bullets/_form.html.erb +10 -0
  49. data/app/views/auth/work/bullets/_show.html.erb +12 -0
  50. data/app/views/auth/work/bullets/edit.html.erb +1 -0
  51. data/app/{models/auth/concerns/work/schedule_concern.rb → views/auth/work/bullets/new.html.erb} +0 -0
  52. data/app/views/auth/work/instructions/_form.html.erb +16 -0
  53. data/app/views/auth/work/instructions/_show.html.erb +21 -0
  54. data/app/views/auth/work/instructions/edit.html.erb +1 -0
  55. data/app/views/layouts/auth/application.html.erb +0 -1
  56. data/app/views/layouts/auth/navbar/_navbar.html.erb +31 -31
  57. data/app/views/layouts/auth/navbar/_personalization.html.erb +2 -0
  58. data/config/initializers/devise.rb +0 -1
  59. data/config/initializers/omniauth.rb +5 -4
  60. data/lib/assets/javascripts/main.js +17 -6
  61. data/lib/assets/javascripts/you_need_to_sign_in.js.erb +9 -7
  62. data/lib/auth/engine.rb +19 -1
  63. data/lib/auth/rails/routes.rb +80 -29
  64. data/lib/auth/version.rb +1 -1
  65. data/spec/dummy/app/assets/images/ai_lab.jpg +0 -0
  66. data/spec/dummy/app/assets/images/lab.jpg +0 -0
  67. data/spec/dummy/app/assets/javascripts/application.js +1 -0
  68. data/spec/dummy/app/assets/time_hashes.json +1 -1
  69. data/spec/dummy/app/models/noti.rb +1 -1
  70. data/spec/dummy/app/models/shopping/product.rb +3 -1
  71. data/spec/dummy/app/views/home/index.html.erb +71 -5
  72. data/spec/dummy/app/views/layouts/application.html.erb +2 -0
  73. data/spec/dummy/config/application.rb +6 -0
  74. data/spec/dummy/config/initializers/preinitializer.rb +2 -2
  75. data/spec/dummy/db/products.json +136 -0
  76. data/spec/dummy/db/seeds.rb +80 -2
  77. data/spec/models/auth/work/minute_spec.rb +141 -3
  78. data/spec/requests/shopping/product_request_spec.rb +213 -0
  79. metadata +43 -45
  80. data/app/assets/javascripts/auth/admin_create_users.js +0 -2
  81. data/app/assets/javascripts/auth/assemblies.js +0 -2
  82. data/app/assets/javascripts/auth/clients.js +0 -2
  83. data/app/assets/javascripts/auth/images.js +0 -5
  84. data/app/assets/javascripts/auth/search.js +0 -2
  85. data/app/assets/stylesheets/auth/admin_create_users.css +0 -4
  86. data/app/assets/stylesheets/auth/assemblies.css +0 -4
  87. data/app/assets/stylesheets/auth/images.css +0 -4
  88. data/app/assets/stylesheets/auth/search.css +0 -4
  89. data/app/assets/stylesheets/auth/shopping/discounts.css +0 -4
  90. data/spec/dummy/app/assets/javascripts/activity.js +0 -2
  91. data/spec/dummy/app/assets/javascripts/home.js +0 -2
  92. data/spec/dummy/app/assets/javascripts/pollymer.min.js +0 -170
  93. data/spec/dummy/app/assets/javascripts/tests.js +0 -2
  94. data/spec/dummy/app/assets/javascripts/topics.js +0 -2
  95. data/spec/dummy/app/assets/javascripts/worms.js +0 -2
  96. data/spec/dummy/app/assets/stylesheets/activity.css +0 -4
  97. data/spec/dummy/app/assets/stylesheets/home.css +0 -4
  98. data/spec/dummy/app/assets/stylesheets/scaffolds.scss +0 -73
  99. data/spec/dummy/app/assets/stylesheets/tests.css +0 -4
  100. data/spec/dummy/app/assets/stylesheets/topics.css +0 -4
  101. data/spec/dummy/app/assets/stylesheets/worms.scss +0 -3
  102. data/spec/dummy/log/development.log +0 -21
  103. data/spec/dummy/log/test.log +0 -2821
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,73 +0,0 @@
1
- body {
2
- background-color: #fff;
3
- color: #333;
4
- font-family: verdana, arial, helvetica, sans-serif;
5
- font-size: 13px;
6
- line-height: 18px;
7
- }
8
-
9
- p, ol, ul, td {
10
- font-family: verdana, arial, helvetica, sans-serif;
11
- font-size: 13px;
12
- line-height: 18px;
13
- }
14
-
15
- pre {
16
- background-color: #eee;
17
- padding: 10px;
18
- font-size: 11px;
19
- }
20
-
21
- a {
22
- color: #000;
23
-
24
- &:visited {
25
- color: #666;
26
- }
27
-
28
- &:hover {
29
- color: #fff;
30
- background-color: #000;
31
- }
32
- }
33
-
34
- div {
35
- &.field, &.actions {
36
- margin-bottom: 10px;
37
- }
38
- }
39
-
40
- #notice {
41
- color: green;
42
- }
43
-
44
- .field_with_errors {
45
- padding: 2px;
46
- background-color: red;
47
- display: table;
48
- }
49
-
50
- #error_explanation {
51
- width: 450px;
52
- border: 2px solid red;
53
- padding: 7px;
54
- padding-bottom: 0;
55
- margin-bottom: 20px;
56
- background-color: #f0f0f0;
57
-
58
- h2 {
59
- text-align: left;
60
- font-weight: bold;
61
- padding: 5px 5px 5px 15px;
62
- font-size: 12px;
63
- margin: -7px;
64
- margin-bottom: 0px;
65
- background-color: #c00;
66
- color: #fff;
67
- }
68
-
69
- ul li {
70
- font-size: 12px;
71
- list-style: square;
72
- }
73
- }
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the worms controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,21 +0,0 @@
1
- ETHON: Libcurl initialized
2
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.007051
3
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002253
4
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
5
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001487
6
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001705
7
- Overwriting existing field name in class User.
8
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001153
9
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001086
10
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.0009
11
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001042
12
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001505
13
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001703
14
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001294
15
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001325
16
- Overwriting existing field name in class Admin.
17
- Overwriting existing field admin in class Admin.
18
- MONGODB | localhost:27017 | dummy_development.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47411942652540 type=uuid data=0x55f1a33d26fc4be8...>}, "documents"=>[{"_id"=>"first_cycle", "public"=>"yes", "doc_version"=>0, "quantity"=>1.0, "miscellaneous_attribu...
19
- MONGODB | localhost:27017 | dummy_development.insert | SUCCEEDED | 0.039225307s
20
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47411942652540 type=uuid data=0x55f1a33d26fc4be8...>}]}
21
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.002226637s
@@ -1,2821 +0,0 @@
1
- ETHON: Libcurl initialized
2
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.180446
3
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.009768
4
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
5
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.002774
6
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.003202
7
- Overwriting existing field name in class User.
8
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.002966
9
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.003435
10
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001894
11
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.002622
12
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.004794
13
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.005691
14
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.003834
15
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.003677
16
- Overwriting existing field name in class Admin.
17
- Overwriting existing field admin in class Admin.
18
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
19
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
20
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000994265s
21
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"peyton_maggio@stantonskiles.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
22
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000774671s
23
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"bzryBLsdM_8spss35KyM"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
24
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000586241s
25
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"2oVsxSu4UqWjmvnsTK6K"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
26
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000630198s
27
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3846421aa90a8540cc1c'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
28
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0008126s
29
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3846421aa90a8540cc1c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
30
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.37079562699999996s
31
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3846421aa90a8540cc1c response_code=201 return_code=ok total_time=0.275324
32
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3847421aa90a8540cc1f')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
33
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000920659s
34
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"dFyzgzmxy6WXBphmDgeX"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
35
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000528667s
36
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3846421aa90a8540cc1c')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
37
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000693725s
38
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3846421aa90a8540cc1c response_code=200 return_code=ok total_time=0.097534
39
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"kaylah@brown.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
40
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000533905s
41
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"wzFqURBkSFLQdwgMxiJY"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
42
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000478958s
43
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"-77qU5oZpejZKmEQZSfa"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
44
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000518946s
45
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3847421aa90a8540cc20'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
46
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005254s
47
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3847421aa90a8540cc20')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
48
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001868991s
49
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3847421aa90a8540cc20 response_code=201 return_code=ok total_time=0.07952499999999996
50
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
51
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.070264813s
52
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
53
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.14052642399999998s
54
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
55
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000947649s
56
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
57
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.076910213s
58
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
59
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008592890000000001s
60
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3847421aa90a8540cc22'), "public"=>"yes", "doc_version"=>0, "quantity"...
61
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000987129s
62
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c3847421aa90a8540cc22 response_code=201 return_code=ok total_time=0.098276
63
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"selmer@medhurst.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
64
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008524019999999999s
65
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"sMsKmkmPo8MpxS5_cs2e"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
66
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006769409999999999s
67
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zJ-n55g5kq8ddWyDaADa"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
68
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00061941s
69
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc24'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
70
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000806327s
71
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc24')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
72
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003100589s
73
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3848421aa90a8540cc24 response_code=201 return_code=ok total_time=0.08158
74
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc26')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
75
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001043275s
76
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"wSoh3ArNpXzqxzYLcmGr"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
77
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000763388s
78
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc24')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
79
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000964256s
80
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3848421aa90a8540cc24 response_code=200 return_code=ok total_time=0.105752
81
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc27'), "cycle_types"=>{"em_200"=>true}}]}
82
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.008188713s
83
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc28'), "can_do_cycles"=>["5b1c3847421aa90a8540cc23"], "...
84
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000683049s
85
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc29'), "can_do_cycles"=>["5b1c3847421aa90a8540cc23"], "...
86
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006516s
87
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}, "documents"=>[{"_id"=>"first_location"}]}
88
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006053839999999999s
89
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
90
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000760208s
91
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
92
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006027750000000001s
93
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
94
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000618609s
95
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
96
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000764993s
97
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc24')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
98
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006505629999999999s
99
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc27')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
100
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005789769999999999s
101
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
102
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000634043s
103
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
104
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000623901s
105
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
106
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007129339999999999s
107
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-06 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-06 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
108
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007571s
109
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc24')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
110
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000614578s
111
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3848421aa90a8540cc27')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}}
112
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000546835s
113
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47073411666660 type=uuid data=0x531f22752dcc40ae...>}]}
114
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000730407s
115
- ETHON: Libcurl initialized
116
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.010692
117
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001954
118
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
119
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001309
120
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.002279
121
- Overwriting existing field name in class User.
122
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00127
123
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001449
124
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001191
125
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001401
126
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001515
127
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001619
128
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001279
129
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001574
130
- Overwriting existing field name in class Admin.
131
- Overwriting existing field admin in class Admin.
132
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
133
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
134
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00068147s
135
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"kolby.bogisich@okuneva.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
136
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000465095s
137
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"155VsWMDYoBbFkm-3eu7"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
138
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000319551s
139
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"JBJ6iEfM4Gs5Discs9dZ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
140
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00026708200000000003s
141
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb22'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
142
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000366853s
143
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb22')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
144
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001475139s
145
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e6a421aa90d8250cb22 response_code=201 return_code=ok total_time=0.186718
146
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb25')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
147
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000992442s
148
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"9Q33ARWsn5JtWzyUbgiD"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
149
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006720070000000001s
150
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb22')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
151
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000828847s
152
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e6a421aa90d8250cb22 response_code=200 return_code=ok total_time=0.13539
153
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"viviane@cormier.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
154
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000877847s
155
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"a4aU1c6fSApnjxajZdYe"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
156
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007485759999999999s
157
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"xgGSGeRBJBYvLW7mH8gN"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
158
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000655654s
159
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb26'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
160
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000730009s
161
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb26')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
162
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0029325149999999997s
163
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e6a421aa90d8250cb26 response_code=201 return_code=ok total_time=0.146865
164
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
165
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.001169724s
166
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
167
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000740427s
168
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
169
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000631695s
170
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
171
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000635896s
172
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
173
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000751629s
174
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb28'), "public"=>"yes", "doc_version"=>0, "quantity"...
175
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000757563s
176
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c3e6a421aa90d8250cb28 response_code=201 return_code=ok total_time=0.138637
177
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"zackary@kohler.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
178
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000914264s
179
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Rpqu3Bw4jgz7ZwU-Npt3"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
180
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007578250000000001s
181
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"HsREkxRDxdeb3zaRaid2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
182
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000801829s
183
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb2a'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
184
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007508710000000001s
185
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb2a')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
186
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003093216s
187
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e6a421aa90d8250cb2a response_code=201 return_code=ok total_time=0.074878
188
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
189
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001008153s
190
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"qz-nVkZ95ucS8uLqze4v"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
191
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00065204s
192
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb2a')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
193
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00078651s
194
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e6a421aa90d8250cb2a response_code=200 return_code=ok total_time=0.074043
195
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2d'), "cycle_types"=>{"em_200"=>true}}]}
196
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000820447s
197
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2e'), "can_do_cycles"=>["5b1c3e6a421aa90d8250cb29"], "...
198
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000718401s
199
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2f'), "can_do_cycles"=>["5b1c3e6a421aa90d8250cb29"], "...
200
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000665492s
201
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}, "documents"=>[{"_id"=>"first_location"}]}
202
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000658511s
203
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
204
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000834718s
205
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
206
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006590869999999999s
207
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
208
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000660916s
209
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
210
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000773124s
211
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb2a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
212
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000762172s
213
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
214
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005893469999999999s
215
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
216
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000863905s
217
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
218
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008284s
219
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
220
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007470490000000001s
221
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-06 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-06 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
222
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.001060446s
223
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e6a421aa90d8250cb2a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
224
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000957204s
225
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e6b421aa90d8250cb2d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}}
226
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000694986s
227
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47433261674860 type=uuid data=0x7b4a69e0ef30401d...>}]}
228
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000439704s
229
- ETHON: Libcurl initialized
230
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.008352
231
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001787
232
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
233
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001271
234
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001853
235
- Overwriting existing field name in class User.
236
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001727
237
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001495
238
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001504
239
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001297
240
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002428
241
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001394
242
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001377
243
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001354
244
- Overwriting existing field name in class Admin.
245
- Overwriting existing field admin in class Admin.
246
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
247
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
248
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006653070000000001s
249
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"brennan.kertzmann@gorczany.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
250
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005516459999999999s
251
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"k-nKwfrVZ3bUQtyrEn5_"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
252
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000550046s
253
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"GyV8ZxsbWr2JL9UFnSfz"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
254
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000363593s
255
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7182'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
256
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000689842s
257
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7182')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
258
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001598021s
259
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e93421aa90d9cab7182 response_code=201 return_code=ok total_time=0.16541499999999998
260
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7185')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
261
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000943871s
262
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"qSQa_JXPgQmgCVxPktwm"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
263
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000668515s
264
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7182')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
265
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000813152s
266
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e93421aa90d9cab7182 response_code=200 return_code=ok total_time=0.137196
267
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"nils.ullrich@ortiz.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
268
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000797004s
269
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"RNAmH59Ks7Z2ekTsWcW4"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
270
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000621079s
271
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"NmbSb--Yyz6Ykv9hCDJE"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
272
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005924190000000001s
273
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7186'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
274
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000675518s
275
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e93421aa90d9cab7186')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
276
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.002521114s
277
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e93421aa90d9cab7186 response_code=201 return_code=ok total_time=0.167363
278
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
279
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.001026248s
280
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
281
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000768609s
282
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
283
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008170720000000001s
284
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
285
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000761391s
286
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
287
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007498110000000001s
288
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab7188'), "public"=>"yes", "doc_version"=>0, "quantity"...
289
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000870135s
290
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c3e94421aa90d9cab7188 response_code=201 return_code=ok total_time=0.096923
291
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"dasia.turcotte@halvorson.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
292
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000779121s
293
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"wYqPKcRKPsGKXASzWt2z"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
294
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000679164s
295
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"ZzaB1yXpjKYo9-Mox34j"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
296
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006678109999999999s
297
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718a'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
298
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000816758s
299
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718a')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
300
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0033160390000000002s
301
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e94421aa90d9cab718a response_code=201 return_code=ok total_time=0.081158
302
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
303
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009933189999999999s
304
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Ew9syWz27zzsxR1a23gy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
305
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000775612s
306
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718a')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
307
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000974785s
308
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3e94421aa90d9cab718a response_code=200 return_code=ok total_time=0.062719
309
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718d'), "cycle_types"=>{"em_200"=>true}}]}
310
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000949567s
311
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718e'), "can_do_cycles"=>["5b1c3e94421aa90d9cab7189"], "...
312
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000833621s
313
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718f'), "can_do_cycles"=>["5b1c3e94421aa90d9cab7189"], "...
314
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007243859999999999s
315
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}, "documents"=>[{"_id"=>"first_location"}]}
316
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000688459s
317
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
318
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008307010000000001s
319
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
320
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006505069999999999s
321
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
322
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000737087s
323
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
324
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000867946s
325
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
326
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000816203s
327
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
328
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006090100000000001s
329
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
330
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000815173s
331
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
332
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000797343s
333
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
334
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006012470000000001s
335
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-06 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-06 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
336
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000663377s
337
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
338
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000597699s
339
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3e94421aa90d9cab718d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}}
340
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000496995s
341
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47058276723420 type=uuid data=0x0e821901dbc74d19...>}]}
342
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000450648s
343
- ETHON: Libcurl initialized
344
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00899
345
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002534
346
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
347
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001237
348
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001535
349
- Overwriting existing field name in class User.
350
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00129
351
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001298
352
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001254
353
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001316
354
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001331
355
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001443
356
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001266
357
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001264
358
- Overwriting existing field name in class Admin.
359
- Overwriting existing field admin in class Admin.
360
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
361
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
362
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000759116s
363
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"adelia@ziemannkovacek.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
364
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000607267s
365
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"e37kC2_QsH3rs71x-K1q"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
366
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000418801s
367
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"QA9iK_w_Fwyfezwss2sA"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
368
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000382882s
369
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3eac421aa90db753ad42'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
370
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000566035s
371
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3eac421aa90db753ad42')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
372
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003442349s
373
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3eac421aa90db753ad42 response_code=201 return_code=ok total_time=0.129174
374
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad45')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
375
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00081529s
376
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"f9yoh7317vEKimVwziJy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
377
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000587493s
378
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3eac421aa90db753ad42')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
379
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000755377s
380
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3eac421aa90db753ad42 response_code=200 return_code=ok total_time=0.099545
381
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"oral@emmerich.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
382
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000931932s
383
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Sq4Xwc3MFzwrxTez5b15"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
384
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007268040000000001s
385
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"XGYubCAVLy2uzymBySYr"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
386
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000702189s
387
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad46'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
388
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000764406s
389
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad46')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
390
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003629061s
391
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3ead421aa90db753ad46 response_code=201 return_code=ok total_time=0.05734600000000001
392
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
393
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000955128s
394
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
395
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006675079999999999s
396
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
397
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006516800000000001s
398
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
399
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006539s
400
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
401
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000700117s
402
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad48'), "public"=>"yes", "doc_version"=>0, "quantity"...
403
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00075625s
404
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c3ead421aa90db753ad48 response_code=201 return_code=ok total_time=0.068335
405
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"christelle.ferry@frami.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
406
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000869194s
407
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"VwEVEwpHwyxFqWfVcuvs"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
408
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007980110000000001s
409
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"f16RfB93vQx6t-CWKQb6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
410
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000658144s
411
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4a'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
412
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000826901s
413
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4a')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
414
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003513889s
415
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3ead421aa90db753ad4a response_code=201 return_code=ok total_time=0.08162
416
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
417
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001047096s
418
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"kR5jHRTYDkxBF_Qs_Aaf"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
419
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00073547s
420
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4a')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
421
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000949938s
422
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c3ead421aa90db753ad4a response_code=200 return_code=ok total_time=0.083165
423
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4d'), "cycle_types"=>{"em_200"=>true}}]}
424
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000953681s
425
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4e'), "can_do_cycles"=>["5b1c3ead421aa90db753ad49"], "...
426
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000731533s
427
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4f'), "can_do_cycles"=>["5b1c3ead421aa90db753ad49"], "...
428
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000691667s
429
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}, "documents"=>[{"_id"=>"first_location"}]}
430
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000668954s
431
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
432
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008515300000000001s
433
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
434
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000688392s
435
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
436
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000628602s
437
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
438
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000770856s
439
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
440
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000700605s
441
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
442
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000536017s
443
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
444
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007186429999999999s
445
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
446
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008030240000000001s
447
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
448
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00062669s
449
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-06 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-06 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
450
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000769547s
451
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
452
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006504929999999999s
453
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c3ead421aa90db753ad4d')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}}
454
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005928950000000001s
455
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47372601155340 type=uuid data=0x3289a024f90e4e70...>}]}
456
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000570097s
457
- ETHON: Libcurl initialized
458
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.009718
459
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002038
460
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
461
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001559
462
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001784
463
- Overwriting existing field name in class User.
464
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001247
465
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001907
466
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001325
467
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.003552
468
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001265
469
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001342
470
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001145
471
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001427
472
- Overwriting existing field name in class Admin.
473
- Overwriting existing field admin in class Admin.
474
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
475
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
476
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000560127s
477
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"ruthie.kilback@jacobs.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
478
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000500283s
479
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"4wMbWSf5pxM3hKzHStT8"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
480
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000370272s
481
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zf6E9XVCrZ4fwykQe7QB"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
482
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000329687s
483
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6a9'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
484
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000511816s
485
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6a9')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
486
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001741276s
487
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c42ea421aa90e3c24a6a9 response_code=201 return_code=ok total_time=0.165393
488
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6ac')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
489
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0006745830000000001s
490
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"9Xy5d45xuw-8TLvpvms2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
491
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000430214s
492
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6a9')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
493
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000533397s
494
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c42ea421aa90e3c24a6a9 response_code=200 return_code=ok total_time=0.077
495
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"heath_reynolds@haley.biz"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
496
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000912333s
497
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"9CzXm6v58nmpMFAn-nnf"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
498
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007436220000000001s
499
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"tFgBtNsmQGe3y3Tx4a5H"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
500
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000699679s
501
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6ad'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
502
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000802496s
503
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c42ea421aa90e3c24a6ad')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
504
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003422328s
505
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c42ea421aa90e3c24a6ad response_code=201 return_code=ok total_time=0.06729
506
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
507
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000743992s
508
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
509
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00069352s
510
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
511
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000672243s
512
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
513
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000951573s
514
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
515
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00061575s
516
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6af'), "public"=>"yes", "doc_version"=>0, "quantity"...
517
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00074029s
518
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c42eb421aa90e3c24a6af response_code=201 return_code=ok total_time=0.062784
519
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"oscar@murphy.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
520
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000630286s
521
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"gs9zX2sSe929nEsd1njj"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
522
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000555735s
523
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"LSJfnYBfwFNdxW7evNzK"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
524
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000542382s
525
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b1'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
526
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000618589s
527
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b1')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
528
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0020652269999999998s
529
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c42eb421aa90e3c24a6b1 response_code=201 return_code=ok total_time=0.116936
530
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b3')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
531
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009506409999999999s
532
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"fpo1HNUPTdoWucYPh5M2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
533
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000680554s
534
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b1')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
535
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000812752s
536
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c42eb421aa90e3c24a6b1 response_code=200 return_code=ok total_time=0.061419
537
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b4'), "cycle_types"=>{"em_200"=>true}}]}
538
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000732853s
539
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b5'), "can_do_cycles"=>["5b1c42eb421aa90e3c24a6b0"], "...
540
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000587457s
541
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b6'), "can_do_cycles"=>["5b1c42eb421aa90e3c24a6b0"], "...
542
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000554408s
543
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}, "documents"=>[{"_id"=>"first_location"}]}
544
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00052144s
545
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
546
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000692362s
547
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
548
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00056202s
549
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
550
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000560583s
551
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
552
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006670070000000001s
553
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
554
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000634558s
555
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b4')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
556
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000506749s
557
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
558
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000601746s
559
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
560
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006439789999999999s
561
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
562
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006886339999999999s
563
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
564
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000678884s
565
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
566
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000573982s
567
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c42eb421aa90e3c24a6b4')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}}
568
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000529957s
569
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47422633703520 type=uuid data=0x5c33cf323bdc496d...>}]}
570
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000522479s
571
- ETHON: Libcurl initialized
572
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.009292
573
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00231
574
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
575
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001243
576
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001593
577
- Overwriting existing field name in class User.
578
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001367
579
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001447
580
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001063
581
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001158
582
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002314
583
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001371
584
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001309
585
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001342
586
- Overwriting existing field name in class Admin.
587
- Overwriting existing field admin in class Admin.
588
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
589
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
590
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000749394s
591
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"salma@baileyflatley.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
592
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006425480000000001s
593
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zbzGwV--PNmQ3pGcgNAx"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
594
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000465028s
595
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"cps2-j8_vL5soDsz-yGZ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
596
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000433523s
597
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436a421aa910491f68b6'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
598
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000552516s
599
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c436a421aa910491f68b6')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
600
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003439326s
601
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c436a421aa910491f68b6 response_code=201 return_code=ok total_time=0.19381
602
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68b9')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
603
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.002008784s
604
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"gtCBsihB2TXjxJ46Z-ry"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
605
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000492575s
606
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c436a421aa910491f68b6')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
607
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000648819s
608
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c436a421aa910491f68b6 response_code=200 return_code=ok total_time=0.072783
609
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"wilbert@brekke.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
610
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000649189s
611
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"HaMWP5fXQyztWL11Qk3h"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
612
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000489997s
613
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"omtNuir66BdiCaTC9JA7"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
614
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0004927520000000001s
615
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68ba'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
616
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000504991s
617
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c436b421aa910491f68ba')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
618
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.002335419s
619
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c436b421aa910491f68ba response_code=201 return_code=ok total_time=0.076134
620
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
621
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000958235s
622
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
623
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000785156s
624
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
625
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00079457s
626
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
627
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007500699999999999s
628
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
629
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000753737s
630
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68bc'), "public"=>"yes", "doc_version"=>0, "quantity"...
631
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0009042249999999999s
632
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c436b421aa910491f68bc response_code=201 return_code=ok total_time=0.048148
633
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"ru.thompson@pacocha.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
634
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000814989s
635
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"pNRJacCEbj16q72gQBRS"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
636
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000653042s
637
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"YiAF5VoawwrV_6qy7L_9"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
638
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00065782s
639
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68be'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
640
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005953989999999999s
641
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c436b421aa910491f68be')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
642
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0027582099999999997s
643
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c436b421aa910491f68be response_code=201 return_code=ok total_time=0.077873
644
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c0')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
645
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001051977s
646
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"UEtxNWPHVxVM9CZzaGBX"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
647
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0008029609999999999s
648
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68be')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
649
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000936928s
650
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c436b421aa910491f68be response_code=200 return_code=ok total_time=0.072107
651
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c1'), "cycle_types"=>{"em_200"=>true}}]}
652
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000785648s
653
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c2'), "can_do_cycles"=>["5b1c436b421aa910491f68bd"], "...
654
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000560556s
655
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c3'), "can_do_cycles"=>["5b1c436b421aa910491f68bd"], "...
656
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000568247s
657
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}, "documents"=>[{"_id"=>"first_location"}]}
658
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000510712s
659
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
660
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000703981s
661
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
662
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000565083s
663
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
664
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000531837s
665
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
666
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000666993s
667
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68be')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
668
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000653348s
669
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
670
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000581079s
671
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
672
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000698196s
673
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
674
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006048690000000001s
675
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
676
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000674879s
677
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
678
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000643879s
679
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68be')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
680
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005942510000000001s
681
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c436b421aa910491f68c1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}}
682
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000493665s
683
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47138008150260 type=uuid data=0x578b38da5c30456f...>}]}
684
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.0005314149999999999s
685
- ETHON: Libcurl initialized
686
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.007851
687
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002501
688
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
689
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001163
690
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001282
691
- Overwriting existing field name in class User.
692
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001472
693
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001732
694
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001328
695
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001709
696
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001397
697
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001274
698
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001415
699
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001351
700
- Overwriting existing field name in class Admin.
701
- Overwriting existing field admin in class Admin.
702
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
703
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
704
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000867703s
705
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"bret_hoeger@bernieremmerich.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
706
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00069546s
707
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"n1ZhsCoZ4xozDGed1zU8"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
708
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005405329999999999s
709
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"bxxRPrzs_eJg8Eu7ChM2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
710
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000552545s
711
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf843'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
712
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000661887s
713
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43da421aa910788cf843')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
714
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0035345719999999997s
715
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43da421aa910788cf843 response_code=201 return_code=ok total_time=0.11462099999999997
716
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf846')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
717
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000915291s
718
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zkGTPqMpwtqnqx4LCuvJ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
719
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000637645s
720
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf843')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
721
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00079778s
722
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43da421aa910788cf843 response_code=200 return_code=ok total_time=0.064562
723
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"annalise_prohaska@mertz.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
724
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00085208s
725
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"ThbFRvs_S7Y8cgtfCJhz"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
726
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000722205s
727
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"rDPxxXznhsFeDiWRaE_b"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
728
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005937469999999999s
729
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf847'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
730
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006647690000000001s
731
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43da421aa910788cf847')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
732
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.002824143s
733
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43da421aa910788cf847 response_code=201 return_code=ok total_time=0.082314
734
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
735
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000841888s
736
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
737
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000610334s
738
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
739
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006196499999999999s
740
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
741
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000580536s
742
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
743
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000654288s
744
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf849'), "public"=>"yes", "doc_version"=>0, "quantity"...
745
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000845429s
746
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c43da421aa910788cf849 response_code=201 return_code=ok total_time=0.077664
747
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"reva.bins@romaguera.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
748
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008265249999999999s
749
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"r_3U4zmmSK1UHmy6nTdk"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
750
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006364239999999999s
751
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"-5-JzRiMyMjxuGz7mzWZ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
752
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005987109999999999s
753
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf84b'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
754
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000771328s
755
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43da421aa910788cf84b')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
756
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00339025s
757
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43da421aa910788cf84b response_code=201 return_code=ok total_time=0.105195
758
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf84d')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
759
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009542110000000001s
760
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"UNx3kDjb1FfyJ1qu85_p"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
761
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007138509999999999s
762
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf84b')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
763
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0008076390000000001s
764
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43da421aa910788cf84b response_code=200 return_code=ok total_time=0.061797
765
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf84e'), "cycle_types"=>{"em_200"=>true}}]}
766
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000756364s
767
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf84f'), "can_do_cycles"=>["5b1c43da421aa910788cf84a"], "...
768
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000575607s
769
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf850'), "can_do_cycles"=>["5b1c43da421aa910788cf84a"], "...
770
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000531381s
771
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}, "documents"=>[{"_id"=>"first_location"}]}
772
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000553082s
773
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
774
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000689314s
775
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
776
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000618474s
777
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
778
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000582525s
779
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
780
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000700042s
781
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf84b')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
782
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000595715s
783
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf84e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
784
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000521727s
785
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
786
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000604431s
787
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
788
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000628022s
789
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
790
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000653059s
791
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
792
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000642583s
793
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c43da421aa910788cf84b')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
794
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000626983s
795
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c43db421aa910788cf84e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}}
796
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005726370000000001s
797
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47082666651760 type=uuid data=0x2ed987d961484bb8...>}]}
798
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.00033508800000000004s
799
- ETHON: Libcurl initialized
800
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.007654
801
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002999
802
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
803
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001076
804
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001217
805
- Overwriting existing field name in class User.
806
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001346
807
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001298
808
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000995
809
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001082
810
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001177
811
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001164
812
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001006
813
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001104
814
- Overwriting existing field name in class Admin.
815
- Overwriting existing field admin in class Admin.
816
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
817
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
818
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007680450000000001s
819
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"maximillian.kunze@beerkihn.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
820
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00071209s
821
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"cxQRFMXdy2twtcrPLwSy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
822
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000499832s
823
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"fDoYBpRM4RV9dzzsm7vt"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
824
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000488839s
825
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07bb'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
826
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000656357s
827
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07bb')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
828
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003351526s
829
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43fc421aa9109a4d07bb response_code=201 return_code=ok total_time=0.100303
830
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07be')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
831
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000949053s
832
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"5GpKAnMLusrxuvsAbF9s"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
833
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000628419s
834
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07bb')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
835
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000787035s
836
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43fc421aa9109a4d07bb response_code=200 return_code=ok total_time=0.08892699999999998
837
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"zander.heller@stantonprice.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
838
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000931759s
839
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"NizwzZ6yevzRWLmsv6RA"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
840
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000686323s
841
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Gcjv4kQF-Q2yRe-yAB2r"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
842
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00066358s
843
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07bf'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
844
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000942039s
845
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07bf')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
846
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.005230607s
847
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43fc421aa9109a4d07bf response_code=201 return_code=ok total_time=0.086247
848
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
849
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000889748s
850
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
851
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000721166s
852
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
853
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00066953s
854
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
855
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006708339999999999s
856
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
857
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000682599s
858
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c1'), "public"=>"yes", "doc_version"=>0, "quantity"...
859
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000806703s
860
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c43fc421aa9109a4d07c1 response_code=201 return_code=ok total_time=0.115782
861
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"aurore.gerlach@kautzer.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
862
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000943329s
863
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Z-GDUyFHDn15e7ns1Asu"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
864
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00075783s
865
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"R51y7WqBsdJPfJorWy7e"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
866
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000703485s
867
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c3'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
868
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000780457s
869
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c3')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
870
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003754292s
871
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43fc421aa9109a4d07c3 response_code=201 return_code=ok total_time=0.076466
872
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c5')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
873
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001070745s
874
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"htgdFfmySnrpszyNAfy4"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
875
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0008033820000000001s
876
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c3')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
877
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000993329s
878
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c43fc421aa9109a4d07c3 response_code=200 return_code=ok total_time=0.072085
879
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fd421aa9109a4d07c6'), "cycle_types"=>{"em_200"=>true}}]}
880
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000906837s
881
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fd421aa9109a4d07c7'), "can_do_cycles"=>["5b1c43fc421aa9109a4d07c2"], "...
882
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000807356s
883
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c43fd421aa9109a4d07c8'), "can_do_cycles"=>["5b1c43fc421aa9109a4d07c2"], "...
884
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000735788s
885
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}, "documents"=>[{"_id"=>"first_location"}]}
886
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007375600000000001s
887
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
888
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008873220000000001s
889
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
890
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006531839999999999s
891
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
892
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000697873s
893
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
894
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00079108s
895
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c3')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
896
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007004019999999999s
897
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c43fd421aa9109a4d07c6')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
898
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000694822s
899
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
900
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008250590000000001s
901
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
902
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000629639s
903
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
904
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000518146s
905
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
906
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000609463s
907
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c43fc421aa9109a4d07c3')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
908
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005772290000000001s
909
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c43fd421aa9109a4d07c6')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}}
910
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00043656s
911
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47225657258280 type=uuid data=0xfe95fa2a9f784246...>}]}
912
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000484939s
913
- ETHON: Libcurl initialized
914
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006873
915
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001417
916
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
917
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001032
918
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001291
919
- Overwriting existing field name in class User.
920
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001076
921
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001748
922
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001364
923
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001492
924
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001303
925
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.002523
926
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.002026
927
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.002019
928
- Overwriting existing field name in class Admin.
929
- Overwriting existing field admin in class Admin.
930
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
931
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
932
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008089999999999999s
933
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"ruell@dietrich.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
934
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000516002s
935
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"r67bixxaDzSUXTbXkuwv"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
936
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000399601s
937
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"h5u-h7ay6xcdDkhCH_3R"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
938
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00032445499999999997s
939
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a164f'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
940
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000507495s
941
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4410421aa910cb4a164f')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
942
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0017492590000000002s
943
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4410421aa910cb4a164f response_code=201 return_code=ok total_time=0.15785000000000005
944
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1652')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
945
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000940768s
946
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Amr_f7yXhQ6_cTPtbJVH"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
947
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006520860000000001s
948
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a164f')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
949
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000812629s
950
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4410421aa910cb4a164f response_code=200 return_code=ok total_time=0.059231
951
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"dimitri.conroy@sipes.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
952
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00075632s
953
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"4iLsoYswmTQppLTyEDY6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
954
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006207379999999999s
955
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"YjD_mDPQNDkRWyme2_UX"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
956
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000586067s
957
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1653'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
958
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006843839999999999s
959
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1653')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
960
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0033313920000000003s
961
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4410421aa910cb4a1653 response_code=201 return_code=ok total_time=0.058151
962
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
963
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0009855719999999999s
964
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
965
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000770942s
966
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
967
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007675469999999999s
968
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
969
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000794071s
970
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
971
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007922109999999999s
972
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1655'), "public"=>"yes", "doc_version"=>0, "quantity"...
973
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0008491390000000001s
974
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c4410421aa910cb4a1655 response_code=201 return_code=ok total_time=0.088215
975
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"milton_feest@shanahan.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
976
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0009365280000000001s
977
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"HyLA4pn1UrM8cQqesoyc"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
978
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007697s
979
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"KY3gkyRiAyCaS_eMaZ8X"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
980
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000712673s
981
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1657'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
982
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000823083s
983
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1657')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
984
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0037670760000000003s
985
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4410421aa910cb4a1657 response_code=201 return_code=ok total_time=0.123712
986
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a1659')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
987
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001047088s
988
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"dQWsUx7sYDLYqGDMwai3"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
989
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007481530000000001s
990
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1657')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
991
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000911283s
992
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4410421aa910cb4a1657 response_code=200 return_code=ok total_time=0.082957
993
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a165a'), "cycle_types"=>{"em_200"=>true}}]}
994
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000864139s
995
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a165b'), "can_do_cycles"=>["5b1c4410421aa910cb4a1656"], "...
996
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000624255s
997
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a165c'), "can_do_cycles"=>["5b1c4410421aa910cb4a1656"], "...
998
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000604061s
999
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}, "documents"=>[{"_id"=>"first_location"}]}
1000
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000625688s
1001
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1002
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007961349999999999s
1003
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1004
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000590389s
1005
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1006
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000619855s
1007
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1008
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000740023s
1009
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1657')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1010
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000704753s
1011
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a165a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1012
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000566818s
1013
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1014
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000768515s
1015
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1016
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000687355s
1017
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1018
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000635334s
1019
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1020
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007473579999999999s
1021
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4410421aa910cb4a1657')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1022
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000647172s
1023
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4411421aa910cb4a165a')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}}
1024
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000500528s
1025
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x46967387386540 type=uuid data=0xb1c455873d774670...>}]}
1026
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.00043574300000000005s
1027
- ETHON: Libcurl initialized
1028
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00662
1029
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002056
1030
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1031
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001002
1032
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001284
1033
- Overwriting existing field name in class User.
1034
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001044
1035
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001359
1036
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00087
1037
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001004
1038
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001517
1039
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001752
1040
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001495
1041
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001426
1042
- Overwriting existing field name in class Admin.
1043
- Overwriting existing field admin in class Admin.
1044
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1045
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1046
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000609314s
1047
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"lulu@wuckert.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1048
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000473146s
1049
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"yfxaqov6YrheHkH-Yqbz"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1050
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000336888s
1051
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"8T3yvoDdDKDh6RaqyQHG"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1052
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000291172s
1053
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fc9'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1054
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000417948s
1055
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fc9')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1056
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0016213269999999999s
1057
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c442a421aa910e56a4fc9 response_code=201 return_code=ok total_time=0.15269
1058
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fcc')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1059
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009694370000000001s
1060
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"m8wmyQoM4XRR8UtywHgt"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1061
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006792739999999999s
1062
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fc9')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1063
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0007995389999999999s
1064
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c442a421aa910e56a4fc9 response_code=200 return_code=ok total_time=0.05742000000000003
1065
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"sabina.stehr@cormier.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1066
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000857803s
1067
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"gwQQBoWHBK_pZ7oUGz5s"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1068
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007358999999999999s
1069
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"YxKHBL9S7LAc1doss6LX"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1070
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007545949999999999s
1071
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fcd'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1072
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000878233s
1073
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fcd')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1074
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0038293700000000003s
1075
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c442a421aa910e56a4fcd response_code=201 return_code=ok total_time=0.067346
1076
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1077
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0009834940000000001s
1078
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1079
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000927662s
1080
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1081
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00091959s
1082
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1083
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000895174s
1084
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1085
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.003317049s
1086
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fcf'), "public"=>"yes", "doc_version"=>0, "quantity"...
1087
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000740742s
1088
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c442a421aa910e56a4fcf response_code=201 return_code=ok total_time=0.086156
1089
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"suzanne.mueller@blanda.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1090
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000515283s
1091
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"ahvcMLn_85QDGAWj19h-"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1092
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00048471100000000003s
1093
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"fY69WYBSDS53gR-hd1bN"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1094
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00040508499999999996s
1095
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd1'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1096
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000429611s
1097
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd1')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1098
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0017054540000000001s
1099
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c442a421aa910e56a4fd1 response_code=201 return_code=ok total_time=0.114255
1100
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd3')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1101
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000718616s
1102
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"pPiRn5P6pJYJyfBawna5"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1103
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000674766s
1104
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd1')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1105
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000863121s
1106
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c442a421aa910e56a4fd1 response_code=200 return_code=ok total_time=0.054349
1107
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd4'), "cycle_types"=>{"em_200"=>true}}]}
1108
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000857601s
1109
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd5'), "can_do_cycles"=>["5b1c442a421aa910e56a4fd0"], "...
1110
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000678205s
1111
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd6'), "can_do_cycles"=>["5b1c442a421aa910e56a4fd0"], "...
1112
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006487660000000001s
1113
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}, "documents"=>[{"_id"=>"first_location"}]}
1114
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000598628s
1115
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1116
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000696967s
1117
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1118
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000630431s
1119
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1120
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000591988s
1121
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1122
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000790888s
1123
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1124
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000668502s
1125
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd4')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1126
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00062868s
1127
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1128
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000727029s
1129
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1130
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000617657s
1131
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1132
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000725344s
1133
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1134
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000715916s
1135
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd1')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1136
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005958900000000001s
1137
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c442a421aa910e56a4fd4')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}}
1138
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000460454s
1139
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47204174565420 type=uuid data=0xa0ab40b32fb94adb...>}]}
1140
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000425432s
1141
- ETHON: Libcurl initialized
1142
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006588
1143
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001426
1144
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1145
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001108
1146
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001298
1147
- Overwriting existing field name in class User.
1148
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001038
1149
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001157
1150
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000979
1151
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001205
1152
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002055
1153
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001365
1154
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.00192
1155
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001633
1156
- Overwriting existing field name in class Admin.
1157
- Overwriting existing field admin in class Admin.
1158
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1159
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1160
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000978667s
1161
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"jack_ondricka@volkman.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1162
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00050428s
1163
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"EqagSixerWxfSA-PjuWo"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1164
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000392522s
1165
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"wPgf5z2ngnMarQxN6aWL"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1166
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00039279600000000005s
1167
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443d421aa910ff2646da'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1168
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000514012s
1169
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c443d421aa910ff2646da')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1170
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001708099s
1171
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c443d421aa910ff2646da response_code=201 return_code=ok total_time=0.243552
1172
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c443d421aa910ff2646dd')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1173
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000690297s
1174
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"78nYEN8fMXPMCskeXty7"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1175
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000519725s
1176
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c443d421aa910ff2646da')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1177
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000598378s
1178
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c443d421aa910ff2646da response_code=200 return_code=ok total_time=0.078779
1179
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"rowan.monahan@gottliebgrant.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1180
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000508646s
1181
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"2nQSv4zjKsjfdyyAzjDm"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1182
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000467987s
1183
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"ReH5oic6kJj34PDkuWk3"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1184
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000499455s
1185
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443d421aa910ff2646de'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1186
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000561176s
1187
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c443d421aa910ff2646de')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1188
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001829831s
1189
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c443d421aa910ff2646de response_code=201 return_code=ok total_time=0.068016
1190
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1191
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000615606s
1192
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1193
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000504742s
1194
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1195
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000434595s
1196
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1197
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000430014s
1198
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1199
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000508541s
1200
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e0'), "public"=>"yes", "doc_version"=>0, "quantity"...
1201
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000615315s
1202
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c443e421aa910ff2646e0 response_code=201 return_code=ok total_time=0.054139
1203
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"chasity_kreiger@boyle.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1204
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005529889999999999s
1205
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"2zq37uPa1NMuifvfCSiq"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1206
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00046380300000000005s
1207
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"TFk_XB2RjZ1mqLssitNs"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1208
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000454821s
1209
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e2'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1210
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005407400000000001s
1211
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e2')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1212
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001955895s
1213
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c443e421aa910ff2646e2 response_code=201 return_code=ok total_time=0.117465
1214
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e4')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1215
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000809035s
1216
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Uq1AMGHsk5stNmRqEa_1"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1217
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000632033s
1218
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e2')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1219
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000671149s
1220
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c443e421aa910ff2646e2 response_code=200 return_code=ok total_time=0.064617
1221
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e5'), "cycle_types"=>{"em_200"=>true}}]}
1222
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000967975s
1223
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e6'), "can_do_cycles"=>["5b1c443e421aa910ff2646e1"], "...
1224
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000770884s
1225
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e7'), "can_do_cycles"=>["5b1c443e421aa910ff2646e1"], "...
1226
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000775907s
1227
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}, "documents"=>[{"_id"=>"first_location"}]}
1228
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000756466s
1229
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1230
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000906068s
1231
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1232
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000702285s
1233
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1234
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00064639s
1235
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1236
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000875507s
1237
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1238
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000766405s
1239
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1240
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000643008s
1241
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1242
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008704149999999999s
1243
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1244
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000846888s
1245
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1246
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000581624s
1247
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1248
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000766917s
1249
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1250
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000698569s
1251
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c443e421aa910ff2646e5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}}
1252
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000588456s
1253
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47194673377780 type=uuid data=0xd54cfd78873a4058...>}]}
1254
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000573172s
1255
- ETHON: Libcurl initialized
1256
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006801
1257
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001348
1258
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1259
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001317
1260
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001438
1261
- Overwriting existing field name in class User.
1262
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001029
1263
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001319
1264
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000875
1265
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000982
1266
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001295
1267
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001259
1268
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001484
1269
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001845
1270
- Overwriting existing field name in class Admin.
1271
- Overwriting existing field admin in class Admin.
1272
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1273
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1274
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006470110000000001s
1275
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"conner.kunde@kiehn.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1276
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000639765s
1277
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"jpTGyTwukEcg5TYjX5rT"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1278
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000431179s
1279
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"dRbA476JztGi7Juaywn6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1280
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000397317s
1281
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf405'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1282
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000547589s
1283
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c46a6421aa912935cf405')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1284
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0034269829999999998s
1285
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c46a6421aa912935cf405 response_code=201 return_code=ok total_time=0.144758
1286
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf408')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1287
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009223959999999999s
1288
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"5V4AfSsyVnEk63cGzvgn"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1289
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000640479s
1290
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf405')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1291
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0007863579999999999s
1292
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c46a6421aa912935cf405 response_code=200 return_code=ok total_time=0.10781099999999999
1293
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"roberto@kerluke.biz"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1294
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000837506s
1295
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"teesttiDQEfWeWfywxcU"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1296
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00075382s
1297
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"BwagFiqgS4o5Vgiapz7F"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1298
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000672024s
1299
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf409'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1300
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000752585s
1301
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c46a6421aa912935cf409')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1302
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003442681s
1303
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c46a6421aa912935cf409 response_code=201 return_code=ok total_time=0.067998
1304
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1305
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0009599490000000001s
1306
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1307
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007046040000000001s
1308
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1309
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000722804s
1310
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1311
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000715865s
1312
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1313
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000663005s
1314
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf40b'), "public"=>"yes", "doc_version"=>0, "quantity"...
1315
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00081642s
1316
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c46a6421aa912935cf40b response_code=201 return_code=ok total_time=0.066624
1317
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf40b')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>BSON::...
1318
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001046783s
1319
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c46a6421aa912935cf40b response_code=200 return_code=ok total_time=0.155402
1320
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf40b')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>BSON::...
1321
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0010367970000000001s
1322
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"laisha_torphy@waters.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1323
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007380560000000001s
1324
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"xAVazw_PF6S1wBP8uswK"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1325
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000680506s
1326
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"wsNwWvCTTXUq8x6MSsrF"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1327
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000743219s
1328
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1329
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000790425s
1330
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1331
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.004049801s
1332
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c46a6421aa912935cf411 response_code=201 return_code=ok total_time=0.127743
1333
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf413')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1334
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000718924s
1335
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"spw2AwGzX_WueEq57LwP"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1336
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005529980000000001s
1337
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1338
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000699213s
1339
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c46a6421aa912935cf411 response_code=200 return_code=ok total_time=0.058051
1340
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414'), "cycle_types"=>{"em_200"=>true}}]}
1341
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005065240000000001s
1342
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf415'), "can_do_cycles"=>["5b1c46a6421aa912935cf40c"], "...
1343
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000431261s
1344
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf416'), "can_do_cycles"=>["5b1c46a6421aa912935cf40c"], "...
1345
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00041735599999999997s
1346
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}, "documents"=>[{"_id"=>"first_location"}]}
1347
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00035705599999999996s
1348
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1349
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000424528s
1350
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1351
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000325231s
1352
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1353
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000304558s
1354
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1355
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00033908699999999996s
1356
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1357
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00034127s
1358
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1359
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000298532s
1360
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1361
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000318239s
1362
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1363
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000297927s
1364
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1365
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00034087500000000003s
1366
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1367
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00030909599999999997s
1368
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1369
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000265766s
1370
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1371
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00027119199999999996s
1372
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1373
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006340040000000001s
1374
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1375
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006047689999999999s
1376
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1377
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00055767s
1378
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1379
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000417025s
1380
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1381
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006620349999999999s
1382
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1383
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000505977s
1384
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1385
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000516578s
1386
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1387
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000691971s
1388
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1389
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000667566s
1390
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1391
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000585522s
1392
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1393
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000514329s
1394
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1395
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000440317s
1396
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1397
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000642294s
1398
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1399
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00042620099999999997s
1400
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1401
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000363246s
1402
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1403
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00040470699999999997s
1404
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1405
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000400013s
1406
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1407
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005446240000000001s
1408
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a6421aa912935cf411')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1409
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000432195s
1410
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c46a7421aa912935cf414')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}}
1411
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000416762s
1412
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47299868815900 type=uuid data=0xc9ad5dfd5f404ce6...>}]}
1413
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000542155s
1414
- ETHON: Libcurl initialized
1415
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006636
1416
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001676
1417
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1418
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001026
1419
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001307
1420
- Overwriting existing field name in class User.
1421
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001163
1422
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001368
1423
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001147
1424
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001204
1425
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001458
1426
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001173
1427
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001057
1428
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001214
1429
- Overwriting existing field name in class Admin.
1430
- Overwriting existing field admin in class Admin.
1431
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1432
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1433
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000728955s
1434
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"timothy@krajcikwehner.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1435
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000606939s
1436
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Btr6mpf3YnFF6tyyd252"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1437
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00042547s
1438
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"3n8pyGRuDt1JHCY94Lwy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1439
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00039993600000000004s
1440
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4920421aa91336b26bb9'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1441
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000543242s
1442
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4920421aa91336b26bb9')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1443
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003352338s
1444
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4920421aa91336b26bb9 response_code=201 return_code=ok total_time=0.194696
1445
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbc')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1446
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000641111s
1447
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"n3DyG9WH5qW_REUQtTex"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1448
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000422709s
1449
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4920421aa91336b26bb9')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1450
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000490008s
1451
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4920421aa91336b26bb9 response_code=200 return_code=ok total_time=0.114056
1452
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"cordia@dibbertmueller.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1453
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000889308s
1454
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"kW55NH48MVeiyqPP5FFg"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1455
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000733356s
1456
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"SRK-uCMrfLoFt1HQAWCa"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1457
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000652467s
1458
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbd'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1459
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000757263s
1460
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbd')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1461
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003474652s
1462
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4921421aa91336b26bbd response_code=201 return_code=ok total_time=0.090785
1463
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1464
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008270840000000001s
1465
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1466
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000666797s
1467
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1468
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000649905s
1469
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1470
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000704333s
1471
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1472
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000624799s
1473
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbf'), "public"=>"yes", "doc_version"=>0, "quantity"...
1474
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000694607s
1475
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c4921421aa91336b26bbf response_code=201 return_code=ok total_time=0.068679
1476
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbf')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>BSON::...
1477
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001035817s
1478
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c4921421aa91336b26bbf response_code=200 return_code=ok total_time=0.08599299999999999
1479
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bbf')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>BSON::...
1480
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000605339s
1481
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"ali.mckenzie@huel.biz"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1482
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00045023199999999995s
1483
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"LN6fbc3vEchPiT-Vuf_g"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1484
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00039096s
1485
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"ykBryPsd7zAx-Dd3mi-L"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1486
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000455093s
1487
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1488
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000484751s
1489
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1490
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001740099s
1491
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4921421aa91336b26bc5 response_code=201 return_code=ok total_time=0.067383
1492
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc7')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1493
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000705893s
1494
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"yZ7mNhDeVhwKUxX_HyYy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1495
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00048711100000000003s
1496
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1497
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00059555s
1498
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c4921421aa91336b26bc5 response_code=200 return_code=ok total_time=0.110725
1499
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8'), "cycle_types"=>{"em_200"=>true}}]}
1500
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0008819359999999999s
1501
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc9'), "can_do_cycles"=>["5b1c4921421aa91336b26bc0"], "...
1502
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007213600000000001s
1503
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bca'), "can_do_cycles"=>["5b1c4921421aa91336b26bc0"], "...
1504
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000675383s
1505
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}, "documents"=>[{"_id"=>"first_location"}]}
1506
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000639045s
1507
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1508
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000860703s
1509
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1510
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000635857s
1511
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1512
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005755900000000001s
1513
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1514
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007707699999999999s
1515
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1516
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000749003s
1517
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1518
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000512985s
1519
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1520
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000525387s
1521
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1522
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000550736s
1523
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1524
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0010763530000000002s
1525
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1526
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000716017s
1527
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1528
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000544011s
1529
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1530
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000561737s
1531
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1532
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000522143s
1533
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1534
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000734409s
1535
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1536
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000884548s
1537
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1538
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006475610000000001s
1539
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1540
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000753235s
1541
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1542
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000550259s
1543
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1544
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000544436s
1545
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1546
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007306389999999999s
1547
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1548
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005992139999999999s
1549
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1550
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000533733s
1551
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1552
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000480613s
1553
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1554
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000484402s
1555
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1556
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000608328s
1557
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1558
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00048423600000000003s
1559
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1560
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00040558200000000003s
1561
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1562
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000435072s
1563
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1564
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000382803s
1565
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1566
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000553715s
1567
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1568
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000798876s
1569
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c4921421aa91336b26bc8')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}}
1570
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000830524s
1571
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47177286634560 type=uuid data=0xcf16e3e9ddcd4141...>}]}
1572
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000476291s
1573
- ETHON: Libcurl initialized
1574
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006051
1575
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001311
1576
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1577
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001004
1578
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001156
1579
- Overwriting existing field name in class User.
1580
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001096
1581
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001153
1582
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000972
1583
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001209
1584
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001194
1585
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001151
1586
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001496
1587
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001475
1588
- Overwriting existing field name in class Admin.
1589
- Overwriting existing field admin in class Admin.
1590
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1591
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1592
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000790731s
1593
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"georgianna.price@bechtelarreilly.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1594
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00047089600000000005s
1595
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"_VYE1Yxss1fm2uBQuxoz"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1596
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00036576699999999997s
1597
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"rGCu-eHKS6DwvrwPb1Mt"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1598
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000332476s
1599
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5346421aa917fa6b7c63'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1600
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00041692599999999997s
1601
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5346421aa917fa6b7c63')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1602
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001693454s
1603
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5346421aa917fa6b7c63 response_code=201 return_code=ok total_time=0.200112
1604
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5347421aa917fa6b7c66')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1605
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0006528959999999999s
1606
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"jTrH4P1xYBoLzjUEFk7T"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1607
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00039608600000000003s
1608
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5346421aa917fa6b7c63')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1609
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000483117s
1610
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5346421aa917fa6b7c63 response_code=200 return_code=ok total_time=0.080529
1611
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"jorge@swaniawskimclaughlin.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1612
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000661991s
1613
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"mN9D8q2d-fYS2wyw3KoQ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1614
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00051106s
1615
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"vMagzqVv2vj-BxsT5-Js"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}}
1616
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000436084s
1617
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5347421aa917fa6b7c67'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1618
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000568361s
1619
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5347421aa917fa6b7c67')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1620
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.002340387s
1621
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5347421aa917fa6b7c67 response_code=201 return_code=ok total_time=0.085183
1622
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1623
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000972032s
1624
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1625
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000694393s
1626
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1627
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006933289999999999s
1628
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1629
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007614620000000001s
1630
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1631
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000705987s
1632
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5347421aa917fa6b7c69'), "public"=>"yes", "doc_version"=>0, "quantity"...
1633
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00093513s
1634
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c5347421aa917fa6b7c69 response_code=400 return_code=ok total_time=0.025214
1635
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47133314707560 type=uuid data=0x28197348ed8a44e7...>}]}
1636
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000443032s
1637
- ETHON: Libcurl initialized
1638
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.005751
1639
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001416
1640
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1641
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001
1642
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001334
1643
- Overwriting existing field name in class User.
1644
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001212
1645
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.0014
1646
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000967
1647
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001311
1648
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00128
1649
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001236
1650
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001354
1651
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001538
1652
- Overwriting existing field name in class Admin.
1653
- Overwriting existing field admin in class Admin.
1654
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1655
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1656
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000741507s
1657
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"sammie@harveydare.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1658
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000601924s
1659
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"rtGP8RQmYZZWUmaZ-__U"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1660
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00044606s
1661
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"T665fsUJfF49rA4D_xi2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1662
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000376052s
1663
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c53c9421aa91833330870'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1664
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000537424s
1665
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c53c9421aa91833330870')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1666
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003393702s
1667
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c53c9421aa91833330870 response_code=201 return_code=ok total_time=0.138112
1668
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c53c9421aa91833330873')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1669
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000725433s
1670
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"uosVbujNDqNQJ1dxxReM"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1671
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000494072s
1672
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c53c9421aa91833330870')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1673
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000606481s
1674
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c53c9421aa91833330870 response_code=200 return_code=ok total_time=0.111519
1675
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"lonzo_hills@walterheidenreich.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1676
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000943114s
1677
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"a7AKNz2to1zYSzVvYz8u"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1678
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000701104s
1679
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Cj_JM56BHMQZJ2Ly3TX7"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}}
1680
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000685581s
1681
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c53c9421aa91833330874'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1682
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000798509s
1683
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c53c9421aa91833330874')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1684
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00362224s
1685
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c53c9421aa91833330874 response_code=201 return_code=ok total_time=0.092294
1686
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1687
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000799303s
1688
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1689
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000488246s
1690
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1691
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0005537539999999999s
1692
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1693
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000538753s
1694
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1695
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000597333s
1696
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c53ca421aa91833330876'), "public"=>"yes", "doc_version"=>0, "quantity"...
1697
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000817326s
1698
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c53ca421aa91833330876 response_code=400 return_code=ok total_time=0.007337
1699
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47234209045440 type=uuid data=0xf62bc0ef25ea4f77...>}]}
1700
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000417562s
1701
- ETHON: Libcurl initialized
1702
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006291
1703
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001559
1704
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1705
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001099
1706
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001198
1707
- Overwriting existing field name in class User.
1708
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000944
1709
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001385
1710
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00107
1711
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001131
1712
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001292
1713
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001261
1714
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001298
1715
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.002201
1716
- Overwriting existing field name in class Admin.
1717
- Overwriting existing field admin in class Admin.
1718
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1719
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1720
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000639422s
1721
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"mckenzie_abernathy@bailey.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1722
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006219180000000001s
1723
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"F8nrTTuSzEs1FFay4pep"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1724
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000467353s
1725
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"LdsfzJ6XRRB4Vko-ZQah"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1726
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00047129999999999996s
1727
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1e9'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1728
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000528914s
1729
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1e9')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1730
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0035597660000000002s
1731
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5501421aa918fb42e1e9 response_code=201 return_code=ok total_time=0.116265
1732
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1ec')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1733
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000788477s
1734
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"KvXpM_PpPWjLwzwvjMEu"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1735
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000513579s
1736
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1e9')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1737
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000651421s
1738
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5501421aa918fb42e1e9 response_code=200 return_code=ok total_time=0.107748
1739
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"jaida_boehm@schambergerboyer.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1740
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000828056s
1741
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"bUzortzESc8f7umxtBsx"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1742
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000623637s
1743
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"CFCHvNrSSbXzyFJR9TXT"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1744
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000594132s
1745
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1ed'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1746
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007714989999999999s
1747
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5501421aa918fb42e1ed')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1748
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0038561620000000002s
1749
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5501421aa918fb42e1ed response_code=201 return_code=ok total_time=0.091565
1750
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1751
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000921681s
1752
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1753
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006302889999999999s
1754
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1755
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000662127s
1756
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1757
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000550034s
1758
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1759
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000674631s
1760
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1ef'), "public"=>"yes", "doc_version"=>0, "quantity"...
1761
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000863162s
1762
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c5502421aa918fb42e1ef response_code=201 return_code=ok total_time=0.088445
1763
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1ef')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"secon...
1764
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001086659s
1765
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c5502421aa918fb42e1ef response_code=200 return_code=ok total_time=0.068161
1766
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1ef')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"third...
1767
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000962944s
1768
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"mathew.nitzsche@brakus.io"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1769
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008550119999999999s
1770
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"m-pPm_XncmiyKKu36s_y"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1771
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000690504s
1772
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"q2p-QB3XRhuiUo4NZ3XB"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1773
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006978630000000001s
1774
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1775
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000782536s
1776
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1777
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0035359370000000003s
1778
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5502421aa918fb42e1f2 response_code=201 return_code=ok total_time=0.101389
1779
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f4')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1780
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009479040000000001s
1781
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Ct48gV6ke_A35oNUJaMv"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1782
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00068094s
1783
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1784
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000830405s
1785
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5502421aa918fb42e1f2 response_code=200 return_code=ok total_time=0.09738
1786
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5'), "cycle_types"=>{"em_200"=>true}}]}
1787
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000806961s
1788
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f6'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
1789
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000622207s
1790
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f7'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
1791
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005829s
1792
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}, "documents"=>[{"_id"=>"first_location"}]}
1793
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000563582s
1794
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1795
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000808799s
1796
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1797
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000585011s
1798
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1799
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005582990000000001s
1800
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1801
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000732197s
1802
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1803
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000673705s
1804
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1805
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000540907s
1806
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1807
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000499126s
1808
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1809
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000497155s
1810
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1811
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00095409s
1812
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1813
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00082043s
1814
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1815
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000570774s
1816
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1817
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000542856s
1818
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1819
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000560336s
1820
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1821
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000720797s
1822
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1823
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000617918s
1824
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1825
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000770909s
1826
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1827
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000801269s
1828
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1829
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000533951s
1830
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1831
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000477647s
1832
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1833
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000619394s
1834
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1835
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005580580000000001s
1836
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1837
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000526233s
1838
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1839
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000467381s
1840
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1841
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000504271s
1842
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1843
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006745200000000001s
1844
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1845
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000602961s
1846
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1847
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000505114s
1848
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1849
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000557243s
1850
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1851
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00048635s
1852
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1853
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000676462s
1854
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f2')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1855
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000681024s
1856
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5502421aa918fb42e1f5')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}}
1857
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000633993s
1858
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47271539469840 type=uuid data=0xa649ac9a242c473d...>}]}
1859
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000487231s
1860
- ETHON: Libcurl initialized
1861
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006547
1862
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001174
1863
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
1864
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001053
1865
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001168
1866
- Overwriting existing field name in class User.
1867
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001108
1868
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001112
1869
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001076
1870
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001032
1871
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001349
1872
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001206
1873
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.00112
1874
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001167
1875
- Overwriting existing field name in class Admin.
1876
- Overwriting existing field admin in class Admin.
1877
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
1878
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1879
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0005815200000000001s
1880
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"daphney@hoeger.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1881
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000620502s
1882
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"2EH4AFus3t_9MiPtUdCM"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1883
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000399105s
1884
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"5PmjcrRdDiuYzKMAKneu"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1885
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000406419s
1886
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fd4'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1887
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0005822409999999999s
1888
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c551b421aa91921580fd4')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1889
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0031758840000000003s
1890
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c551b421aa91921580fd4 response_code=201 return_code=ok total_time=0.189403
1891
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fd7')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1892
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00075308s
1893
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"o4iooe2Bi9vr5eKsFsaT"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1894
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000545446s
1895
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fd4')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1896
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000584188s
1897
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c551b421aa91921580fd4 response_code=200 return_code=ok total_time=0.07145500000000005
1898
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"robin.ko@rodriguez.biz"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1899
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008829479999999999s
1900
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"x2CCcM6oPch7qVyVoXx6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1901
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006568790000000001s
1902
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"SqpyH8AfD-WkL6rSL2Yu"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1903
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000592296s
1904
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fd8'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1905
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006997729999999999s
1906
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c551b421aa91921580fd8')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1907
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003204104s
1908
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c551b421aa91921580fd8 response_code=201 return_code=ok total_time=0.067848
1909
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1910
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000845394s
1911
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1912
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000617343s
1913
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1914
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000592614s
1915
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1916
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000603316s
1917
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
1918
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000680688s
1919
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fda'), "public"=>"yes", "doc_version"=>0, "quantity"...
1920
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00081499s
1921
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c551b421aa91921580fda response_code=201 return_code=ok total_time=0.061311
1922
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fda')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"secon...
1923
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0010366009999999998s
1924
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c551b421aa91921580fda response_code=200 return_code=ok total_time=0.091263
1925
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551b421aa91921580fda')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"third...
1926
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001032922s
1927
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"melia@kreigerdaugherty.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1928
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00085739s
1929
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"9Qgf9cM43hjm5WsUNhwC"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1930
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000651404s
1931
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"DwjqMHCYyXJvr-GkKsu2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1932
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006026019999999999s
1933
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
1934
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000744415s
1935
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
1936
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003295616s
1937
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c551c421aa91921580fdd response_code=201 return_code=ok total_time=0.129533
1938
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdf')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
1939
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000852199s
1940
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"YxTqs9QgoyFVuV48m2QC"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1941
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006451860000000001s
1942
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
1943
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000714764s
1944
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c551c421aa91921580fdd response_code=200 return_code=ok total_time=0.071838
1945
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0'), "cycle_types"=>{"em_200"=>true}}]}
1946
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000826632s
1947
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe1'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
1948
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00074405s
1949
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe2'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
1950
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007373820000000001s
1951
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}, "documents"=>[{"_id"=>"first_location"}]}
1952
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007011610000000001s
1953
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1954
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008751s
1955
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1956
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000802941s
1957
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1958
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008116180000000001s
1959
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1960
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0009208759999999999s
1961
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1962
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00077452s
1963
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1964
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006896609999999999s
1965
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1966
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000718876s
1967
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1968
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006147749999999999s
1969
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1970
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000814377s
1971
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1972
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007877989999999999s
1973
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1974
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000681035s
1975
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1976
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007320919999999999s
1977
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1978
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000692315s
1979
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1980
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008047320000000001s
1981
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1982
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00066796s
1983
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1984
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005629400000000001s
1985
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1986
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006797299999999999s
1987
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1988
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000569838s
1989
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1990
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000541292s
1991
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
1992
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000708023s
1993
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1994
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000608304s
1995
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1996
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000543974s
1997
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
1998
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000547297s
1999
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2000
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006017220000000001s
2001
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2002
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000778231s
2003
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2004
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00075894s
2005
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2006
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005184149999999999s
2007
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2008
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000503432s
2009
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2010
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000494246s
2011
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2012
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000645855s
2013
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fdd')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2014
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000566916s
2015
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c551c421aa91921580fe0')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}}
2016
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000452588s
2017
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47047875620180 type=uuid data=0xad61b40f2c154f05...>}]}
2018
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000351699s
2019
- ETHON: Libcurl initialized
2020
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006331
2021
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001416
2022
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2023
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001146
2024
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001197
2025
- Overwriting existing field name in class User.
2026
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000918
2027
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001163
2028
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000943
2029
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000955
2030
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001188
2031
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001088
2032
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000985
2033
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001353
2034
- Overwriting existing field name in class Admin.
2035
- Overwriting existing field admin in class Admin.
2036
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2037
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2038
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000597178s
2039
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"macie@jakubowski.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2040
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00047559s
2041
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"jSZVnHUGqAmnVw54f6NJ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2042
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00037848s
2043
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"KoyDKAwfzvg6TgzBiNn2"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2044
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000343798s
2045
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad9705'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2046
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000486242s
2047
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5531421aa91945ad9705')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2048
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001707322s
2049
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5531421aa91945ad9705 response_code=201 return_code=ok total_time=0.138459
2050
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad9708')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2051
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000724382s
2052
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"oL6x98ySr3M3jtxoQPvZ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2053
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000503181s
2054
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad9705')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2055
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0005876389999999999s
2056
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5531421aa91945ad9705 response_code=200 return_code=ok total_time=0.080386
2057
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"aleandro.conn@crona.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2058
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000966184s
2059
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"8ju5CVbg6J-vZmzo_doR"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2060
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007293639999999999s
2061
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Y1VLQ54uEaas_iugtumy"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2062
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000724127s
2063
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad9709'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2064
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0008422099999999999s
2065
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5531421aa91945ad9709')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2066
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003870755s
2067
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5531421aa91945ad9709 response_code=201 return_code=ok total_time=0.07716
2068
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2069
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0009618160000000001s
2070
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2071
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000900958s
2072
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2073
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000851315s
2074
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2075
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000839662s
2076
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2077
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008131670000000001s
2078
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad970b'), "public"=>"yes", "doc_version"=>0, "quantity"...
2079
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000824096s
2080
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c5531421aa91945ad970b response_code=201 return_code=ok total_time=0.086498
2081
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad970b')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"secon...
2082
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000977312s
2083
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c5531421aa91945ad970b response_code=200 return_code=ok total_time=0.115161
2084
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5531421aa91945ad970b')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"third...
2085
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0009268120000000001s
2086
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"genevieve@yost.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2087
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007288419999999999s
2088
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"-8i9kCK8-JFzX39-ked4"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2089
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000568956s
2090
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"36sgpxBTL4mndC8CY77B"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2091
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005669199999999999s
2092
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2093
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006343340000000001s
2094
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2095
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0031276050000000003s
2096
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5532421aa91945ad970e response_code=201 return_code=ok total_time=0.095117
2097
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9710')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2098
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000969859s
2099
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"XtDRgqFTB2hzX2VxEoo1"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2100
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000601666s
2101
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2102
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000715074s
2103
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c5532421aa91945ad970e response_code=200 return_code=ok total_time=0.064257
2104
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711'), "cycle_types"=>{"em_200"=>true}}]}
2105
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.001043338s
2106
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9712'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2107
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000866655s
2108
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9713'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2109
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.001080525s
2110
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}, "documents"=>[{"_id"=>"first_location"}]}
2111
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000739604s
2112
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2113
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000707587s
2114
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2115
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000558323s
2116
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2117
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00058929s
2118
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2119
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007888659999999999s
2120
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2121
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000629846s
2122
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2123
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000502698s
2124
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2125
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00048422199999999997s
2126
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2127
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000629835s
2128
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2129
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008480650000000001s
2130
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2131
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006805940000000001s
2132
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2133
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000442375s
2134
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2135
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000512395s
2136
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2137
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000474932s
2138
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2139
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000681946s
2140
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2141
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000586878s
2142
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2143
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007519969999999999s
2144
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2145
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008463380000000001s
2146
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2147
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005787209999999999s
2148
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2149
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000512751s
2150
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2151
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006355330000000001s
2152
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2153
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00056782s
2154
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2155
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000432472s
2156
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2157
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00036949499999999996s
2158
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2159
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000399985s
2160
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2161
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000516911s
2162
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2163
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000464884s
2164
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2165
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000461352s
2166
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2167
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000419339s
2168
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2169
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000422658s
2170
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2171
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000494523s
2172
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad970e')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2173
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000420013s
2174
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c5532421aa91945ad9711')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}}
2175
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00038466600000000003s
2176
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47247878647800 type=uuid data=0x373673ee46894c85...>}]}
2177
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000434977s
2178
- ETHON: Libcurl initialized
2179
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006656
2180
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00174
2181
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2182
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00109
2183
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001308
2184
- Overwriting existing field name in class User.
2185
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000981
2186
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001039
2187
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000902
2188
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001014
2189
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001479
2190
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001567
2191
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001212
2192
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001181
2193
- Overwriting existing field name in class Admin.
2194
- Overwriting existing field admin in class Admin.
2195
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2196
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2197
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0006489569999999999s
2198
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"sophie_wehner@schmitt.biz"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2199
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00052369s
2200
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"mStsECpnsPo-kbVQ7Fia"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2201
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000384014s
2202
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"NgZ4-PSy-D19h21EHZzx"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2203
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00036687099999999995s
2204
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557c421aa91967a9038c'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2205
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006616s
2206
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c557c421aa91967a9038c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2207
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003366525s
2208
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c557c421aa91967a9038c response_code=201 return_code=ok total_time=0.187569
2209
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557c421aa91967a9038f')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2210
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000862838s
2211
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"LqL5umEiCW3kCjyR79W1"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2212
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006214489999999999s
2213
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557c421aa91967a9038c')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2214
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0007514409999999999s
2215
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c557c421aa91967a9038c response_code=200 return_code=ok total_time=0.066801
2216
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"nyah@okuneva.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2217
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000966486s
2218
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zQeG7MbuapPH-GWNGDdx"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2219
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00077498s
2220
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"8BS-gcwG2DXdXvVB8_Dr"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2221
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007768849999999999s
2222
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557c421aa91967a90390'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2223
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000870224s
2224
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c557c421aa91967a90390')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2225
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003816633s
2226
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c557c421aa91967a90390 response_code=201 return_code=ok total_time=0.066218
2227
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2228
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.001021151s
2229
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2230
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000797656s
2231
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2232
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000820864s
2233
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2234
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0008354969999999999s
2235
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2236
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000817137s
2237
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557c421aa91967a90392'), "public"=>"yes", "doc_version"=>0, "quantity"...
2238
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000846836s
2239
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c557c421aa91967a90392 response_code=201 return_code=ok total_time=0.070761
2240
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557c421aa91967a90392')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"secon...
2241
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00107221s
2242
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c557c421aa91967a90392 response_code=200 return_code=ok total_time=0.113492
2243
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557c421aa91967a90392')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"third...
2244
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001068935s
2245
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"ella.yundt@runte.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2246
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008928499999999999s
2247
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"CzsyKQ6Phe3EdoZscYPn"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2248
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0006732789999999999s
2249
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"MFMkH4KmBVjpd7_tk817"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2250
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000628896s
2251
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2252
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000768477s
2253
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2254
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003784015s
2255
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c557d421aa91967a90395 response_code=201 return_code=ok total_time=0.073872
2256
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90397')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2257
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001015879s
2258
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Nn11ji19fMvBi9Bi_um8"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2259
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000661371s
2260
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2261
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000844366s
2262
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c557d421aa91967a90395 response_code=200 return_code=ok total_time=0.062675
2263
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398'), "cycle_types"=>{"em_200"=>true}}]}
2264
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00088295s
2265
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90399'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2266
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006511900000000001s
2267
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c557d421aa91967a9039a'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2268
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000618595s
2269
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}, "documents"=>[{"_id"=>"first_location"}]}
2270
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006083750000000001s
2271
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2272
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000932901s
2273
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2274
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007547750000000001s
2275
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2276
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000757058s
2277
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2278
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0009166910000000001s
2279
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2280
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000877799s
2281
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2282
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007154850000000001s
2283
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2284
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000841729s
2285
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2286
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008541169999999999s
2287
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2288
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000878289s
2289
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2290
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000746596s
2291
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2292
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00054656s
2293
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2294
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000573644s
2295
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2296
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.001301429s
2297
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2298
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000983602s
2299
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2300
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000964919s
2301
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2302
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000738638s
2303
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2304
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008103279999999999s
2305
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2306
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000584805s
2307
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2308
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005604s
2309
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2310
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007501879999999999s
2311
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2312
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000692513s
2313
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2314
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000557876s
2315
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2316
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000531528s
2317
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2318
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000455106s
2319
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2320
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000750776s
2321
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2322
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000839171s
2323
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2324
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00054188s
2325
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2326
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000435517s
2327
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2328
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000487689s
2329
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2330
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000524966s
2331
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90395')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2332
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.00047922300000000003s
2333
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c557d421aa91967a90398')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}}
2334
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000399745s
2335
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x46923992934140 type=uuid data=0x2a85373c6c9e4ffa...>}]}
2336
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.00044463399999999996s
2337
- ETHON: Libcurl initialized
2338
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006618
2339
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002061
2340
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2341
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001003
2342
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001284
2343
- Overwriting existing field name in class User.
2344
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000932
2345
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001035
2346
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001019
2347
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001062
2348
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002192
2349
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001895
2350
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001766
2351
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001662
2352
- Overwriting existing field name in class Admin.
2353
- Overwriting existing field admin in class Admin.
2354
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2355
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2356
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000689161s
2357
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"damon@beahan.name"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2358
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000609643s
2359
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"A_ErnsLmtkquHGX-A3LS"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2360
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000441752s
2361
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"sLnCkA5GmtFqsi6Vmsah"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2362
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000418538s
2363
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0aa'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2364
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000509268s
2365
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0aa')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2366
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003064645s
2367
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67e4421aa92158b2f0aa response_code=201 return_code=ok total_time=0.136889
2368
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0ad')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2369
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000987145s
2370
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"HgovnQAjx4czqAWQ96Be"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2371
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000626238s
2372
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0aa')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2373
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.00080296s
2374
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67e4421aa92158b2f0aa response_code=200 return_code=ok total_time=0.093752
2375
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"evelyn.schumm@muller.net"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2376
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008895229999999999s
2377
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"xzSyxdheFWDca6XpcUp7"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2378
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0007408s
2379
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"1zkVMcHCoMsBbhcp8vaQ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}}
2380
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00067187s
2381
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0ae'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2382
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000823855s
2383
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0ae')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2384
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003776467s
2385
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67e4421aa92158b2f0ae response_code=201 return_code=ok total_time=0.100656
2386
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2387
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.001016871s
2388
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2389
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000803614s
2390
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2391
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00078813s
2392
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2393
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007685470000000001s
2394
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2395
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000735199s
2396
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67e4421aa92158b2f0b0'), "public"=>"yes", "doc_version"=>0, "quantity"...
2397
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0009269969999999999s
2398
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c67e4421aa92158b2f0b0 response_code=201 return_code=ok total_time=0.120765
2399
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47334116951800 type=uuid data=0x17f214519ef14e08...>}]}
2400
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000584791s
2401
- ETHON: Libcurl initialized
2402
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.005748
2403
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00136
2404
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2405
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000941
2406
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001263
2407
- Overwriting existing field name in class User.
2408
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000899
2409
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000919
2410
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000849
2411
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000942
2412
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00113
2413
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001601
2414
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001292
2415
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.005072
2416
- Overwriting existing field name in class Admin.
2417
- Overwriting existing field admin in class Admin.
2418
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2419
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2420
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00056827s
2421
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"elise.wisoky@runte.info"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2422
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000488701s
2423
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"g1eGWTceKx6f1oHhpXsj"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2424
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.00041816s
2425
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"LQUks5eHjWWepqSWFsuE"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2426
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000356167s
2427
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fb421aa9217317a739'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2428
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000480375s
2429
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c67fb421aa9217317a739')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2430
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001691055s
2431
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67fb421aa9217317a739 response_code=201 return_code=ok total_time=0.165296
2432
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73c')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2433
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000672123s
2434
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Xg55q687reMGzv5YXUbb"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2435
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000426962s
2436
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fb421aa9217317a739')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2437
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0005067639999999999s
2438
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67fb421aa9217317a739 response_code=200 return_code=ok total_time=0.09403099999999998
2439
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"elza@welch.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2440
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0008098350000000001s
2441
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"R2eEuPJrsM1syy1FEJQf"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2442
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000627797s
2443
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"Hpg2nsB9FEifuEK47z25"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2444
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000608268s
2445
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73d'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2446
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000741412s
2447
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73d')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2448
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.003389426s
2449
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67fc421aa9217317a73d response_code=201 return_code=ok total_time=0.114521
2450
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2451
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.0007037339999999999s
2452
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2453
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000486159s
2454
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2455
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000531235s
2456
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2457
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.00046280899999999995s
2458
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2459
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000530129s
2460
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73f'), "public"=>"yes", "doc_version"=>0, "quantity"...
2461
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000613114s
2462
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c67fc421aa9217317a73f response_code=201 return_code=ok total_time=0.054018
2463
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73f')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"secon...
2464
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0006505759999999999s
2465
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c67fc421aa9217317a73f response_code=200 return_code=ok total_time=0.059319
2466
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a73f')}, "u"=>{"$push"=>{"cycles"=>{"_id"=>"third...
2467
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000671781s
2468
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"vicenta.gleichner@hilllwintheiser.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2469
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000507131s
2470
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"8GTyP7eaFepqZfstj-5s"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2471
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000449479s
2472
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"tMsJfA94gYk6bcdvg3y6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2473
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000498912s
2474
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2475
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000578538s
2476
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2477
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001875398s
2478
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67fc421aa9217317a742 response_code=201 return_code=ok total_time=0.123399
2479
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a744')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2480
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0005565090000000001s
2481
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"nLy_zX3Nmz4xxYoPtU8t"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2482
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000668566s
2483
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2484
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000816346s
2485
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c67fc421aa9217317a742 response_code=200 return_code=ok total_time=0.077218
2486
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_entities", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745'), "cycle_types"=>{"em_200"=>true}}]}
2487
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000907119s
2488
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a746'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2489
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000739818s
2490
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_schedules", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a747'), "can_do_cycles"=>["first_cycle"], "start_time"=>...
2491
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00068586s
2492
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_workflow_locations", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}, "documents"=>[{"_id"=>"first_location"}]}
2493
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000680934s
2494
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2495
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000848661s
2496
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2497
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000642575s
2498
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2499
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006034699999999999s
2500
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2501
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007689940000000001s
2502
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2503
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000724714s
2504
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2505
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000602254s
2506
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2507
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000632254s
2508
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2509
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000747106s
2510
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2511
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000942467s
2512
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2513
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000759484s
2514
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2515
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006532469999999999s
2516
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2517
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000673065s
2518
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2519
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000622344s
2520
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:12:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:12:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2521
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000784444s
2522
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2523
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000825695s
2524
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2525
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0006967430000000001s
2526
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_shopping_products", "filter"=>{"_type"=>"Shopping::Product"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2527
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000719453s
2528
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2529
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000518133s
2530
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2531
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000486084s
2532
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2533
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000617296s
2534
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2535
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000631145s
2536
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2537
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000548333s
2538
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2539
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000514977s
2540
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2541
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005809620000000001s
2542
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2543
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000683962s
2544
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2545
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000585384s
2546
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2547
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000490331s
2548
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2549
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000465529s
2550
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_workflow_locations", "filter"=>{"_id"=>"first_location"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2551
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000487723s
2552
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_schedules", "filter"=>{"$and"=>[{"location_id"=>"first_location"}, {"start_time"=>{"$lte"=>2011-05-05 10:13:00 +0530}}, {"end_time"=>{"$gte"=>2011-05-05 10:13:00 +0530}}]}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BS...
2553
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000873415s
2554
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a742')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2555
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000741921s
2556
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"auth_work_entities", "filter"=>{"_id"=>BSON::ObjectId('5b1c67fc421aa9217317a745')}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}}
2557
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.000645804s
2558
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47037037483780 type=uuid data=0xaf7459091b7047d8...>}]}
2559
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000517097s
2560
- ETHON: Libcurl initialized
2561
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.005877
2562
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001336
2563
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2564
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000931
2565
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001144
2566
- Overwriting existing field name in class User.
2567
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000924
2568
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001088
2569
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000932
2570
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000974
2571
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001153
2572
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001056
2573
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001046
2574
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000989
2575
- Overwriting existing field name in class Admin.
2576
- Overwriting existing field admin in class Admin.
2577
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2578
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2579
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000851346s
2580
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"filiberto@carroll.org"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2581
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0005214919999999999s
2582
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"y_HutFyLfPZnf_YAJkY6"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2583
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000395071s
2584
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"p9rx53KsSR_QiCHkdT4t"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2585
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000381212s
2586
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c680e421aa92186a8b922'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2587
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00047791500000000003s
2588
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c680e421aa92186a8b922')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2589
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.001677771s
2590
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c680e421aa92186a8b922 response_code=201 return_code=ok total_time=0.202244
2591
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c680e421aa92186a8b925')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::ObjectId('5b1c...
2592
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0019876580000000002s
2593
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"4XsxMDnVtGV9Zd1yp1zN"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2594
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000582475s
2595
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('5b1c680e421aa92186a8b922')}, "u"=>{"$set"=>{"client_authentication"=>{"testappid"=>"te...
2596
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.000718427s
2597
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c680e421aa92186a8b922 response_code=200 return_code=ok total_time=0.065776
2598
- MONGODB | localhost:27017 | dummy_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"te@bosco.co"}, "projection"=>{"_id"=>1}, "limit"=>1, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2599
- MONGODB | localhost:27017 | dummy_test.find | SUCCEEDED | 0.0007053259999999999s
2600
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"zU3xD1y1AsRz4hyU2EWj"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2601
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.0005747749999999999s
2602
- MONGODB | localhost:27017 | dummy_test.count | STARTED | {"count"=>"users", "query"=>{"authentication_token"=>"vyNxs8bSjkJ3RG_S6jNQ"}, "$readPreference"=>{"mode"=>"primary"}, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}}
2603
- MONGODB | localhost:27017 | dummy_test.count | SUCCEEDED | 0.000573161s
2604
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"users", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c680e421aa92186a8b926'), "public"=>"no", "version"=>0, "additional_login_param_status"=...
2605
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000647923s
2606
- MONGODB | localhost:27017 | dummy_test.update | STARTED | {"update"=>"auth_clients", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "updates"=>[{"q"=>{"resource_id"=>BSON::ObjectId('5b1c680e421aa92186a8b926')}, "u"=>{"$setOnInsert"=>{"_id"=>BSON::Object...
2607
- MONGODB | localhost:27017 | dummy_test.update | SUCCEEDED | 0.0020748299999999997s
2608
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users/user/5b1c680e421aa92186a8b926 response_code=201 return_code=ok total_time=0.104489
2609
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_cycles", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2610
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000867867s
2611
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_shopping_products", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c680f421aa92186a8b928'), "public"=>"yes", "doc_version"=>0, "quantity"...
2612
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0009716989999999999s
2613
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products/shopping%2Fproduct/5b1c680f421aa92186a8b928 response_code=201 return_code=ok total_time=0.069897
2614
- MONGODB | localhost:27017 | dummy_test.delete | STARTED | {"delete"=>"auth_work_cycles", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}, "deletes"=>[{"q"=>{}, "limit"=>0}]}
2615
- MONGODB | localhost:27017 | dummy_test.delete | SUCCEEDED | 0.000835438s
2616
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x46978990411040 type=uuid data=0x9cbc31f2ce1c4eb3...>}]}
2617
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000545184s
2618
- ETHON: Libcurl initialized
2619
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00603
2620
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001456
2621
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2622
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000868
2623
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001201
2624
- Overwriting existing field name in class User.
2625
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001636
2626
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001397
2627
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001241
2628
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001262
2629
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001138
2630
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.004017
2631
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001383
2632
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001433
2633
- Overwriting existing field name in class Admin.
2634
- Overwriting existing field admin in class Admin.
2635
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2636
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47135835819060 type=uuid data=0xf23d6cb2d2c64076...>}]}
2637
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.001205724s
2638
- ETHON: Libcurl initialized
2639
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.008795
2640
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.002448
2641
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2642
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000959
2643
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001256
2644
- Overwriting existing field name in class User.
2645
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001047
2646
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001075
2647
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000904
2648
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000976
2649
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00098
2650
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.000917
2651
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000837
2652
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001175
2653
- Overwriting existing field name in class Admin.
2654
- Overwriting existing field admin in class Admin.
2655
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2656
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c6ba8421aa924a71895fe'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2657
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.348433497s
2658
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c6ba8421aa924a7189601'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2659
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007633459999999999s
2660
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c6ba8421aa924a7189604'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2661
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000667194s
2662
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c6ba8421aa924a7189607'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2663
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0007023309999999999s
2664
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c6ba8421aa924a718960a'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2665
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006210829999999999s
2666
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47290262690380 type=uuid data=0x8701a1abd5c9425f...>}]}
2667
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.000403958s
2668
- ETHON: Libcurl initialized
2669
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006109
2670
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.00116
2671
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2672
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000854
2673
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.000938
2674
- Overwriting existing field name in class User.
2675
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.002296
2676
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.002377
2677
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001374
2678
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.00148
2679
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001238
2680
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001125
2681
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000934
2682
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000844
2683
- Overwriting existing field name in class Admin.
2684
- Overwriting existing field admin in class Admin.
2685
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2686
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47440281128000 type=uuid data=0xacf4407ea806415a...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70b6421aa92692ab9957'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2687
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000682605s
2688
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47440281128000 type=uuid data=0xacf4407ea806415a...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70b6421aa92692ab995a'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2689
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000464804s
2690
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47440281128000 type=uuid data=0xacf4407ea806415a...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70b6421aa92692ab995d'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2691
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000416688s
2692
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47440281128000 type=uuid data=0xacf4407ea806415a...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70b6421aa92692ab9960'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2693
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00038150399999999996s
2694
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47440281128000 type=uuid data=0xacf4407ea806415a...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70b6421aa92692ab9963'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2695
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000387312s
2696
- MONGODB | localhost:27017 | dummy_test.aggregate | STARTED | {"aggregate"=>"auth_work_minutes", "pipeline"=>[{"$match"=>{"cycles"=>{"$elemMatch"=>{"$and"=>[{"$or"=>[{"start_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"end_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"$and"=>[{"start_time"=>{"$lte"=...
2697
- MONGODB | localhost:27017 | dummy_test.aggregate | FAILED | A pipeline stage specification object must contain exactly one field. (40323) | 0.19332228s
2698
- ETHON: Libcurl initialized
2699
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.005858
2700
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001319
2701
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2702
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000782
2703
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.000902
2704
- Overwriting existing field name in class User.
2705
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000877
2706
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000887
2707
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001089
2708
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001108
2709
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.000959
2710
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.000874
2711
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000775
2712
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000795
2713
- Overwriting existing field name in class Admin.
2714
- Overwriting existing field admin in class Admin.
2715
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2716
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70ea421aa926ac58a811'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2717
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000704541s
2718
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70ea421aa926ac58a814'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2719
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000713029s
2720
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70ea421aa926ac58a817'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2721
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00047438199999999997s
2722
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70ea421aa926ac58a81a'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2723
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00044747600000000004s
2724
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c70ea421aa926ac58a81d'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2725
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000460489s
2726
- MONGODB | localhost:27017 | dummy_test.aggregate | STARTED | {"aggregate"=>"auth_work_minutes", "pipeline"=>[{"$match"=>{"cycles"=>{"$elemMatch"=>{"$and"=>[{"$or"=>[{"start_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"end_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"$and"=>[{"start_time"=>{"$lte"=...
2727
- MONGODB | localhost:27017 | dummy_test.aggregate | SUCCEEDED | 0.025439747999999998s
2728
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x46935668805100 type=uuid data=0xafbfac61102e498c...>}]}
2729
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.001260696s
2730
- ETHON: Libcurl initialized
2731
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.006312
2732
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001454
2733
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2734
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001519
2735
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001197
2736
- Overwriting existing field name in class User.
2737
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000879
2738
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000924
2739
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000873
2740
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001027
2741
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001357
2742
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.00168
2743
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001147
2744
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001299
2745
- Overwriting existing field name in class Admin.
2746
- Overwriting existing field admin in class Admin.
2747
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2748
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225616545580 type=uuid data=0x1eef459ebcc1477b...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7101421aa926c43f72ba'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2749
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000567357s
2750
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225616545580 type=uuid data=0x1eef459ebcc1477b...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7101421aa926c43f72bd'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2751
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000371296s
2752
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225616545580 type=uuid data=0x1eef459ebcc1477b...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7101421aa926c43f72c0'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2753
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000367547s
2754
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225616545580 type=uuid data=0x1eef459ebcc1477b...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7101421aa926c43f72c3'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2755
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000347528s
2756
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47225616545580 type=uuid data=0x1eef459ebcc1477b...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7101421aa926c43f72c6'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2757
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000325986s
2758
- MONGODB | localhost:27017 | dummy_test.aggregate | STARTED | {"aggregate"=>"auth_work_minutes", "pipeline"=>[{"$match"=>{"cycles"=>{"$elemMatch"=>{"$and"=>[{"$or"=>[{"start_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"end_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"$and"=>[{"start_time"=>{"$lte"=...
2759
- MONGODB | localhost:27017 | dummy_test.aggregate | FAILED | A pipeline stage specification object must contain exactly one field. (40323) | 0.000403104s
2760
- ETHON: Libcurl initialized
2761
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.0056
2762
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001246
2763
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2764
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001001
2765
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.00098
2766
- Overwriting existing field name in class User.
2767
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000894
2768
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000895
2769
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.001002
2770
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001026
2771
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.000971
2772
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.000968
2773
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.000836
2774
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.000927
2775
- Overwriting existing field name in class Admin.
2776
- Overwriting existing field admin in class Admin.
2777
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2778
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47012046629600 type=uuid data=0xbed86b08bdf840b7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7273421aa92756571023'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2779
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000750488s
2780
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47012046629600 type=uuid data=0xbed86b08bdf840b7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7273421aa92756571026'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2781
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000502366s
2782
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47012046629600 type=uuid data=0xbed86b08bdf840b7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7273421aa92756571029'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2783
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.00043718100000000003s
2784
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47012046629600 type=uuid data=0xbed86b08bdf840b7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7273421aa9275657102c'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2785
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000422461s
2786
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47012046629600 type=uuid data=0xbed86b08bdf840b7...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7273421aa9275657102f'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2787
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000430992s
2788
- MONGODB | localhost:27017 | dummy_test.aggregate | STARTED | {"aggregate"=>"auth_work_minutes", "pipeline"=>[{"$match"=>{"cycles"=>{"$elemMatch"=>{"$and"=>[{"$or"=>[{"start_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"end_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"$and"=>[{"start_time"=>{"$lte"=...
2789
- MONGODB | localhost:27017 | dummy_test.aggregate | FAILED | path option to $unwind stage should be prefixed with a '$': cycles (28818) | 0.073439802s
2790
- ETHON: Libcurl initialized
2791
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00543
2792
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001093
2793
- Overwriting existing field resource_id in class Auth::Shopping::CartItem.
2794
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000933
2795
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.001101
2796
- Overwriting existing field name in class User.
2797
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.00091
2798
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001072
2799
- ETHON: performed EASY effective_url=http://localhost:9200/ response_code=200 return_code=ok total_time=0.000897
2800
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001134
2801
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_products response_code=200 return_code=ok total_time=0.001403
2802
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_shopping_cart_items response_code=200 return_code=ok total_time=0.00143
2803
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_users response_code=200 return_code=ok total_time=0.001297
2804
- ETHON: performed EASY effective_url=http://localhost:9200/wordjelly_auth_workflow_assemblies response_code=200 return_code=ok total_time=0.001163
2805
- Overwriting existing field name in class Admin.
2806
- Overwriting existing field admin in class Admin.
2807
- Overwriting existing field duration in class Auth::Workflow::Tlocation.
2808
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7290421aa9276fe82717'), "time"=>2012-05-05 04:40:00 UTC, "cycles"=>[{"_id"...
2809
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.0006317860000000001s
2810
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7290421aa9276fe8271a'), "time"=>2012-05-05 04:41:00 UTC, "cycles"=>[{"_id"...
2811
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000663608s
2812
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7290421aa9276fe8271d'), "time"=>2012-05-05 04:42:00 UTC, "cycles"=>[{"_id"...
2813
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000489827s
2814
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7290421aa9276fe82720'), "time"=>2012-05-05 04:43:00 UTC, "cycles"=>[{"_id"...
2815
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000471686s
2816
- MONGODB | localhost:27017 | dummy_test.insert | STARTED | {"insert"=>"auth_work_minutes", "ordered"=>true, "lsid"=>{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}, "documents"=>[{"_id"=>BSON::ObjectId('5b1c7290421aa9276fe82723'), "time"=>2012-05-05 04:44:00 UTC, "cycles"=>[{"_id"...
2817
- MONGODB | localhost:27017 | dummy_test.insert | SUCCEEDED | 0.000472435s
2818
- MONGODB | localhost:27017 | dummy_test.aggregate | STARTED | {"aggregate"=>"auth_work_minutes", "pipeline"=>[{"$match"=>{"cycles"=>{"$elemMatch"=>{"$and"=>[{"$or"=>[{"start_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"end_time"=>{"$gte"=>1336192980, "$lte"=>1336193160}}, {"$and"=>[{"start_time"=>{"$lte"=...
2819
- MONGODB | localhost:27017 | dummy_test.aggregate | SUCCEEDED | 0.025402404s
2820
- MONGODB | localhost:27017 | admin.endSessions | STARTED | {"endSessions"=>[{"id"=><BSON::Binary:0x47090892139540 type=uuid data=0x79c51c5c77fa4580...>}]}
2821
- MONGODB | localhost:27017 | admin.endSessions | SUCCEEDED | 0.0013177949999999999s