jinda 0.7.7.2 → 0.7.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. checksums.yaml +4 -4
  2. data/app/config/routes.rb +44 -0
  3. data/lib/generators/jinda/templates/README.md +3 -1
  4. data/lib/generators/jinda/templates/app/assets/stylesheets/application.css.scss +2 -2
  5. data/lib/generators/jinda/templates/app/assets/stylesheets/jinda_jqm.css.scss +32 -0
  6. data/lib/jinda/version.rb +1 -1
  7. data/test/dummy/Dockerfile +28 -0
  8. data/test/dummy/Gemfile +102 -0
  9. data/test/dummy/Gemfile.lock +514 -0
  10. data/test/dummy/Guardfile +96 -0
  11. data/test/dummy/{db/development.sqlite3 → README.md} +0 -0
  12. data/test/dummy/Rakefile +1 -1
  13. data/test/dummy/app/assets/config/manifest.js +2 -1
  14. data/test/dummy/app/assets/config/manifest.js-rails +2 -0
  15. data/test/dummy/app/{javascript/packs → assets/javascripts}/application.js +4 -4
  16. data/test/dummy/app/assets/stylesheets/application.scss +23 -0
  17. data/test/dummy/app/assets/stylesheets/jinda.scss +253 -0
  18. data/test/dummy/app/controllers/adminltes_controller.rb +2 -0
  19. data/test/dummy/app/controllers/admins_controller.rb +6 -0
  20. data/test/dummy/app/controllers/api/v1/notes_controller.rb +81 -0
  21. data/test/dummy/app/controllers/application_controller.rb +39 -0
  22. data/test/dummy/app/controllers/application_controller.rb.bak +2 -0
  23. data/test/dummy/app/controllers/articles_controller.rb +110 -0
  24. data/test/dummy/app/controllers/comments_controller.rb +31 -0
  25. data/test/dummy/app/controllers/docs_controller.rb +56 -0
  26. data/test/dummy/app/controllers/identities_controller.rb +5 -0
  27. data/test/dummy/app/controllers/notes_controller.rb +84 -0
  28. data/test/dummy/app/controllers/password_resets.rb +28 -0
  29. data/test/dummy/app/controllers/password_resets_controller.rb +34 -0
  30. data/test/dummy/app/controllers/sessions_controller.rb +44 -0
  31. data/test/dummy/app/controllers/sitemap_controller.rb +12 -0
  32. data/test/dummy/app/controllers/users_controller.rb +35 -0
  33. data/test/dummy/app/helpers/admins_helper.rb +2 -0
  34. data/test/dummy/app/helpers/application_helper.rb +31 -0
  35. data/test/dummy/app/helpers/application_helper.rb.bak +2 -0
  36. data/test/dummy/app/helpers/articles_helper.rb +2 -0
  37. data/test/dummy/app/helpers/basic_helper.rb +2 -0
  38. data/test/dummy/app/helpers/comments_helper.rb +2 -0
  39. data/test/dummy/app/helpers/ctrs_helper.rb +2 -0
  40. data/test/dummy/app/helpers/devs_helper.rb +2 -0
  41. data/test/dummy/app/helpers/pictures_helper.rb +2 -0
  42. data/test/dummy/app/helpers/sitemap_helper.rb +2 -0
  43. data/test/dummy/app/helpers/users_helper.rb +2 -0
  44. data/test/dummy/app/jinda/index.mm +486 -0
  45. data/test/dummy/app/jinda/template/index.mm +366 -0
  46. data/test/dummy/app/jinda/template/linkview.haml +21 -0
  47. data/test/dummy/app/jinda/template/view.html.erb +34 -0
  48. data/test/dummy/app/mailers/jinda_mailer.rb +7 -0
  49. data/test/dummy/app/mailers/note_mailer.rb +10 -0
  50. data/test/dummy/app/mailers/user_mailer.rb +15 -0
  51. data/test/dummy/app/models/address.rb +14 -0
  52. data/test/dummy/app/models/article.rb +14 -0
  53. data/test/dummy/app/models/comment.rb +14 -0
  54. data/test/dummy/app/models/identity.rb +18 -0
  55. data/test/dummy/app/models/jinda/doc.rb +36 -0
  56. data/test/dummy/app/models/jinda/module.rb +11 -0
  57. data/test/dummy/app/models/jinda/notice.rb +14 -0
  58. data/test/dummy/app/models/jinda/role.rb +8 -0
  59. data/test/dummy/app/models/jinda/runseq.rb +24 -0
  60. data/test/dummy/app/models/jinda/service.rb +17 -0
  61. data/test/dummy/app/models/jinda/xmain.rb +38 -0
  62. data/test/dummy/app/models/note.rb +22 -0
  63. data/test/dummy/app/models/param.rb +41 -0
  64. data/test/dummy/app/models/person.rb +14 -0
  65. data/test/dummy/app/models/user.rb +66 -0
  66. data/test/dummy/app/views/adminbsbs/content.haml +241 -0
  67. data/test/dummy/app/views/adminltes/dashboard1.haml +461 -0
  68. data/test/dummy/app/views/adminltes/dashboard2.haml +656 -0
  69. data/test/dummy/app/views/admins/edit_role/edit_role.html.erb +7 -0
  70. data/test/dummy/app/views/admins/edit_role/select_user.html.erb +4 -0
  71. data/test/dummy/app/views/api/v1/note.haml +0 -0
  72. data/test/dummy/app/views/articles/_report.haml +35 -0
  73. data/test/dummy/app/views/articles/edit.haml +23 -0
  74. data/test/dummy/app/views/articles/edit_article/edit_article.html.erb +15 -0
  75. data/test/dummy/app/views/articles/edit_article/select_article.html.erb +12 -0
  76. data/test/dummy/app/views/articles/index.haml +5 -0
  77. data/test/dummy/app/views/articles/my.haml +5 -0
  78. data/test/dummy/app/views/articles/new_article/form_article.html.erb +16 -0
  79. data/test/dummy/app/views/articles/show.html.haml +58 -0
  80. data/test/dummy/app/views/articles/xedit_article/edit_article.html.erb +13 -0
  81. data/test/dummy/app/views/ctrs/vfolder1/viewfile1.html.erb +23 -0
  82. data/test/dummy/app/views/ctrs/vfolder1/viewfile2.html.erb +23 -0
  83. data/test/dummy/app/views/ctrs/vfolder2/viewfile2.html.erb +23 -0
  84. data/test/dummy/app/views/custom/_adsense.haml +6 -0
  85. data/test/dummy/app/views/docs/doc_edit/doc_edit.html.erb +21 -0
  86. data/test/dummy/app/views/docs/doc_edit/doc_select.html.erb +14 -0
  87. data/test/dummy/app/views/docs/doc_new/doc_form.html.erb +32 -0
  88. data/test/dummy/app/views/docs/doc_new/doc_form.md +36 -0
  89. data/test/dummy/app/views/docs/doc_xedit/doc_edit.html.erb +21 -0
  90. data/test/dummy/app/views/docs/edit/select_note.html.erb +14 -0
  91. data/test/dummy/app/views/docs/index.haml +21 -0
  92. data/test/dummy/app/views/docs/my.haml +27 -0
  93. data/test/dummy/app/views/identities/new-bak.html.haml +32 -0
  94. data/test/dummy/app/views/identities/new.html.haml +45 -0
  95. data/test/dummy/app/views/jinda/_activity.md +10 -0
  96. data/test/dummy/app/views/jinda/_menu.haml +27 -0
  97. data/test/dummy/app/views/jinda/_menu_mm.haml +44 -0
  98. data/test/dummy/app/views/jinda/_model.md +5 -0
  99. data/test/dummy/app/views/jinda/_modul.md +9 -0
  100. data/test/dummy/app/views/jinda/_pending_home.haml +5 -0
  101. data/test/dummy/app/views/jinda/_pending_page.haml +24 -0
  102. data/test/dummy/app/views/jinda/_service.md +24 -0
  103. data/test/dummy/app/views/jinda/_static.haml +13 -0
  104. data/test/dummy/app/views/jinda/doc-thai.md +37 -0
  105. data/test/dummy/app/views/jinda/doc.md +36 -0
  106. data/test/dummy/app/views/jinda/error_logs.haml +22 -0
  107. data/test/dummy/app/views/jinda/feed.rss.builder +27 -0
  108. data/test/dummy/app/views/jinda/help.haml +20 -0
  109. data/test/dummy/app/views/jinda/index.html.haml +53 -0
  110. data/test/dummy/app/views/jinda/logs.haml +22 -0
  111. data/test/dummy/app/views/jinda/notice_logs.haml +18 -0
  112. data/test/dummy/app/views/jinda/pending.haml +1 -0
  113. data/test/dummy/app/views/jinda/run_form.haml +42 -0
  114. data/test/dummy/app/views/jinda/run_output.haml +38 -0
  115. data/test/dummy/app/views/jinda/search.haml +20 -0
  116. data/test/dummy/app/views/jinda/status.haml +61 -0
  117. data/test/dummy/app/views/jinda_mailer/gmail.html.erb +9 -0
  118. data/test/dummy/app/views/layouts/_head.html.erb +10 -0
  119. data/test/dummy/app/views/layouts/_meta_tag.html.erb +19 -0
  120. data/test/dummy/app/views/layouts/application.haml +51 -0
  121. data/test/dummy/app/views/layouts/application.haml.bak +4 -0
  122. data/test/dummy/app/views/layouts/{application.html.erb → application.html.erb.bak} +2 -1
  123. data/test/dummy/app/views/layouts/bsb/_footer.haml +7 -0
  124. data/test/dummy/app/views/layouts/bsb/_header.haml +147 -0
  125. data/test/dummy/app/views/layouts/bsb/_menu.haml +47 -0
  126. data/test/dummy/app/views/layouts/bsb/_menu_mm.haml +34 -0
  127. data/test/dummy/app/views/layouts/bsb/_rightbar.haml +123 -0
  128. data/test/dummy/app/views/layouts/bsb/_sidebar.haml +155 -0
  129. data/test/dummy/app/views/layouts/bsb/application.haml-bsb +47 -0
  130. data/test/dummy/app/views/layouts/gmail.html.erb +9 -0
  131. data/test/dummy/app/views/layouts/jqm/_full.haml +33 -0
  132. data/test/dummy/app/views/layouts/jqm/_page.haml +16 -0
  133. data/test/dummy/app/views/layouts/jqm/application.haml-jqm +4 -0
  134. data/test/dummy/app/views/layouts/lte/_flash.haml +9 -0
  135. data/test/dummy/app/views/layouts/lte/_footer.haml +7 -0
  136. data/test/dummy/app/views/layouts/lte/_header.haml +111 -0
  137. data/test/dummy/app/views/layouts/lte/_menu.haml +42 -0
  138. data/test/dummy/app/views/layouts/lte/_menu_mm.haml +36 -0
  139. data/test/dummy/app/views/layouts/lte/_rightbar.haml +123 -0
  140. data/test/dummy/app/views/layouts/lte/_sidebar.haml +154 -0
  141. data/test/dummy/app/views/layouts/mailer.html.haml +3 -0
  142. data/test/dummy/app/views/layouts/mailer.text.haml +1 -0
  143. data/test/dummy/app/views/layouts/mobile.html.erb +13 -0
  144. data/test/dummy/app/views/layouts/mobilejq.html.erb +31 -0
  145. data/test/dummy/app/views/layouts/print.html.erb +22 -0
  146. data/test/dummy/app/views/layouts/utf8.html.erb +22 -0
  147. data/test/dummy/app/views/note_mailer/gmail.html.haml +7 -0
  148. data/test/dummy/app/views/note_mailer/gmail.text.haml +8 -0
  149. data/test/dummy/app/views/notes/delete/select_note.html.erb +14 -0
  150. data/test/dummy/app/views/notes/edit/edit_note.html.erb +10 -0
  151. data/test/dummy/app/views/notes/edit/select_note.html.erb +14 -0
  152. data/test/dummy/app/views/notes/index.haml +71 -0
  153. data/test/dummy/app/views/notes/mail/display_mail.html.erb +20 -0
  154. data/test/dummy/app/views/notes/mail/select_note.html.erb +19 -0
  155. data/test/dummy/app/views/notes/mail/show.html.haml +13 -0
  156. data/test/dummy/app/views/notes/my.haml +21 -0
  157. data/test/dummy/app/views/notes/new/new_note.html.erb +13 -0
  158. data/test/dummy/app/views/notes/show.haml +10 -0
  159. data/test/dummy/app/views/notes/xedit/edit_note.html.erb +10 -0
  160. data/test/dummy/app/views/password_resets/edit.html.erb +21 -0
  161. data/test/dummy/app/views/password_resets/new.html.haml +11 -0
  162. data/test/dummy/app/views/sessions/new-bak.html.haml +22 -0
  163. data/test/dummy/app/views/sessions/new.html.haml +35 -0
  164. data/test/dummy/app/views/sitemap/index.xml.haml +10 -0
  165. data/test/dummy/app/views/user_mailer/password_reset.html.haml +3 -0
  166. data/test/dummy/app/views/user_mailer/password_reset.text.erb +3 -0
  167. data/test/dummy/app/views/user_mailer/password_reset.text.haml +3 -0
  168. data/test/dummy/app/views/users/index.haml +13 -0
  169. data/test/dummy/app/views/users/pwd/enter.html.erb +6 -0
  170. data/test/dummy/app/views/users/user/enter_user.html.erb +10 -0
  171. data/test/dummy/bin/rails +3 -3
  172. data/test/dummy/bin/rake +2 -2
  173. data/test/dummy/bin/setup +9 -17
  174. data/test/dummy/config/application.rb +51 -9
  175. data/test/dummy/config/boot.rb +3 -4
  176. data/test/dummy/config/cloudinary.yml +9 -0
  177. data/test/dummy/config/credentials.yml.enc +1 -0
  178. data/test/dummy/config/environment.rb +7 -1
  179. data/test/dummy/config/environments/development.rb +20 -20
  180. data/test/dummy/config/environments/production.rb +16 -40
  181. data/test/dummy/config/environments/test.rb +19 -11
  182. data/test/dummy/config/initializers/assets.rb +1 -1
  183. data/test/dummy/config/initializers/content_security_policy.rb +21 -24
  184. data/test/dummy/config/initializers/filter_parameter_logging.rb +6 -2
  185. data/test/dummy/config/initializers/fix_mongoid_generator.rb-org +14 -0
  186. data/test/dummy/config/initializers/inflections.rb +4 -4
  187. data/test/dummy/config/initializers/jinda.rb +14 -0
  188. data/test/dummy/config/initializers/mongoid.rb +10 -0
  189. data/test/dummy/config/initializers/omniauth.rb +17 -0
  190. data/test/dummy/config/initializers/permissions_policy.rb +11 -0
  191. data/test/dummy/config/locales/en.yml +3 -3
  192. data/test/dummy/config/mongoid.yml +182 -0
  193. data/test/dummy/config/mongoid.yml-docker +182 -0
  194. data/test/dummy/config/mongoid.yml-localhost +182 -0
  195. data/test/dummy/config/puma.rb +7 -2
  196. data/test/dummy/config/routes.rb +5 -1
  197. data/test/dummy/config.ru +2 -1
  198. data/test/dummy/db/seeds.rb +6 -0
  199. data/test/dummy/docker-compose.yml +21 -0
  200. data/test/dummy/dot/dot.env +2 -0
  201. data/test/dummy/entrypoint.sh +13 -0
  202. data/test/dummy/log/development.log +2329 -6
  203. data/test/dummy/public/robots.txt +1 -0
  204. data/test/dummy/spec/controllers/api/v1_get_index_spec.rb +23 -0
  205. data/test/dummy/spec/controllers/api/v1_get_my_spec.rb +14 -0
  206. data/test/dummy/spec/controllers/api/v1_post_spec.rb +19 -0
  207. data/test/dummy/spec/controllers/sessions_controller_spec.rb +98 -0
  208. data/test/dummy/spec/features/userlogins_spec.rb +23 -0
  209. data/test/dummy/spec/mailers/note_spec.rb +24 -0
  210. data/test/dummy/spec/mailers/previews/note_preview.rb +9 -0
  211. data/test/dummy/spec/models/note_spec.rb +41 -0
  212. data/test/dummy/spec/models/user_spec.rb +12 -0
  213. data/test/dummy/spec/rails_helper.rb +42 -0
  214. data/test/dummy/spec/spec_helper.rb +80 -0
  215. data/test/dummy/spec/support/authentication_helper.rb +20 -0
  216. data/test/dummy/spec/support/databasecleaner.rb +13 -0
  217. data/test/dummy/spec/support/factory_bot.rb +12 -0
  218. data/test/dummy/spec/support/omniauth_macros.rb +38 -0
  219. data/test/dummy/spec/support/request_spec_helper.rb +8 -0
  220. data/test/dummy/spec/views/articles/_article.html.erb_spec.rbx +14 -0
  221. data/test/dummy/tmp/development_secret.txt +1 -1
  222. metadata +197 -16
  223. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  224. data/test/dummy/app/models/application_record.rb +0 -3
  225. data/test/dummy/config/database.yml +0 -25
  226. data/test/dummy/config/initializers/application_controller_renderer.rb +0 -8
  227. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  228. data/test/dummy/config/initializers/cookies_serializer.rb +0 -5
  229. data/test/dummy/config/initializers/mime_types.rb +0 -4
  230. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  231. data/test/dummy/config/spring.rb +0 -6
  232. data/test/dummy/config/storage.yml +0 -34
@@ -1,8 +1,2331 @@
1
- Started GET "/" for ::1 at 2020-11-30 08:04:45 -0600
2
-  (1.4ms) SELECT sqlite_version(*)
3
- Processing by Rails::WelcomeController#index as HTML
4
- Rendering /Users/kul/.rvm/gems/ruby-2.6.3/gems/railties-6.0.3.4/lib/rails/templates/rails/welcome/index.html.erb
5
- Rendered /Users/kul/.rvm/gems/ruby-2.6.3/gems/railties-6.0.3.4/lib/rails/templates/rails/welcome/index.html.erb (Duration: 7.7ms | Allocations: 425)
6
- Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 0.0ms | Allocations: 2223)
1
+ Started GET "/" for ::1 at 2022-11-19 15:39:06 -0600
2
+ Processing by JindaController#index as HTML
3
+ Rendering layout layouts/application.haml
4
+ Rendering jinda/index.html.haml within layouts/application
5
+ Rendered jinda/index.html.haml within layouts/application (Duration: 7.4ms | Allocations: 15133)
6
+ Rendered layouts/_head.html.erb (Duration: 1209.3ms | Allocations: 364979)
7
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
8
+ MONGODB | Topology type 'unknown' initializing.
9
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[localhost:27017]>
10
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
11
+ MONGODB | EVENT: #<ServerOpening address=localhost:27017 topology=Unknown[localhost:27017]>
12
+ MONGODB | Server localhost:27017 initializing.
13
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]>
14
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x83020 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x83000 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:39:07.622 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>92, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.004262>>
15
+ MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
16
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[localhost:27017] new=Single[localhost:27017]>
17
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
18
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
19
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x83000 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:39:07.622 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>92, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.004262> new=#<Mongo::Server:Description:0x83100 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:39:07.626 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>94, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0038656000000000003>>
20
+ MONGODB | Server description for localhost:27017 changed from 'standalone' to 'standalone'.
21
+ MONGODB | EVENT: #<TopologyChanged prev=Single[localhost:27017] new=Single[localhost:27017]>
22
+ MONGODB | Topology type 'Single' changed to type 'Single'.
23
+ MONGODB | [7] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
24
+ MONGODB | [7] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
25
+ MONGODB | [8] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"jobs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
26
+ MONGODB | [8] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
27
+ MONGODB | [9] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a7'), "code"=>"jobs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
28
+ MONGODB | [9] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.007s
29
+ MONGODB | [10] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a7')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86a7", "icon"=>"edit"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a...
30
+ MONGODB | [10] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
31
+ MONGODB | [11] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a7')}, "u"=>{"$set"=>{"name"=>"Job", "seq"=>0}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
32
+ MONGODB | [11] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
33
+ MONGODB | [12] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"All Jobs: /jobs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
34
+ MONGODB | [12] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
35
+ MONGODB | [13] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a8'), "module_code"=>"jobs", "code"=>"link", "name"=>"All Jobs: /jobs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef....
36
+ MONGODB | [13] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.006s
37
+ MONGODB | [14] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a8')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820684325' ID='ID_1286878862' MODIFIED='1601820727491' TEXT='link: All Jobs: /jobs'/>", "lis...
38
+ MONGODB | [14] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
39
+ MONGODB | [15] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"My jobs: /jobs/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
40
+ MONGODB | [15] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
41
+ MONGODB | [16] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a9'), "module_code"=>"jobs", "code"=>"link", "name"=>"My jobs: /jobs/my"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
42
+ MONGODB | [16] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
43
+ MONGODB | [17] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a9')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820729659' ID='ID_276716699' MODIFIED='1601820779914' TEXT='link: My jobs: /jobs/my'/>", "li...
44
+ MONGODB | [17] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
45
+ MONGODB | [18] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"My forms: /jobs/forms"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
46
+ MONGODB | [18] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
47
+ MONGODB | [19] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86aa'), "module_code"=>"jobs", "code"=>"link", "name"=>"My forms: /jobs/forms"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a...
48
+ MONGODB | [19] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
49
+ MONGODB | [20] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86aa')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601822748019' ID='ID_710706962' MODIFIED='1601824169249' TEXT='link: My forms: /jobs/forms'/>",...
50
+ MONGODB | [20] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
51
+ MONGODB | [21] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"new_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
52
+ MONGODB | [21] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
53
+ MONGODB | [22] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ab'), "module_code"=>"jobs", "code"=>"new_job"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
54
+ MONGODB | [22] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
55
+ MONGODB | [23] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ab')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820781395' ID='ID_1580322062' MODIFIED='1601820816872' TEXT='new_job: Create Job'><node CREA...
56
+ MONGODB | [23] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
57
+ MONGODB | [24] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"edit_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
58
+ MONGODB | [24] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
59
+ MONGODB | [25] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ac'), "module_code"=>"jobs", "code"=>"edit_job"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
60
+ MONGODB | [25] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
61
+ MONGODB | [26] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ac')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_376861955' MODIFIED='1601821049556' TEXT='edit_job: Edit Job'><node CREATE...
62
+ MONGODB | [26] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
63
+ MONGODB | [27] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"create_form"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
64
+ MONGODB | [27] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
65
+ MONGODB | [28] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ad'), "module_code"=>"jobs", "code"=>"create_form"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
66
+ MONGODB | [28] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
67
+ MONGODB | [29] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ad')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601821472569' ID='ID_742665624' MODIFIED='1601824259096' TEXT='create_form: Create Job Form'><n...
68
+ MONGODB | [29] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
69
+ MONGODB | [30] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"import_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
70
+ MONGODB | [30] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
71
+ MONGODB | [31] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ae'), "module_code"=>"jobs", "code"=>"import_job"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
72
+ MONGODB | [31] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
73
+ MONGODB | [32] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ae')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601825689253' ID='ID_384470912' MODIFIED='1601825751799' TEXT='import_job: Import Email Job'><n...
74
+ MONGODB | [32] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
75
+ MONGODB | [33] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"xedit_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
76
+ MONGODB | [33] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
77
+ MONGODB | [34] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86af'), "module_code"=>"jobs", "code"=>"xedit_job"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
78
+ MONGODB | [34] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
79
+ MONGODB | [35] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86af')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_1736872254' MODIFIED='1601825881187' TEXT='xedit_job: xEdit Job'><icon BUI...
80
+ MONGODB | [35] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
81
+ MONGODB | [36] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"users"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
82
+ MONGODB | [36] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
83
+ MONGODB | [37] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b0'), "code"=>"users"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
84
+ MONGODB | [37] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
85
+ MONGODB | [38] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b0')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86b0", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
86
+ MONGODB | [38] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
87
+ MONGODB | [39] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b0')}, "u"=>{"$set"=>{"name"=>"User", "seq"=>1}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
88
+ MONGODB | [39] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
89
+ MONGODB | [40] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b0')}, "u"=>{"$set"=>{"role"=>"m"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
90
+ MONGODB | [40] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
91
+ MONGODB | [41] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"link", "name"=>"info: /users"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
92
+ MONGODB | [41] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
93
+ MONGODB | [42] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b1'), "module_code"=>"users", "code"=>"link", "name"=>"info: /users"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef......
94
+ MONGODB | [42] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
95
+ MONGODB | [43] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b1')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1279700865182' ID='ID_1266797279' MODIFIED='1357798847781' TEXT='link:info: /users'/>", "list"=>...
96
+ MONGODB | [43] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
97
+ MONGODB | [44] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
98
+ MONGODB | [44] localhost:27017 | dummy_development.find | SUCCEEDED | 0.003s
99
+ MONGODB | [45] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b2'), "module_code"=>"users", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x15...
100
+ MONGODB | [45] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.002s
101
+ MONGODB | [46] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b2')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1319015338880' ID='ID_189841353' MODIFIED='1528215866339' TEXT='link:pending tasks: /jinda/pendi...
102
+ MONGODB | [46] localhost:27017 | dummy_development.update | SUCCEEDED | 0.003s
103
+ MONGODB | [47] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"user"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
104
+ MONGODB | [47] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
105
+ MONGODB | [48] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b3'), "module_code"=>"users", "code"=>"user"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
106
+ MONGODB | [48] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.002s
107
+ MONGODB | [49] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b3')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275905802131' ID='ID_154000410' MODIFIED='1355422418892' TEXT='user:edit'><node CREATED='127575...
108
+ MONGODB | [49] localhost:27017 | dummy_development.update | SUCCEEDED | 0.002s
109
+ MONGODB | [50] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"pwd"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
110
+ MONGODB | [50] localhost:27017 | dummy_development.find | SUCCEEDED | 0.003s
111
+ MONGODB | [51] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b4'), "module_code"=>"users", "code"=>"pwd"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
112
+ MONGODB | [51] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.019s
113
+ MONGODB | [52] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b4')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275756504750' ID='ID_1382277695' MODIFIED='1355422424108' TEXT='pwd:change password'><node CREA...
114
+ MONGODB | [52] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
115
+ MONGODB | [53] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"admins"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
116
+ MONGODB | [53] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
117
+ MONGODB | [54] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b5'), "code"=>"admins"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
118
+ MONGODB | [54] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
119
+ MONGODB | [55] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b5')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86b5", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
120
+ MONGODB | [55] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
121
+ MONGODB | [56] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b5')}, "u"=>{"$set"=>{"name"=>"Admin", "seq"=>2}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
122
+ MONGODB | [56] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
123
+ MONGODB | [57] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b5')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
124
+ MONGODB | [57] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
125
+ MONGODB | [58] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"edit_role"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
126
+ MONGODB | [58] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
127
+ MONGODB | [59] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b6'), "module_code"=>"admins", "code"=>"edit_role"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
128
+ MONGODB | [59] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
129
+ MONGODB | [60] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b6')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1282722836614' ID='ID_1213363124' MODIFIED='1330477902602' TEXT='edit_role:edit user role'><node...
130
+ MONGODB | [60] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
131
+ MONGODB | [61] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
132
+ MONGODB | [61] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
133
+ MONGODB | [62] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b7'), "module_code"=>"admins", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x1...
134
+ MONGODB | [62] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
135
+ MONGODB | [63] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b7')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1273913393454' ID='ID_1088166839' MODIFIED='1511159690490' TEXT='link: pending tasks: /jinda/pen...
136
+ MONGODB | [63] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
137
+ MONGODB | [64] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"logs: /jinda/logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
138
+ MONGODB | [64] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
139
+ MONGODB | [65] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b8'), "module_code"=>"admins", "code"=>"link", "name"=>"logs: /jinda/logs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a44...
140
+ MONGODB | [65] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
141
+ MONGODB | [66] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b8')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275790679363' ID='ID_829325467' MODIFIED='1511159696044' TEXT='link: logs: /jinda/logs'/>", "li...
142
+ MONGODB | [66] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
143
+ MONGODB | [67] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"docs: /jinda/doc"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
144
+ MONGODB | [67] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
145
+ MONGODB | [68] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b9'), "module_code"=>"admins", "code"=>"link", "name"=>"docs: /jinda/doc"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442...
146
+ MONGODB | [68] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
147
+ MONGODB | [69] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86b9')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1507573166973' ID='ID_351025910' MODIFIED='1511159700908' TEXT='link: docs: /jinda/doc'/>", "lis...
148
+ MONGODB | [69] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
149
+ MONGODB | [70] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"devs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
150
+ MONGODB | [70] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
151
+ MONGODB | [71] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ba'), "code"=>"devs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
152
+ MONGODB | [71] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
153
+ MONGODB | [72] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ba')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86ba", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
154
+ MONGODB | [72] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
155
+ MONGODB | [73] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ba')}, "u"=>{"$set"=>{"name"=>"Developer", "seq"=>3}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
156
+ MONGODB | [73] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
157
+ MONGODB | [74] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ba')}, "u"=>{"$set"=>{"role"=>"d"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
158
+ MONGODB | [74] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
159
+ MONGODB | [75] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"devs", "code"=>"link", "name"=>"error_logs: /jinda/error_logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
160
+ MONGODB | [75] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
161
+ MONGODB | [76] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bb'), "module_code"=>"devs", "code"=>"link", "name"=>"error_logs: /jinda/error_logs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154...
162
+ MONGODB | [76] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
163
+ MONGODB | [77] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bb')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275788317299' ID='ID_716276608' MODIFIED='1511159716471' TEXT='link: error_logs: /jinda/error_l...
164
+ MONGODB | [77] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
165
+ MONGODB | [78] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"devs", "code"=>"link", "name"=>"notice_logs: /jinda/notice_logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
166
+ MONGODB | [78] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
167
+ MONGODB | [79] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bc'), "module_code"=>"devs", "code"=>"link", "name"=>"notice_logs: /jinda/notice_logs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x1...
168
+ MONGODB | [79] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
169
+ MONGODB | [80] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bc')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275788317299' ID='ID_1570419198' MODIFIED='1587858894833' TEXT='link: notice_logs: /jinda/notic...
170
+ MONGODB | [80] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
171
+ MONGODB | [81] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"docs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
172
+ MONGODB | [81] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
173
+ MONGODB | [82] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bd'), "code"=>"docs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
174
+ MONGODB | [82] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
175
+ MONGODB | [83] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bd')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86bd", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
176
+ MONGODB | [83] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
177
+ MONGODB | [84] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bd')}, "u"=>{"$set"=>{"name"=>"Document", "seq"=>4}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
178
+ MONGODB | [84] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
179
+ MONGODB | [85] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"link", "name"=>"My Document: /docs/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
180
+ MONGODB | [85] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
181
+ MONGODB | [86] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86be'), "module_code"=>"docs", "code"=>"link", "name"=>"My Document: /docs/my"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a...
182
+ MONGODB | [86] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
183
+ MONGODB | [87] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86be')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1589757073388' ID='ID_1938238774' MODIFIED='1589772640862' TEXT='link: My Document: /docs/my'><n...
184
+ MONGODB | [87] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
185
+ MONGODB | [88] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
186
+ MONGODB | [88] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
187
+ MONGODB | [89] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bf'), "module_code"=>"docs", "code"=>"doc_new"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
188
+ MONGODB | [89] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
189
+ MONGODB | [90] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bf')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1589756879955' ID='ID_899042293' MODIFIED='1589910229085' TEXT='doc_new: New Document'><node CRE...
190
+ MONGODB | [90] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
191
+ MONGODB | [91] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
192
+ MONGODB | [91] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
193
+ MONGODB | [92] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c0'), "module_code"=>"docs", "code"=>"doc_edit"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
194
+ MONGODB | [92] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
195
+ MONGODB | [93] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c0')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_339628868' MODIFIED='1590424956484' TEXT='doc_edit: Edit Document'><icon B...
196
+ MONGODB | [93] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
197
+ MONGODB | [94] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_xedit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
198
+ MONGODB | [94] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
199
+ MONGODB | [95] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c1'), "module_code"=>"docs", "code"=>"doc_xedit"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
200
+ MONGODB | [95] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
201
+ MONGODB | [96] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c1')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_278169779' MODIFIED='1590180135106' TEXT='doc_xedit: Doc_hidden_menu'><ico...
202
+ MONGODB | [96] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
203
+ MONGODB | [97] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"notes"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
204
+ MONGODB | [97] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
205
+ MONGODB | [98] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c2'), "code"=>"notes"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
206
+ MONGODB | [98] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
207
+ MONGODB | [99] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c2')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86c2", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
208
+ MONGODB | [99] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
209
+ MONGODB | [100] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c2')}, "u"=>{"$set"=>{"name"=>"Notes", "seq"=>5}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
210
+ MONGODB | [100] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
211
+ MONGODB | [101] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"link", "name"=>"My Notes: /notes/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
212
+ MONGODB | [101] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
213
+ MONGODB | [102] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c3'), "module_code"=>"notes", "code"=>"link", "name"=>"My Notes: /notes/my"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a4...
214
+ MONGODB | [102] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
215
+ MONGODB | [103] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c3')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' ID='ID_737469676' MODIFIED='1589772615102' TEXT='link:My Notes: /notes/my'><node ...
216
+ MONGODB | [103] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
217
+ MONGODB | [104] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
218
+ MONGODB | [104] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
219
+ MONGODB | [105] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c4'), "module_code"=>"notes", "code"=>"new"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
220
+ MONGODB | [105] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
221
+ MONGODB | [106] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c4')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_553734932' MODIFIED='1591278856955' TEXT='new: New Note'><node CREATED='14...
222
+ MONGODB | [106] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
223
+ MONGODB | [107] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
224
+ MONGODB | [107] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
225
+ MONGODB | [108] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c5'), "module_code"=>"notes", "code"=>"edit"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
226
+ MONGODB | [108] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
227
+ MONGODB | [109] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c5')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' FOLDED='true' ID='ID_1241171950' MODIFIED='1591278847249' TEXT='edit: Edit'><node...
228
+ MONGODB | [109] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
229
+ MONGODB | [110] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"delete"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
230
+ MONGODB | [110] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
231
+ MONGODB | [111] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c6'), "module_code"=>"notes", "code"=>"delete"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
232
+ MONGODB | [111] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
233
+ MONGODB | [112] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c6')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' FOLDED='true' ID='ID_320521408' MODIFIED='1591278851391' STYLE='fork' TEXT='delet...
234
+ MONGODB | [112] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
235
+ MONGODB | [113] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"mail"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
236
+ MONGODB | [113] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
237
+ MONGODB | [114] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c7'), "module_code"=>"notes", "code"=>"mail"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
238
+ MONGODB | [114] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
239
+ MONGODB | [115] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c7')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1581531446494' FOLDED='true' ID='ID_1325232876' MODIFIED='1591278853597' TEXT='mail: Mail'><node...
240
+ MONGODB | [115] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
241
+ MONGODB | [116] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"xedit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
242
+ MONGODB | [116] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
243
+ MONGODB | [117] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c8'), "module_code"=>"notes", "code"=>"xedit"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
244
+ MONGODB | [117] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
245
+ MONGODB | [118] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c8')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' FOLDED='true' ID='ID_807216843' MODIFIED='1590180066630' TEXT='xedit: Future use'...
246
+ MONGODB | [118] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
247
+ MONGODB | [119] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"articles"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
248
+ MONGODB | [119] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
249
+ MONGODB | [120] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c9'), "code"=>"articles"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
250
+ MONGODB | [120] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
251
+ MONGODB | [121] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c9')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86c9", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
252
+ MONGODB | [121] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
253
+ MONGODB | [122] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c9')}, "u"=>{"$set"=>{"name"=>"Article", "seq"=>6}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
254
+ MONGODB | [122] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
255
+ MONGODB | [123] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"link", "name"=>"All Articles: /articles"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
256
+ MONGODB | [123] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
257
+ MONGODB | [124] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ca'), "module_code"=>"articles", "code"=>"link", "name"=>"All Articles: /articles"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d5...
258
+ MONGODB | [124] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
259
+ MONGODB | [125] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ca')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419096527' ID='ID_1521905276' MODIFIED='1493478060121' TEXT='link: All Articles: /articles'/...
260
+ MONGODB | [125] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
261
+ MONGODB | [126] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"link", "name"=>"My article: /articles/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
262
+ MONGODB | [126] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
263
+ MONGODB | [127] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cb'), "module_code"=>"articles", "code"=>"link", "name"=>"My article: /articles/my"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d...
264
+ MONGODB | [127] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
265
+ MONGODB | [128] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cb')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' FOLDED='true' ID='ID_1376361427' MODIFIED='1589757167952' TEXT='link: My article:...
266
+ MONGODB | [128] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
267
+ MONGODB | [129] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"new_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
268
+ MONGODB | [129] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
269
+ MONGODB | [130] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cc'), "module_code"=>"articles", "code"=>"new_article"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
270
+ MONGODB | [130] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
271
+ MONGODB | [131] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cc')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_1355420049' MODIFIED='1588619429446' TEXT='new_article: New Article'><node...
272
+ MONGODB | [131] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
273
+ MONGODB | [132] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"edit_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
274
+ MONGODB | [132] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
275
+ MONGODB | [133] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cd'), "module_code"=>"articles", "code"=>"edit_article"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
276
+ MONGODB | [133] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
277
+ MONGODB | [134] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cd')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_922854639' MODIFIED='1590180584955' TEXT='edit_article: Edit Article'><nod...
278
+ MONGODB | [134] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
279
+ MONGODB | [135] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"xedit_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
280
+ MONGODB | [135] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
281
+ MONGODB | [136] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ce'), "module_code"=>"articles", "code"=>"xedit_article"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
282
+ MONGODB | [136] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
283
+ MONGODB | [137] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86ce')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_1861034169' MODIFIED='1585001527103' TEXT='xedit_article: xEdit Article'><...
284
+ MONGODB | [137] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
285
+ MONGODB | [138] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"comments"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
286
+ MONGODB | [138] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
287
+ MONGODB | [139] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cf'), "code"=>"comments"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
288
+ MONGODB | [139] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
289
+ MONGODB | [140] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cf')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86cf", "icon"=>"button_cancel"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x15...
290
+ MONGODB | [140] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
291
+ MONGODB | [141] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cf')}, "u"=>{"$set"=>{"name"=>"Comment", "seq"=>7}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
292
+ MONGODB | [141] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
293
+ MONGODB | [142] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"comments", "code"=>"new_comment"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
294
+ MONGODB | [142] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
295
+ MONGODB | [143] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d0'), "module_code"=>"comments", "code"=>"new_comment"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
296
+ MONGODB | [143] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
297
+ MONGODB | [144] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d0')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493665155709' ID='ID_1973520751' MODIFIED='1591392666652' TEXT='new_comment: New Comment'><icon...
298
+ MONGODB | [144] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
299
+ MONGODB | [145] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86cf')}, "u"=>{"$set"=>{"role"=>"m"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
300
+ MONGODB | [145] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
301
+ MONGODB | [146] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"comments", "code"=>"comments"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
302
+ MONGODB | [146] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
303
+ MONGODB | [147] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d1'), "module_code"=>"comments", "code"=>"comments"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
304
+ MONGODB | [147] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
305
+ MONGODB | [148] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d1')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493664700564' ID='ID_298151177' MODIFIED='1603226693472' TEXT='comments: Comment'><arrowlink DE...
306
+ MONGODB | [148] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
307
+ MONGODB | [149] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"ctrs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
308
+ MONGODB | [149] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
309
+ MONGODB | [150] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d2'), "code"=>"ctrs"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
310
+ MONGODB | [150] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
311
+ MONGODB | [151] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d2')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86d2", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
312
+ MONGODB | [151] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
313
+ MONGODB | [152] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d2')}, "u"=>{"$set"=>{"name"=>"ctrs& Menu", "seq"=>8}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
314
+ MONGODB | [152] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
315
+ MONGODB | [153] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d2')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
316
+ MONGODB | [153] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
317
+ MONGODB | [154] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"ctrs", "code"=>"vfolder1"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
318
+ MONGODB | [154] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
319
+ MONGODB | [155] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d3'), "module_code"=>"ctrs", "code"=>"vfolder1"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
320
+ MONGODB | [155] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
321
+ MONGODB | [156] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d3')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275905802131' ID='ID_1960607342' MODIFIED='1489938927874' TEXT='vfolder1:Sub Menu 1'><node CREA...
322
+ MONGODB | [156] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
323
+ MONGODB | [157] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"ctrs", "code"=>"vfolder2"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
324
+ MONGODB | [157] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
325
+ MONGODB | [158] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d4'), "module_code"=>"ctrs", "code"=>"vfolder2"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
326
+ MONGODB | [158] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
327
+ MONGODB | [159] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d4')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275756504750' ID='ID_914236141' MODIFIED='1489939000929' TEXT='vfolder2:Title 2'><node CREATED=...
328
+ MONGODB | [159] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
329
+ MONGODB | [160] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"sitemap"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
330
+ MONGODB | [160] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
331
+ MONGODB | [161] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d5'), "code"=>"sitemap"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
332
+ MONGODB | [161] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
333
+ MONGODB | [162] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d5')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86d5", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
334
+ MONGODB | [162] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
335
+ MONGODB | [163] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d5')}, "u"=>{"$set"=>{"name"=>"Sitemap", "seq"=>9}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
336
+ MONGODB | [163] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
337
+ MONGODB | [164] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"sitemap", "code"=>"sitemap"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
338
+ MONGODB | [164] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
339
+ MONGODB | [165] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d6'), "module_code"=>"sitemap", "code"=>"sitemap"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
340
+ MONGODB | [165] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
341
+ MONGODB | [166] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d6')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1494172758253' ID='ID_961056168' MODIFIED='1494172797972' TEXT='sitemap: Sitemap'/>", "name"=>"S...
342
+ MONGODB | [166] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
343
+ MONGODB | [167] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d5')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
344
+ MONGODB | [167] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
345
+ MONGODB | [168] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"api/v1/notes"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
346
+ MONGODB | [168] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
347
+ MONGODB | [169] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d7'), "code"=>"api/v1/notes"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
348
+ MONGODB | [169] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
349
+ MONGODB | [170] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d7')}, "u"=>{"$set"=>{"uid"=>"63794cfbbee042dbe60c86d7", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442e...
350
+ MONGODB | [170] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
351
+ MONGODB | [171] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d7')}, "u"=>{"$set"=>{"name"=>"Notes API", "seq"=>10}}}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
352
+ MONGODB | [171] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
353
+ MONGODB | [172] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"link", "name"=>"My Notes: /api/v1/notes/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
354
+ MONGODB | [172] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
355
+ MONGODB | [173] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d8'), "module_code"=>"api/v1/notes", "code"=>"link", "name"=>"My Notes: /api/v1/notes/my"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=...
356
+ MONGODB | [173] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
357
+ MONGODB | [174] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d8')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' ID='ID_1053900670' MODIFIED='1591074318558' TEXT='link:My Notes: /api/v1/notes/my...
358
+ MONGODB | [174] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
359
+ MONGODB | [175] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
360
+ MONGODB | [175] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
361
+ MONGODB | [176] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d9'), "module_code"=>"api/v1/notes", "code"=>"new"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
362
+ MONGODB | [176] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
363
+ MONGODB | [177] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d9')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_1182560700' MODIFIED='1581180635669' TEXT='new: New Note'><node CREATED='1...
364
+ MONGODB | [177] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
365
+ MONGODB | [178] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
366
+ MONGODB | [178] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
367
+ MONGODB | [179] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86da'), "module_code"=>"api/v1/notes", "code"=>"edit"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
368
+ MONGODB | [179] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
369
+ MONGODB | [180] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86da')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_963001770' MODIFIED='1581180788218' TEXT='edit: Edit'><node CREATED='14934...
370
+ MONGODB | [180] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
371
+ MONGODB | [181] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"delete"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
372
+ MONGODB | [181] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
373
+ MONGODB | [182] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86db'), "module_code"=>"api/v1/notes", "code"=>"delete"}], "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
374
+ MONGODB | [182] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
375
+ MONGODB | [183] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('63794cfbbee042dbe60c86db')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_918406528' MODIFIED='1581340759604' STYLE='fork' TEXT='delete:Delete'><edg...
376
+ MONGODB | [183] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
377
+ MONGODB | [184] localhost:27017 #1 | dummy_development.delete | STARTED | {"delete"=>"jinda_modules", "ordered"=>true, "deletes"=>[{"q"=>{"uid"=>{"$nin"=>["63794cfbbee042dbe60c86a7", "63794cfbbee042dbe60c86b0", "63794cfbbee042dbe60c86b5", "63794cfbbee042dbe60c86ba", "63794cfbbee042dbe60c86bd", "63794cfbbee042dbe60c86c2", "6...
378
+ MONGODB | [184] localhost:27017 | dummy_development.delete | SUCCEEDED | 0.001s
379
+ MONGODB | [185] localhost:27017 #1 | dummy_development.delete | STARTED | {"delete"=>"jinda_services", "ordered"=>true, "deletes"=>[{"q"=>{"uid"=>{"$nin"=>["63794cfbbee042dbe60c86a8", "63794cfbbee042dbe60c86a9", "63794cfbbee042dbe60c86aa", "63794cfbbee042dbe60c86ab", "63794cfbbee042dbe60c86ac", "63794cfbbee042dbe60c86ad", "...
380
+ MONGODB | [185] localhost:27017 | dummy_development.delete | SUCCEEDED | 0.001s
381
+ MONGODB | [186] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
382
+ MONGODB | [186] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
383
+ MONGODB | [187] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a7')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
384
+ MONGODB | [187] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
385
+ MONGODB | [188] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
386
+ MONGODB | [188] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
387
+ MONGODB | [189] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
388
+ MONGODB | [189] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
389
+ MONGODB | [190] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
390
+ MONGODB | [190] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
391
+ MONGODB | [191] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
392
+ MONGODB | [191] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
393
+ MONGODB | [192] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
394
+ MONGODB | [192] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
395
+ MONGODB | [193] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
396
+ MONGODB | [193] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
397
+ MONGODB | [194] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
398
+ MONGODB | [194] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
399
+ MONGODB | [195] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bd')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
400
+ MONGODB | [195] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
401
+ MONGODB | [196] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
402
+ MONGODB | [196] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
403
+ MONGODB | [197] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
404
+ MONGODB | [197] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
405
+ MONGODB | [198] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c2')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
406
+ MONGODB | [198] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
407
+ MONGODB | [199] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
408
+ MONGODB | [199] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
409
+ MONGODB | [200] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
410
+ MONGODB | [200] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
411
+ MONGODB | [201] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
412
+ MONGODB | [201] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
413
+ MONGODB | [202] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
414
+ MONGODB | [202] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
415
+ MONGODB | [203] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
416
+ MONGODB | [203] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
417
+ MONGODB | [204] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c9')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
418
+ MONGODB | [204] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
419
+ MONGODB | [205] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
420
+ MONGODB | [205] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
421
+ MONGODB | [206] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
422
+ MONGODB | [206] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
423
+ MONGODB | [207] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
424
+ MONGODB | [207] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
425
+ MONGODB | [208] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
426
+ MONGODB | [208] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
427
+ MONGODB | [209] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
428
+ MONGODB | [209] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
429
+ MONGODB | [210] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
430
+ MONGODB | [210] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
431
+ MONGODB | [211] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d7')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
432
+ MONGODB | [211] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
433
+ MONGODB | [212] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
434
+ MONGODB | [212] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
435
+ MONGODB | [213] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
436
+ MONGODB | [213] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
437
+ MONGODB | [214] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
438
+ MONGODB | [214] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
439
+ Rendered jinda/_menu_mm.haml (Duration: 407.5ms | Allocations: 1045192)
440
+ MONGODB | [215] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
441
+ MONGODB | [215] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
442
+ MONGODB | [216] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
443
+ MONGODB | [216] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
444
+ Rendered jinda/_menu.haml (Duration: 434.5ms | Allocations: 1089778)
445
+ Rendered jinda/_static.haml (Duration: 2.7ms | Allocations: 6777)
446
+ Rendered layouts/jqm/_full.haml (Duration: 1649.7ms | Allocations: 1471099)
447
+ Rendered layout layouts/application.haml (Duration: 1658.2ms | Allocations: 1488766)
448
+ Completed 200 OK in 1665ms (Views: 1661.0ms | MongoDB: 0.2ms | Allocations: 1491883)
7
449
 
8
450
 
451
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x83100 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:39:07.626 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>94, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0038656000000000003> new=#<Mongo::Server:Description:0x91440 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:39:17.626 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>92, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.00334028>>
452
+ MONGODB | Server description for localhost:27017 changed from 'standalone' to 'standalone'.
453
+ MONGODB | EVENT: #<TopologyChanged prev=Single[localhost:27017] new=Single[localhost:27017]>
454
+ MONGODB | Topology type 'Single' changed to type 'Single'.
455
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
456
+ MONGODB | Topology type 'unknown' initializing.
457
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[localhost:27017]>
458
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
459
+ MONGODB | EVENT: #<ServerOpening address=localhost:27017 topology=Unknown[localhost:27017]>
460
+ MONGODB | Server localhost:27017 initializing.
461
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]>
462
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x67420 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x67400 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:40:36.489 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>96, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.004445>>
463
+ MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
464
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[localhost:27017] new=Single[localhost:27017]>
465
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
466
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
467
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x67400 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:40:36.489 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>96, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.004445> new=#<Mongo::Server:Description:0x67500 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('6367ec5a76a448c37db6eee4'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-11-19 21:40:36.493 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>97, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0041722>>
468
+ MONGODB | Server description for localhost:27017 changed from 'standalone' to 'standalone'.
469
+ MONGODB | EVENT: #<TopologyChanged prev=Single[localhost:27017] new=Single[localhost:27017]>
470
+ MONGODB | Topology type 'Single' changed to type 'Single'.
471
+ MONGODB | [7] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
472
+ MONGODB | [7] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
473
+ MONGODB | [8] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
474
+ MONGODB | [8] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
475
+ MONGODB | [9] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"admin@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
476
+ MONGODB | [9] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
477
+ MONGODB | [10] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794d54bee042de69125a42'), "code"=>"admin", "email"=>"admin@test.com", "password_digest"=>"$2a$12$RYJjfj152r5lVdJrnmNqDOsY9cjpviw5IekAIcE3qZ7.i0LIM/0VO"}], "lsid"=>{"id"=...
478
+ MONGODB | [10] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.008s
479
+ MONGODB | [11] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
480
+ MONGODB | [11] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
481
+ MONGODB | [12] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794d54bee042de69125a43'), "provider"=>"identity", "uid"=>"63794d54bee042de69125a42", "code"=>"admin", "email"=>"admin@test.com", "role"=>"M,A,D", "image"=>"https://user-image...
482
+ MONGODB | [12] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.006s
483
+ MONGODB | [13] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
484
+ MONGODB | [13] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
485
+ MONGODB | [14] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
486
+ MONGODB | [14] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
487
+ MONGODB | [15] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"tester@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
488
+ MONGODB | [15] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
489
+ MONGODB | [16] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794d55bee042de69125a44'), "code"=>"tester", "email"=>"tester@test.com", "password_digest"=>"$2a$12$tEGVBz6Rg8MJzIawYNnIzOQ/t0LzritrfhvpWHlCv.pU20LzmSQ9C"}], "lsid"=>{"id...
490
+ MONGODB | [16] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
491
+ MONGODB | [17] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
492
+ MONGODB | [17] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
493
+ MONGODB | [18] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('63794d55bee042de69125a45'), "provider"=>"identity", "uid"=>"63794d55bee042de69125a44", "code"=>"tester", "email"=>"tester@test.com", "role"=>"M", "image"=>"https://www.manatees...
494
+ MONGODB | [18] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
495
+ MONGODB | [19] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
496
+ MONGODB | [19] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
497
+ MONGODB | [20] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67560 type=uuid data=0xfeb8def821724dab...>}}
498
+ MONGODB | [20] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
499
+ Started GET "/" for ::1 at 2022-11-19 15:40:55 -0600
500
+ Processing by JindaController#index as HTML
501
+ Rendering layout layouts/application.haml
502
+ Rendering jinda/index.html.haml within layouts/application
503
+ Rendered jinda/index.html.haml within layouts/application (Duration: 4.7ms | Allocations: 11958)
504
+ MONGODB | [217] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
505
+ MONGODB | [217] localhost:27017 | dummy_development.find | SUCCEEDED | 0.004s
506
+ MONGODB | [218] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
507
+ MONGODB | [218] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
508
+ MONGODB | [219] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
509
+ MONGODB | [219] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
510
+ MONGODB | [220] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
511
+ MONGODB | [220] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
512
+ Rendered layouts/lte/_header.haml (Duration: 27.4ms | Allocations: 57948)
513
+ MONGODB | [221] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
514
+ MONGODB | [221] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
515
+ MONGODB | [222] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
516
+ MONGODB | [222] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
517
+ MONGODB | [223] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
518
+ MONGODB | [223] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
519
+ MONGODB | [224] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86a7')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
520
+ MONGODB | [224] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
521
+ MONGODB | [225] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
522
+ MONGODB | [225] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
523
+ MONGODB | [226] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
524
+ MONGODB | [226] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
525
+ MONGODB | [227] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
526
+ MONGODB | [227] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
527
+ MONGODB | [228] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
528
+ MONGODB | [228] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
529
+ MONGODB | [229] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
530
+ MONGODB | [229] localhost:27017 | dummy_development.find | SUCCEEDED | 0.003s
531
+ MONGODB | [230] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
532
+ MONGODB | [230] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
533
+ MONGODB | [231] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
534
+ MONGODB | [231] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
535
+ MONGODB | [232] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86bd')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
536
+ MONGODB | [232] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
537
+ MONGODB | [233] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
538
+ MONGODB | [233] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
539
+ MONGODB | [234] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
540
+ MONGODB | [234] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
541
+ MONGODB | [235] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c2')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
542
+ MONGODB | [235] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
543
+ MONGODB | [236] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
544
+ MONGODB | [236] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
545
+ MONGODB | [237] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
546
+ MONGODB | [237] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
547
+ MONGODB | [238] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
548
+ MONGODB | [238] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
549
+ MONGODB | [239] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
550
+ MONGODB | [239] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
551
+ MONGODB | [240] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
552
+ MONGODB | [240] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
553
+ MONGODB | [241] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86c9')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
554
+ MONGODB | [241] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
555
+ MONGODB | [242] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
556
+ MONGODB | [242] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
557
+ MONGODB | [243] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
558
+ MONGODB | [243] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
559
+ MONGODB | [244] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
560
+ MONGODB | [244] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
561
+ MONGODB | [245] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
562
+ MONGODB | [245] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
563
+ MONGODB | [246] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
564
+ MONGODB | [246] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
565
+ MONGODB | [247] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
566
+ MONGODB | [247] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
567
+ MONGODB | [248] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('63794cfbbee042dbe60c86d7')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
568
+ MONGODB | [248] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
569
+ MONGODB | [249] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
570
+ MONGODB | [249] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
571
+ MONGODB | [250] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
572
+ MONGODB | [250] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
573
+ MONGODB | [251] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
574
+ MONGODB | [251] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
575
+ Rendered layouts/lte/_menu_mm.haml (Duration: 85.1ms | Allocations: 278524)
576
+ MONGODB | [252] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"YaZkE74V0-vhg08-tQEMzg"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83160 type=uuid data=0x154d55ee86a442ef...>}}
577
+ MONGODB | [252] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
578
+ Rendered layouts/lte/_menu.haml (Duration: 92.0ms | Allocations: 297721)
579
+ Rendered layouts/lte/_sidebar.haml (Duration: 106.4ms | Allocations: 340141)
580
+ Rendered layouts/lte/_flash.haml (Duration: 1.6ms | Allocations: 3956)
581
+ Rendered layouts/lte/_footer.haml (Duration: 1.0ms | Allocations: 3225)
582
+ Rendered layout layouts/application.haml (Duration: 326.9ms | Allocations: 559196)
583
+ Completed 200 OK in 328ms (Views: 327.5ms | MongoDB: 0.0ms | Allocations: 560249)
584
+
585
+
586
+ Started GET "/" for ::1 at 2022-12-04 15:51:28 -0600
587
+ Processing by JindaController#index as HTML
588
+ Rendering layout layouts/application.haml
589
+ Rendering jinda/index.html.haml within layouts/application
590
+ Rendered jinda/index.html.haml within layouts/application (Duration: 8.8ms | Allocations: 14736)
591
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
592
+ MONGODB | Topology type 'unknown' initializing.
593
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[localhost:27017]>
594
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
595
+ MONGODB | EVENT: #<ServerOpening address=localhost:27017 topology=Unknown[localhost:27017]>
596
+ MONGODB | Server localhost:27017 initializing.
597
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]>
598
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
599
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
600
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
601
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
602
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
603
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
604
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
605
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
606
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
607
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
608
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
609
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
610
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
611
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
612
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
613
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
614
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
615
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
616
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
617
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
618
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
619
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
620
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
621
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
622
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
623
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
624
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
625
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
626
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
627
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
628
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
629
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
630
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
631
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
632
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
633
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
634
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
635
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
636
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
637
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
638
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
639
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
640
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
641
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
642
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
643
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
644
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
645
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
646
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
647
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
648
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
649
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
650
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
651
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
652
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
653
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
654
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
655
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
656
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
657
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
658
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
659
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
660
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
661
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
662
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
663
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
664
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
665
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
666
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
667
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
668
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
669
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
670
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
671
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
672
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
673
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
674
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
675
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
676
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
677
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
678
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
679
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
680
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
681
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
682
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
683
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
684
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
685
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
686
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
687
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
688
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
689
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
690
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
691
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
692
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
693
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
694
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
695
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
696
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
697
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
698
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
699
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
700
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
701
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
702
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
703
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
704
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
705
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
706
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
707
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
708
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
709
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
710
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
711
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
712
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
713
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
714
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
715
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
716
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
717
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
718
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
719
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
720
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
721
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
722
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
723
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
724
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
725
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
726
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
727
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
728
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
729
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
730
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
731
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
732
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
733
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
734
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
735
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
736
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
737
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
738
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
739
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
740
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
741
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
742
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
743
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
744
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
745
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
746
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
747
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
748
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
749
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
750
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
751
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
752
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
753
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
754
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
755
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
756
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
757
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
758
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
759
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
760
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
761
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
762
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
763
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
764
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
765
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
766
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
767
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
768
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
769
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
770
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
771
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
772
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
773
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
774
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
775
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
776
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
777
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
778
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
779
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
780
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
781
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
782
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
783
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
784
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
785
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
786
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
787
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
788
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
789
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
790
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
791
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
792
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
793
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
794
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
795
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
796
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
797
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
798
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
799
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
800
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
801
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
802
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
803
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
804
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
805
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
806
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
807
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
808
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
809
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
810
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
811
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
812
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
813
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
814
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
815
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
816
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
817
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
818
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
819
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
820
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
821
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
822
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
823
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
824
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
825
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
826
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
827
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
828
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
829
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
830
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
831
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
832
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
833
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
834
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
835
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
836
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
837
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
838
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
839
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
840
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
841
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
842
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
843
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
844
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
845
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
846
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
847
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
848
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
849
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
850
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
851
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
852
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
853
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
854
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
855
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
856
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
857
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
858
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
859
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
860
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
861
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
862
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
863
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
864
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
865
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
866
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
867
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
868
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
869
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
870
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
871
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
872
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
873
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
874
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
875
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
876
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
877
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
878
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
879
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
880
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
881
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
882
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
883
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
884
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
885
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
886
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
887
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
888
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
889
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
890
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
891
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
892
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
893
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
894
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
895
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
896
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
897
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
898
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
899
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
900
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
901
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
902
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
903
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
904
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
905
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
906
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
907
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
908
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
909
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
910
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
911
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
912
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
913
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
914
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
915
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
916
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
917
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
918
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
919
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
920
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
921
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
922
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
923
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
924
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
925
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
926
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
927
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
928
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
929
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
930
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
931
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
932
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
933
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
934
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
935
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
936
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
937
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
938
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
939
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
940
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
941
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
942
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
943
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
944
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
945
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
946
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
947
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
948
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
949
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
950
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
951
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
952
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
953
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
954
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
955
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
956
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
957
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
958
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
959
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
960
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
961
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
962
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
963
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
964
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
965
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
966
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
967
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
968
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
969
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
970
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
971
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
972
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
973
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
974
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
975
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
976
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
977
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
978
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
979
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
980
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
981
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
982
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
983
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
984
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
985
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
986
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
987
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
988
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
989
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
990
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
991
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
992
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
993
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
994
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
995
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
996
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
997
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
998
+ Started GET "/" for ::1 at 2022-12-04 15:52:25 -0600
999
+ Processing by JindaController#index as HTML
1000
+ Rendering layout layouts/application.haml
1001
+ Rendering jinda/index.html.haml within layouts/application
1002
+ Rendered jinda/index.html.haml within layouts/application (Duration: 12.3ms | Allocations: 1889)
1003
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1004
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1005
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1006
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1007
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1008
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1009
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1010
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1011
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1012
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1013
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1014
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1015
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1016
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1017
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1018
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1019
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1020
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1021
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1022
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1023
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1024
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1025
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1026
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1027
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1028
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1029
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1030
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1031
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1032
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1033
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1034
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1035
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1036
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1037
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1038
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1039
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1040
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1041
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1042
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1043
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1044
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1045
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1046
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1047
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1048
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1049
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1050
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1051
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1052
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1053
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1054
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1055
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1056
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1057
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1058
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1059
+ Rendered layouts/lte/_header.haml (Duration: 61078.4ms | Allocations: 124779)
1060
+ Rendered layout layouts/application.haml (Duration: 61363.3ms | Allocations: 283851)
1061
+ Completed 500 Internal Server Error in 61367ms (MongoDB: 0.0ms | Allocations: 286144)
1062
+
1063
+
1064
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1065
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1066
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1067
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1068
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1069
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1070
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1071
+
1072
+ Mongo::Error::NoServerAvailable - No primary server is available in cluster: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]> with timeout=30, LT=0.015:
1073
+ app/views/layouts/lte/_header.haml:33
1074
+ app/views/layouts/application.haml:31
1075
+
1076
+ Started POST "/__better_errors/ce84d915fecd22a1/variables" for ::1 at 2022-12-04 15:52:29 -0600
1077
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1078
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1079
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1080
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1081
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1082
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1083
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1084
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1085
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1086
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1087
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1088
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1089
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1090
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1091
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1092
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1093
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1094
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1095
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1096
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1097
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1098
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1099
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1100
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1101
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1102
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1103
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1104
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1105
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1106
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1107
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1108
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1109
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1110
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1111
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1112
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1113
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1114
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1115
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1116
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1117
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1118
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1119
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1120
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1121
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1122
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1123
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1124
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1125
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1126
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1127
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1128
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1129
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1130
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1131
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1132
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1133
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1134
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1135
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1136
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1137
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1138
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1139
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1140
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1141
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1142
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1143
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1144
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1145
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1146
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1147
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1148
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1149
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1150
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1151
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1152
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1153
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1154
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1155
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1156
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1157
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1158
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1159
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1160
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1161
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1162
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1163
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1164
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1165
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1166
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1167
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1168
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1169
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1170
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1171
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1172
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1173
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1174
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1175
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1176
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1177
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1178
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1179
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1180
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1181
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1182
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1183
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1184
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1185
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1186
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1187
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1188
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1189
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1190
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1191
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1192
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1193
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1194
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1195
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1196
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1197
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1198
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1199
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1200
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1201
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1202
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1203
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1204
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1205
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1206
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1207
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1208
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1209
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1210
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1211
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1212
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1213
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1214
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1215
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1216
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1217
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1218
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1219
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1220
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1221
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1222
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1223
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1224
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1225
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1226
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1227
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1228
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1229
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1230
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1231
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1232
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1233
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1234
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1235
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1236
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1237
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1238
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1239
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1240
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1241
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1242
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1243
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1244
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1245
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1246
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1247
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1248
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1249
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1250
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1251
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1252
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1253
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1254
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1255
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1256
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1257
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1258
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1259
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1260
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1261
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1262
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1263
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1264
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1265
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1266
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1267
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1268
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1269
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1270
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1271
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1272
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1273
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1274
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1275
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1276
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1277
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1278
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1279
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1280
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1281
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1282
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1283
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1284
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1285
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1286
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1287
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1288
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1289
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1290
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1291
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1292
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1293
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1294
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1295
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1296
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1297
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1298
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1299
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1300
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1301
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1302
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1303
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1304
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1305
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1306
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1307
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1308
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1309
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1310
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1311
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1312
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1313
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1314
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1315
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1316
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1317
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1318
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1319
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1320
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1321
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1322
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1323
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1324
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1325
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1326
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1327
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1328
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1329
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1330
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1331
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1332
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1333
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1334
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1335
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1336
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1337
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1338
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1339
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1340
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1341
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1342
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1343
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1344
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1345
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1346
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1347
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1348
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1349
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1350
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1351
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1352
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1353
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1354
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1355
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1356
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1357
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1358
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1359
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1360
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1361
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1362
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1363
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1364
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1365
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1366
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1367
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1368
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1369
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1370
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1371
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1372
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1373
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1374
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1375
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1376
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1377
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1378
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1379
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1380
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1381
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1382
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1383
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1384
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1385
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1386
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1387
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1388
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1389
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1390
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1391
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1392
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1393
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1394
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1395
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1396
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1397
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1398
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1399
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1400
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1401
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1402
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1403
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1404
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1405
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1406
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1407
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1408
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1409
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1410
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1411
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1412
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1413
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1414
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1415
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1416
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1417
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1418
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1419
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1420
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1421
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1422
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1423
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1424
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1425
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1426
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1427
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1428
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1429
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1430
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1431
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1432
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1433
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1434
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1435
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1436
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1437
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1438
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1439
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1440
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1441
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1442
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1443
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1444
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1445
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1446
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1447
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1448
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1449
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1450
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1451
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1452
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1453
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1454
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1455
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1456
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1457
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1458
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1459
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1460
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1461
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1462
+ Rendered layouts/lte/_header.haml (Duration: 60012.0ms | Allocations: 107333)
1463
+ Rendered layout layouts/application.haml (Duration: 60037.0ms | Allocations: 120250)
1464
+ Completed 500 Internal Server Error in 60038ms (MongoDB: 0.0ms | Allocations: 120566)
1465
+
1466
+
1467
+ MONGODB | Error running ismaster on localhost:27017: Mongo::Error::SocketError: Errno::ECONNREFUSED: Connection refused - connect(2) for 127.0.0.1:27017 (for 127.0.0.1:27017 (no TLS)):
1468
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:319:in `rescue in handle_errors'
1469
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket.rb:313:in `handle_errors'
1470
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:43:in `block in connect!'
1471
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:179:in `block in timeout'
1472
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/timeout-0.3.0/lib/timeout.rb:186:in `timeout'
1473
+ /Users/kul/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/mongo-2.11.3/lib/mongo/socket/tcp.rb:41:in `connect!'
1474
+
1475
+ Mongo::Error::NoServerAvailable - No primary server is available in cluster: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]> with timeout=30, LT=0.015:
1476
+ app/views/layouts/lte/_header.haml:33
1477
+ app/views/layouts/application.haml:31
1478
+
1479
+ Started GET "/" for ::1 at 2022-12-04 15:54:30 -0600
1480
+ Processing by JindaController#index as HTML
1481
+ Rendering layout layouts/application.haml
1482
+ Rendering jinda/index.html.haml within layouts/application
1483
+ Rendered jinda/index.html.haml within layouts/application (Duration: 7.6ms | Allocations: 14736)
1484
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
1485
+ MONGODB | Topology type 'unknown' initializing.
1486
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[localhost:27017]>
1487
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
1488
+ MONGODB | EVENT: #<ServerOpening address=localhost:27017 topology=Unknown[localhost:27017]>
1489
+ MONGODB | Server localhost:27017 initializing.
1490
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[localhost:27017] servers=[#<Server address=localhost:27017 UNKNOWN>]>
1491
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x83000 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x82980 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d16e1571cb23269235c9b'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 21:54:30.67 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>1, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.027173>>
1492
+ MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1493
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[localhost:27017] new=Single[localhost:27017]>
1494
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
1495
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
1496
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x82980 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d16e1571cb23269235c9b'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 21:54:30.67 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>1, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.027173> new=#<Mongo::Server:Description:0x83080 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d16e1571cb23269235c9b'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 21:54:30.674 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>3, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.022074200000000002>>
1497
+ MONGODB | Server description for localhost:27017 changed from 'standalone' to 'standalone'.
1498
+ MONGODB | EVENT: #<TopologyChanged prev=Single[localhost:27017] new=Single[localhost:27017]>
1499
+ MONGODB | Topology type 'Single' changed to type 'Single'.
1500
+ MONGODB | [7] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1501
+ MONGODB | [7] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1502
+ MONGODB | [8] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1503
+ MONGODB | [8] localhost:27017 | dummy_development.find | SUCCEEDED | 0.005s
1504
+ MONGODB | [9] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1505
+ MONGODB | [9] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1506
+ MONGODB | [10] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1507
+ MONGODB | [10] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1508
+ Rendered layouts/lte/_header.haml (Duration: 76.5ms | Allocations: 68102)
1509
+ MONGODB | [11] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1510
+ MONGODB | [11] localhost:27017 | dummy_development.find | SUCCEEDED | 0.004s
1511
+ MONGODB | [12] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1512
+ MONGODB | [12] localhost:27017 | dummy_development.find | SUCCEEDED | 0.003s
1513
+ MONGODB | [13] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"jobs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1514
+ MONGODB | [13] localhost:27017 | dummy_development.find | SUCCEEDED | 0.003s
1515
+ MONGODB | [14] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95377'), "code"=>"jobs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1516
+ MONGODB | [14] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.041s
1517
+ MONGODB | [15] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95377')}, "u"=>{"$set"=>{"uid"=>"638d1716bee0427962e95377", "icon"=>"edit"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee...
1518
+ MONGODB | [15] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1519
+ MONGODB | [16] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95377')}, "u"=>{"$set"=>{"name"=>"Job", "seq"=>0}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1520
+ MONGODB | [16] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1521
+ MONGODB | [17] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"All Jobs: /jobs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1522
+ MONGODB | [17] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1523
+ MONGODB | [18] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95378'), "module_code"=>"jobs", "code"=>"link", "name"=>"All Jobs: /jobs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae....
1524
+ MONGODB | [18] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.025s
1525
+ MONGODB | [19] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95378')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820684325' ID='ID_1286878862' MODIFIED='1601820727491' TEXT='link: All Jobs: /jobs'/>", "lis...
1526
+ MONGODB | [19] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1527
+ MONGODB | [20] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"My jobs: /jobs/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1528
+ MONGODB | [20] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1529
+ MONGODB | [21] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95379'), "module_code"=>"jobs", "code"=>"link", "name"=>"My jobs: /jobs/my"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1530
+ MONGODB | [21] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1531
+ MONGODB | [22] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95379')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820729659' ID='ID_276716699' MODIFIED='1601820779914' TEXT='link: My jobs: /jobs/my'/>", "li...
1532
+ MONGODB | [22] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1533
+ MONGODB | [23] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"link", "name"=>"My forms: /jobs/forms"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1534
+ MONGODB | [23] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1535
+ MONGODB | [24] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537a'), "module_code"=>"jobs", "code"=>"link", "name"=>"My forms: /jobs/forms"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee...
1536
+ MONGODB | [24] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1537
+ MONGODB | [25] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537a')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601822748019' ID='ID_710706962' MODIFIED='1601824169249' TEXT='link: My forms: /jobs/forms'/>",...
1538
+ MONGODB | [25] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1539
+ MONGODB | [26] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"new_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1540
+ MONGODB | [26] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1541
+ MONGODB | [27] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537b'), "module_code"=>"jobs", "code"=>"new_job"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1542
+ MONGODB | [27] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1543
+ MONGODB | [28] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537b')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601820781395' ID='ID_1580322062' MODIFIED='1601820816872' TEXT='new_job: Create Job'><node CREA...
1544
+ MONGODB | [28] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1545
+ MONGODB | [29] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"edit_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1546
+ MONGODB | [29] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1547
+ MONGODB | [30] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537c'), "module_code"=>"jobs", "code"=>"edit_job"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1548
+ MONGODB | [30] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1549
+ MONGODB | [31] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537c')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_376861955' MODIFIED='1601821049556' TEXT='edit_job: Edit Job'><node CREATE...
1550
+ MONGODB | [31] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1551
+ MONGODB | [32] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"create_form"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1552
+ MONGODB | [32] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1553
+ MONGODB | [33] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537d'), "module_code"=>"jobs", "code"=>"create_form"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1554
+ MONGODB | [33] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1555
+ MONGODB | [34] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537d')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601821472569' ID='ID_742665624' MODIFIED='1601824259096' TEXT='create_form: Create Job Form'><n...
1556
+ MONGODB | [34] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1557
+ MONGODB | [35] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"import_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1558
+ MONGODB | [35] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1559
+ MONGODB | [36] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537e'), "module_code"=>"jobs", "code"=>"import_job"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1560
+ MONGODB | [36] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1561
+ MONGODB | [37] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537e')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1601825689253' ID='ID_384470912' MODIFIED='1601825751799' TEXT='import_job: Import Email Job'><n...
1562
+ MONGODB | [37] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1563
+ MONGODB | [38] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"jobs", "code"=>"xedit_job"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1564
+ MONGODB | [38] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1565
+ MONGODB | [39] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9537f'), "module_code"=>"jobs", "code"=>"xedit_job"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1566
+ MONGODB | [39] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1567
+ MONGODB | [40] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9537f')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_1736872254' MODIFIED='1601825881187' TEXT='xedit_job: xEdit Job'><icon BUI...
1568
+ MONGODB | [40] localhost:27017 | dummy_development.update | SUCCEEDED | 0.002s
1569
+ MONGODB | [41] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"users"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1570
+ MONGODB | [41] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1571
+ MONGODB | [42] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95380'), "code"=>"users"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1572
+ MONGODB | [42] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1573
+ MONGODB | [43] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95380')}, "u"=>{"$set"=>{"uid"=>"638d1716bee0427962e95380", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1574
+ MONGODB | [43] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1575
+ MONGODB | [44] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95380')}, "u"=>{"$set"=>{"name"=>"User", "seq"=>1}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1576
+ MONGODB | [44] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1577
+ MONGODB | [45] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95380')}, "u"=>{"$set"=>{"role"=>"m"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1578
+ MONGODB | [45] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1579
+ MONGODB | [46] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"link", "name"=>"info: /users"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1580
+ MONGODB | [46] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1581
+ MONGODB | [47] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95381'), "module_code"=>"users", "code"=>"link", "name"=>"info: /users"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae......
1582
+ MONGODB | [47] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1583
+ MONGODB | [48] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95381')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1279700865182' ID='ID_1266797279' MODIFIED='1357798847781' TEXT='link:info: /users'/>", "list"=>...
1584
+ MONGODB | [48] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1585
+ MONGODB | [49] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1586
+ MONGODB | [49] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1587
+ MONGODB | [50] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95382'), "module_code"=>"users", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce...
1588
+ MONGODB | [50] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1589
+ MONGODB | [51] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95382')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1319015338880' ID='ID_189841353' MODIFIED='1528215866339' TEXT='link:pending tasks: /jinda/pendi...
1590
+ MONGODB | [51] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1591
+ MONGODB | [52] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"user"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1592
+ MONGODB | [52] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1593
+ MONGODB | [53] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95383'), "module_code"=>"users", "code"=>"user"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1594
+ MONGODB | [53] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1595
+ MONGODB | [54] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95383')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275905802131' ID='ID_154000410' MODIFIED='1355422418892' TEXT='user:edit'><node CREATED='127575...
1596
+ MONGODB | [54] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1597
+ MONGODB | [55] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"users", "code"=>"pwd"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1598
+ MONGODB | [55] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1599
+ MONGODB | [56] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95384'), "module_code"=>"users", "code"=>"pwd"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1600
+ MONGODB | [56] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1601
+ MONGODB | [57] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95384')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275756504750' ID='ID_1382277695' MODIFIED='1355422424108' TEXT='pwd:change password'><node CREA...
1602
+ MONGODB | [57] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1603
+ MONGODB | [58] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"admins"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1604
+ MONGODB | [58] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1605
+ MONGODB | [59] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95385'), "code"=>"admins"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1606
+ MONGODB | [59] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.002s
1607
+ MONGODB | [60] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95385')}, "u"=>{"$set"=>{"uid"=>"638d1716bee0427962e95385", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1608
+ MONGODB | [60] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1609
+ MONGODB | [61] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95385')}, "u"=>{"$set"=>{"name"=>"Admin", "seq"=>2}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1610
+ MONGODB | [61] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1611
+ MONGODB | [62] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95385')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1612
+ MONGODB | [62] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1613
+ MONGODB | [63] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"edit_role"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1614
+ MONGODB | [63] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1615
+ MONGODB | [64] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95386'), "module_code"=>"admins", "code"=>"edit_role"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1616
+ MONGODB | [64] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1617
+ MONGODB | [65] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95386')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1282722836614' ID='ID_1213363124' MODIFIED='1330477902602' TEXT='edit_role:edit user role'><node...
1618
+ MONGODB | [65] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1619
+ MONGODB | [66] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1620
+ MONGODB | [66] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1621
+ MONGODB | [67] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95387'), "module_code"=>"admins", "code"=>"link", "name"=>"pending tasks: /jinda/pending"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xc...
1622
+ MONGODB | [67] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1623
+ MONGODB | [68] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95387')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1273913393454' ID='ID_1088166839' MODIFIED='1511159690490' TEXT='link: pending tasks: /jinda/pen...
1624
+ MONGODB | [68] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1625
+ MONGODB | [69] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"logs: /jinda/logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1626
+ MONGODB | [69] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1627
+ MONGODB | [70] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95388'), "module_code"=>"admins", "code"=>"link", "name"=>"logs: /jinda/logs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee24...
1628
+ MONGODB | [70] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1629
+ MONGODB | [71] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95388')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275790679363' ID='ID_829325467' MODIFIED='1511159696044' TEXT='link: logs: /jinda/logs'/>", "li...
1630
+ MONGODB | [71] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1631
+ MONGODB | [72] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"admins", "code"=>"link", "name"=>"docs: /jinda/doc"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1632
+ MONGODB | [72] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1633
+ MONGODB | [73] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e95389'), "module_code"=>"admins", "code"=>"link", "name"=>"docs: /jinda/doc"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242...
1634
+ MONGODB | [73] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1635
+ MONGODB | [74] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e95389')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1507573166973' ID='ID_351025910' MODIFIED='1511159700908' TEXT='link: docs: /jinda/doc'/>", "lis...
1636
+ MONGODB | [74] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1637
+ MONGODB | [75] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"devs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1638
+ MONGODB | [75] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1639
+ MONGODB | [76] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9538a'), "code"=>"devs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1640
+ MONGODB | [76] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1641
+ MONGODB | [77] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538a')}, "u"=>{"$set"=>{"uid"=>"638d1716bee0427962e9538a", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1642
+ MONGODB | [77] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1643
+ MONGODB | [78] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538a')}, "u"=>{"$set"=>{"name"=>"Developer", "seq"=>3}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1644
+ MONGODB | [78] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1645
+ MONGODB | [79] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538a')}, "u"=>{"$set"=>{"role"=>"d"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1646
+ MONGODB | [79] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1647
+ MONGODB | [80] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"devs", "code"=>"link", "name"=>"error_logs: /jinda/error_logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1648
+ MONGODB | [80] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1649
+ MONGODB | [81] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9538b'), "module_code"=>"devs", "code"=>"link", "name"=>"error_logs: /jinda/error_logs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1...
1650
+ MONGODB | [81] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1651
+ MONGODB | [82] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538b')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275788317299' ID='ID_716276608' MODIFIED='1511159716471' TEXT='link: error_logs: /jinda/error_l...
1652
+ MONGODB | [82] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1653
+ MONGODB | [83] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"devs", "code"=>"link", "name"=>"notice_logs: /jinda/notice_logs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1654
+ MONGODB | [83] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1655
+ MONGODB | [84] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9538c'), "module_code"=>"devs", "code"=>"link", "name"=>"notice_logs: /jinda/notice_logs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xc...
1656
+ MONGODB | [84] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1657
+ MONGODB | [85] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538c')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275788317299' ID='ID_1570419198' MODIFIED='1587858894833' TEXT='link: notice_logs: /jinda/notic...
1658
+ MONGODB | [85] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1659
+ MONGODB | [86] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"docs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1660
+ MONGODB | [86] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1661
+ MONGODB | [87] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1716bee0427962e9538d'), "code"=>"docs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1662
+ MONGODB | [87] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1663
+ MONGODB | [88] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538d')}, "u"=>{"$set"=>{"uid"=>"638d1716bee0427962e9538d", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1664
+ MONGODB | [88] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1665
+ MONGODB | [89] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1716bee0427962e9538d')}, "u"=>{"$set"=>{"name"=>"Document", "seq"=>4}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1666
+ MONGODB | [89] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1667
+ MONGODB | [90] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"link", "name"=>"My Document: /docs/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1668
+ MONGODB | [90] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1669
+ MONGODB | [91] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9538e'), "module_code"=>"docs", "code"=>"link", "name"=>"My Document: /docs/my"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee...
1670
+ MONGODB | [91] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.002s
1671
+ MONGODB | [92] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9538e')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1589757073388' ID='ID_1938238774' MODIFIED='1589772640862' TEXT='link: My Document: /docs/my'><n...
1672
+ MONGODB | [92] localhost:27017 | dummy_development.update | SUCCEEDED | 0.002s
1673
+ MONGODB | [93] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1674
+ MONGODB | [93] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1675
+ MONGODB | [94] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9538f'), "module_code"=>"docs", "code"=>"doc_new"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1676
+ MONGODB | [94] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1677
+ MONGODB | [95] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9538f')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1589756879955' ID='ID_899042293' MODIFIED='1589910229085' TEXT='doc_new: New Document'><node CRE...
1678
+ MONGODB | [95] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1679
+ MONGODB | [96] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1680
+ MONGODB | [96] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1681
+ MONGODB | [97] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95390'), "module_code"=>"docs", "code"=>"doc_edit"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1682
+ MONGODB | [97] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1683
+ MONGODB | [98] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95390')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_339628868' MODIFIED='1590424956484' TEXT='doc_edit: Edit Document'><icon B...
1684
+ MONGODB | [98] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1685
+ MONGODB | [99] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"docs", "code"=>"doc_xedit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1686
+ MONGODB | [99] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1687
+ MONGODB | [100] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95391'), "module_code"=>"docs", "code"=>"doc_xedit"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1688
+ MONGODB | [100] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1689
+ MONGODB | [101] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95391')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_278169779' MODIFIED='1590180135106' TEXT='doc_xedit: Doc_hidden_menu'><ico...
1690
+ MONGODB | [101] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1691
+ MONGODB | [102] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"notes"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1692
+ MONGODB | [102] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1693
+ MONGODB | [103] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95392'), "code"=>"notes"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1694
+ MONGODB | [103] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1695
+ MONGODB | [104] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95392')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e95392", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1696
+ MONGODB | [104] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1697
+ MONGODB | [105] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95392')}, "u"=>{"$set"=>{"name"=>"Notes", "seq"=>5}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1698
+ MONGODB | [105] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1699
+ MONGODB | [106] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"link", "name"=>"My Notes: /notes/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1700
+ MONGODB | [106] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1701
+ MONGODB | [107] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95393'), "module_code"=>"notes", "code"=>"link", "name"=>"My Notes: /notes/my"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee2...
1702
+ MONGODB | [107] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1703
+ MONGODB | [108] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95393')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' ID='ID_737469676' MODIFIED='1589772615102' TEXT='link:My Notes: /notes/my'><node ...
1704
+ MONGODB | [108] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1705
+ MONGODB | [109] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1706
+ MONGODB | [109] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1707
+ MONGODB | [110] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95394'), "module_code"=>"notes", "code"=>"new"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1708
+ MONGODB | [110] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1709
+ MONGODB | [111] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95394')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_553734932' MODIFIED='1591278856955' TEXT='new: New Note'><node CREATED='14...
1710
+ MONGODB | [111] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1711
+ MONGODB | [112] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1712
+ MONGODB | [112] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1713
+ MONGODB | [113] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95395'), "module_code"=>"notes", "code"=>"edit"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1714
+ MONGODB | [113] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1715
+ MONGODB | [114] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95395')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' FOLDED='true' ID='ID_1241171950' MODIFIED='1591278847249' TEXT='edit: Edit'><node...
1716
+ MONGODB | [114] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1717
+ MONGODB | [115] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"delete"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1718
+ MONGODB | [115] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1719
+ MONGODB | [116] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95396'), "module_code"=>"notes", "code"=>"delete"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1720
+ MONGODB | [116] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1721
+ MONGODB | [117] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95396')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' FOLDED='true' ID='ID_320521408' MODIFIED='1591278851391' STYLE='fork' TEXT='delet...
1722
+ MONGODB | [117] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1723
+ MONGODB | [118] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"mail"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1724
+ MONGODB | [118] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1725
+ MONGODB | [119] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95397'), "module_code"=>"notes", "code"=>"mail"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1726
+ MONGODB | [119] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1727
+ MONGODB | [120] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95397')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1581531446494' FOLDED='true' ID='ID_1325232876' MODIFIED='1591278853597' TEXT='mail: Mail'><node...
1728
+ MONGODB | [120] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1729
+ MONGODB | [121] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"notes", "code"=>"xedit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1730
+ MONGODB | [121] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1731
+ MONGODB | [122] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95398'), "module_code"=>"notes", "code"=>"xedit"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1732
+ MONGODB | [122] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1733
+ MONGODB | [123] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95398')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' FOLDED='true' ID='ID_807216843' MODIFIED='1590180066630' TEXT='xedit: Future use'...
1734
+ MONGODB | [123] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1735
+ MONGODB | [124] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"articles"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1736
+ MONGODB | [124] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1737
+ MONGODB | [125] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e95399'), "code"=>"articles"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1738
+ MONGODB | [125] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1739
+ MONGODB | [126] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95399')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e95399", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1740
+ MONGODB | [126] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1741
+ MONGODB | [127] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e95399')}, "u"=>{"$set"=>{"name"=>"Article", "seq"=>6}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1742
+ MONGODB | [127] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1743
+ MONGODB | [128] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"link", "name"=>"All Articles: /articles"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1744
+ MONGODB | [128] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1745
+ MONGODB | [129] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539a'), "module_code"=>"articles", "code"=>"link", "name"=>"All Articles: /articles"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e9...
1746
+ MONGODB | [129] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1747
+ MONGODB | [130] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539a')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419096527' ID='ID_1521905276' MODIFIED='1493478060121' TEXT='link: All Articles: /articles'/...
1748
+ MONGODB | [130] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1749
+ MONGODB | [131] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"link", "name"=>"My article: /articles/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1750
+ MONGODB | [131] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1751
+ MONGODB | [132] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539b'), "module_code"=>"articles", "code"=>"link", "name"=>"My article: /articles/my"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e...
1752
+ MONGODB | [132] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1753
+ MONGODB | [133] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539b')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' FOLDED='true' ID='ID_1376361427' MODIFIED='1589757167952' TEXT='link: My article:...
1754
+ MONGODB | [133] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1755
+ MONGODB | [134] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"new_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1756
+ MONGODB | [134] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1757
+ MONGODB | [135] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539c'), "module_code"=>"articles", "code"=>"new_article"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1758
+ MONGODB | [135] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1759
+ MONGODB | [136] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539c')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_1355420049' MODIFIED='1588619429446' TEXT='new_article: New Article'><node...
1760
+ MONGODB | [136] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1761
+ MONGODB | [137] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"edit_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1762
+ MONGODB | [137] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1763
+ MONGODB | [138] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539d'), "module_code"=>"articles", "code"=>"edit_article"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1764
+ MONGODB | [138] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1765
+ MONGODB | [139] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539d')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_922854639' MODIFIED='1590180584955' TEXT='edit_article: Edit Article'><nod...
1766
+ MONGODB | [139] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1767
+ MONGODB | [140] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"articles", "code"=>"xedit_article"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1768
+ MONGODB | [140] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1769
+ MONGODB | [141] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539e'), "module_code"=>"articles", "code"=>"xedit_article"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1770
+ MONGODB | [141] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1771
+ MONGODB | [142] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539e')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_1861034169' MODIFIED='1585001527103' TEXT='xedit_article: xEdit Article'><...
1772
+ MONGODB | [142] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1773
+ MONGODB | [143] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"comments"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1774
+ MONGODB | [143] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1775
+ MONGODB | [144] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e9539f'), "code"=>"comments"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1776
+ MONGODB | [144] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1777
+ MONGODB | [145] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539f')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e9539f", "icon"=>"button_cancel"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce...
1778
+ MONGODB | [145] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1779
+ MONGODB | [146] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539f')}, "u"=>{"$set"=>{"name"=>"Comment", "seq"=>7}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1780
+ MONGODB | [146] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1781
+ MONGODB | [147] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"comments", "code"=>"new_comment"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1782
+ MONGODB | [147] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1783
+ MONGODB | [148] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a0'), "module_code"=>"comments", "code"=>"new_comment"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1784
+ MONGODB | [148] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1785
+ MONGODB | [149] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a0')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493665155709' ID='ID_1973520751' MODIFIED='1591392666652' TEXT='new_comment: New Comment'><icon...
1786
+ MONGODB | [149] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1787
+ MONGODB | [150] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e9539f')}, "u"=>{"$set"=>{"role"=>"m"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1788
+ MONGODB | [150] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1789
+ MONGODB | [151] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"comments", "code"=>"comments"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1790
+ MONGODB | [151] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1791
+ MONGODB | [152] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a1'), "module_code"=>"comments", "code"=>"comments"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1792
+ MONGODB | [152] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1793
+ MONGODB | [153] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a1')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493664700564' ID='ID_298151177' MODIFIED='1603226693472' TEXT='comments: Comment'><arrowlink DE...
1794
+ MONGODB | [153] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1795
+ MONGODB | [154] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"ctrs"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1796
+ MONGODB | [154] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1797
+ MONGODB | [155] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a2'), "code"=>"ctrs"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1798
+ MONGODB | [155] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1799
+ MONGODB | [156] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a2')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e953a2", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1800
+ MONGODB | [156] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1801
+ MONGODB | [157] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a2')}, "u"=>{"$set"=>{"name"=>"ctrs& Menu", "seq"=>8}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1802
+ MONGODB | [157] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1803
+ MONGODB | [158] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a2')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1804
+ MONGODB | [158] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1805
+ MONGODB | [159] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"ctrs", "code"=>"vfolder1"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1806
+ MONGODB | [159] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1807
+ MONGODB | [160] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a3'), "module_code"=>"ctrs", "code"=>"vfolder1"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1808
+ MONGODB | [160] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1809
+ MONGODB | [161] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a3')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275905802131' ID='ID_1960607342' MODIFIED='1489938927874' TEXT='vfolder1:Sub Menu 1'><node CREA...
1810
+ MONGODB | [161] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1811
+ MONGODB | [162] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"ctrs", "code"=>"vfolder2"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1812
+ MONGODB | [162] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1813
+ MONGODB | [163] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a4'), "module_code"=>"ctrs", "code"=>"vfolder2"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1814
+ MONGODB | [163] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1815
+ MONGODB | [164] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a4')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1275756504750' ID='ID_914236141' MODIFIED='1489939000929' TEXT='vfolder2:Title 2'><node CREATED=...
1816
+ MONGODB | [164] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1817
+ MONGODB | [165] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"sitemap"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1818
+ MONGODB | [165] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1819
+ MONGODB | [166] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a5'), "code"=>"sitemap"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1820
+ MONGODB | [166] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1821
+ MONGODB | [167] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a5')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e953a5", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1822
+ MONGODB | [167] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1823
+ MONGODB | [168] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a5')}, "u"=>{"$set"=>{"name"=>"Sitemap", "seq"=>9}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1824
+ MONGODB | [168] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1825
+ MONGODB | [169] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"sitemap", "code"=>"sitemap"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1826
+ MONGODB | [169] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1827
+ MONGODB | [170] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a6'), "module_code"=>"sitemap", "code"=>"sitemap"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1828
+ MONGODB | [170] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1829
+ MONGODB | [171] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a6')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1494172758253' ID='ID_961056168' MODIFIED='1494172797972' TEXT='sitemap: Sitemap'/>", "name"=>"S...
1830
+ MONGODB | [171] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1831
+ MONGODB | [172] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a5')}, "u"=>{"$set"=>{"role"=>"a"}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1832
+ MONGODB | [172] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1833
+ MONGODB | [173] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{"code"=>"api/v1/notes"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1834
+ MONGODB | [173] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1835
+ MONGODB | [174] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_modules", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a7'), "code"=>"api/v1/notes"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1836
+ MONGODB | [174] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1837
+ MONGODB | [175] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a7')}, "u"=>{"$set"=>{"uid"=>"638d1717bee0427962e953a7", "icon"=>""}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242a...
1838
+ MONGODB | [175] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1839
+ MONGODB | [176] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_modules", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a7')}, "u"=>{"$set"=>{"name"=>"Notes API", "seq"=>10}}}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1840
+ MONGODB | [176] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1841
+ MONGODB | [177] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"link", "name"=>"My Notes: /api/v1/notes/my"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1842
+ MONGODB | [177] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1843
+ MONGODB | [178] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a8'), "module_code"=>"api/v1/notes", "code"=>"link", "name"=>"My Notes: /api/v1/notes/my"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=...
1844
+ MONGODB | [178] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1845
+ MONGODB | [179] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a8')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493489768542' ID='ID_1053900670' MODIFIED='1591074318558' TEXT='link:My Notes: /api/v1/notes/my...
1846
+ MONGODB | [179] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1847
+ MONGODB | [180] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"new"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1848
+ MONGODB | [180] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1849
+ MONGODB | [181] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953a9'), "module_code"=>"api/v1/notes", "code"=>"new"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1850
+ MONGODB | [181] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1851
+ MONGODB | [182] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953a9')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419257021' ID='ID_1182560700' MODIFIED='1581180635669' TEXT='new: New Note'><node CREATED='1...
1852
+ MONGODB | [182] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1853
+ MONGODB | [183] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"edit"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1854
+ MONGODB | [183] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1855
+ MONGODB | [184] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953aa'), "module_code"=>"api/v1/notes", "code"=>"edit"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1856
+ MONGODB | [184] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1857
+ MONGODB | [185] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953aa')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1493419562726' ID='ID_963001770' MODIFIED='1581180788218' TEXT='edit: Edit'><node CREATED='14934...
1858
+ MONGODB | [185] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1859
+ MONGODB | [186] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_code"=>"api/v1/notes", "code"=>"delete"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1860
+ MONGODB | [186] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1861
+ MONGODB | [187] localhost:27017 #1 | dummy_development.insert | STARTED | {"insert"=>"jinda_services", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d1717bee0427962e953ab'), "module_code"=>"api/v1/notes", "code"=>"delete"}], "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1862
+ MONGODB | [187] localhost:27017 | dummy_development.insert | SUCCEEDED | 0.001s
1863
+ MONGODB | [188] localhost:27017 #1 | dummy_development.update | STARTED | {"update"=>"jinda_services", "ordered"=>true, "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('638d1717bee0427962e953ab')}, "u"=>{"$set"=>{"xml"=>"<node CREATED='1495246388313' ID='ID_918406528' MODIFIED='1581340759604' STYLE='fork' TEXT='delete:Delete'><edg...
1864
+ MONGODB | [188] localhost:27017 | dummy_development.update | SUCCEEDED | 0.001s
1865
+ MONGODB | [189] localhost:27017 #1 | dummy_development.delete | STARTED | {"delete"=>"jinda_modules", "ordered"=>true, "deletes"=>[{"q"=>{"uid"=>{"$nin"=>["638d1716bee0427962e95377", "638d1716bee0427962e95380", "638d1716bee0427962e95385", "638d1716bee0427962e9538a", "638d1716bee0427962e9538d", "638d1717bee0427962e95392", "6...
1866
+ MONGODB | [189] localhost:27017 | dummy_development.delete | SUCCEEDED | 0.001s
1867
+ MONGODB | [190] localhost:27017 #1 | dummy_development.delete | STARTED | {"delete"=>"jinda_services", "ordered"=>true, "deletes"=>[{"q"=>{"uid"=>{"$nin"=>["638d1716bee0427962e95378", "638d1716bee0427962e95379", "638d1716bee0427962e9537a", "638d1716bee0427962e9537b", "638d1716bee0427962e9537c", "638d1716bee0427962e9537d", "...
1868
+ MONGODB | [190] localhost:27017 | dummy_development.delete | SUCCEEDED | 0.001s
1869
+ MONGODB | [191] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1870
+ MONGODB | [191] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1871
+ MONGODB | [192] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('638d1716bee0427962e95377')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1872
+ MONGODB | [192] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1873
+ MONGODB | [193] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1874
+ MONGODB | [193] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1875
+ MONGODB | [194] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1876
+ MONGODB | [194] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1877
+ MONGODB | [195] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1878
+ MONGODB | [195] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1879
+ MONGODB | [196] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1880
+ MONGODB | [196] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1881
+ MONGODB | [197] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1882
+ MONGODB | [197] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1883
+ MONGODB | [198] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1884
+ MONGODB | [198] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1885
+ MONGODB | [199] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1886
+ MONGODB | [199] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1887
+ MONGODB | [200] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('638d1716bee0427962e9538d')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1888
+ MONGODB | [200] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1889
+ MONGODB | [201] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1890
+ MONGODB | [201] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1891
+ MONGODB | [202] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1892
+ MONGODB | [202] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1893
+ MONGODB | [203] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('638d1717bee0427962e95392')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1894
+ MONGODB | [203] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1895
+ MONGODB | [204] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1896
+ MONGODB | [204] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1897
+ MONGODB | [205] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1898
+ MONGODB | [205] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1899
+ MONGODB | [206] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1900
+ MONGODB | [206] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1901
+ MONGODB | [207] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1902
+ MONGODB | [207] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1903
+ MONGODB | [208] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1904
+ MONGODB | [208] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1905
+ MONGODB | [209] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('638d1717bee0427962e95399')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1906
+ MONGODB | [209] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1907
+ MONGODB | [210] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1908
+ MONGODB | [210] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1909
+ MONGODB | [211] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1910
+ MONGODB | [211] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1911
+ MONGODB | [212] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1912
+ MONGODB | [212] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1913
+ MONGODB | [213] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1914
+ MONGODB | [213] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1915
+ MONGODB | [214] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1916
+ MONGODB | [214] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1917
+ MONGODB | [215] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1918
+ MONGODB | [215] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1919
+ MONGODB | [216] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"jinda_services", "filter"=>{"module_id"=>BSON::ObjectId('638d1717bee0427962e953a7')}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1920
+ MONGODB | [216] localhost:27017 | dummy_development.find | SUCCEEDED | 0.002s
1921
+ MONGODB | [217] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1922
+ MONGODB | [217] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1923
+ MONGODB | [218] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1924
+ MONGODB | [218] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1925
+ MONGODB | [219] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1926
+ MONGODB | [219] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1927
+ Rendered layouts/lte/_menu_mm.haml (Duration: 542.0ms | Allocations: 1028667)
1928
+ MONGODB | [220] localhost:27017 #1 | dummy_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x83140 type=uuid data=0xce1e94d3fee242ae...>}}
1929
+ MONGODB | [220] localhost:27017 | dummy_development.find | SUCCEEDED | 0.001s
1930
+ Rendered layouts/lte/_menu.haml (Duration: 550.1ms | Allocations: 1047863)
1931
+ Rendered layouts/lte/_sidebar.haml (Duration: 568.2ms | Allocations: 1090263)
1932
+ Rendered layouts/lte/_flash.haml (Duration: 1.7ms | Allocations: 3959)
1933
+ Rendered layouts/lte/_footer.haml (Duration: 1.1ms | Allocations: 3225)
1934
+ Rendered layout layouts/application.haml (Duration: 681.7ms | Allocations: 1201453)
1935
+ Completed 200 OK in 685ms (Views: 683.1ms | MongoDB: 0.3ms | Allocations: 1203797)
1936
+
1937
+
1938
+ MONGODB | EVENT: #<ServerDescriptionChanged address=localhost:27017 topology=Single[localhost:27017] prev=#<Mongo::Server:Description:0x83080 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d16e1571cb23269235c9b'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 21:54:30.674 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>3, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.022074200000000002> new=#<Mongo::Server:Description:0x91400 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d16e1571cb23269235c9b'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 21:54:40.679 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>1, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.018444960000000003>>
1939
+ MONGODB | Server description for localhost:27017 changed from 'standalone' to 'standalone'.
1940
+ MONGODB | EVENT: #<TopologyChanged prev=Single[localhost:27017] new=Single[localhost:27017]>
1941
+ MONGODB | Topology type 'Single' changed to type 'Single'.
1942
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
1943
+ MONGODB | Topology type 'unknown' initializing.
1944
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[mongodb:27017]>
1945
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
1946
+ MONGODB | EVENT: #<ServerOpening address=mongodb:27017 topology=Unknown[mongodb:27017]>
1947
+ MONGODB | Server mongodb:27017 initializing.
1948
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[mongodb:27017] servers=[#<Server address=mongodb:27017 UNKNOWN>]>
1949
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67560 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:03.694 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.003073834>>
1950
+ MONGODB | Server description for mongodb:27017 changed from 'unknown' to 'standalone'.
1951
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[mongodb:27017] new=Single[mongodb:27017]>
1952
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
1953
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
1954
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:03.694 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.003073834> new=#<Mongo::Server:Description:0x67640 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:03.699 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>4, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0025528088>>
1955
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
1956
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
1957
+ MONGODB | Topology type 'Single' changed to type 'Single'.
1958
+ MONGODB | [7] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1959
+ MONGODB | [7] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
1960
+ MONGODB | [8] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1961
+ MONGODB | [8] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1962
+ MONGODB | [9] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"admin@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1963
+ MONGODB | [9] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1964
+ MONGODB | [10] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d2aab0da75100170a5a75'), "code"=>"admin", "email"=>"admin@test.com", "password_digest"=>"$2a$12$tNueZlMUMrzt.9gZYCdkL.1/7lG/88.7sxcYl1oyM69/SZefP1PyK"}], "lsid"=>{"id"=...
1965
+ MONGODB | [10] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.007s
1966
+ MONGODB | [11] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1967
+ MONGODB | [11] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1968
+ MONGODB | [12] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d2aac0da75100170a5a76'), "provider"=>"identity", "uid"=>"638d2aab0da75100170a5a75", "code"=>"admin", "email"=>"admin@test.com", "role"=>"M,A,D", "image"=>"https://user-image...
1969
+ MONGODB | [12] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.006s
1970
+ MONGODB | [13] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1971
+ MONGODB | [13] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1972
+ MONGODB | [14] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1973
+ MONGODB | [14] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
1974
+ MONGODB | [15] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"tester@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1975
+ MONGODB | [15] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1976
+ MONGODB | [16] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d2aac0da75100170a5a77'), "code"=>"tester", "email"=>"tester@test.com", "password_digest"=>"$2a$12$ALXsngcuG2VYqzGQoYu7jOvfyfzaAMiKwbKY4Ia2RfOyuyxHqbdrm"}], "lsid"=>{"id...
1977
+ MONGODB | [16] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.000s
1978
+ MONGODB | [17] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1979
+ MONGODB | [17] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1980
+ MONGODB | [18] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638d2aac0da75100170a5a78'), "provider"=>"identity", "uid"=>"638d2aac0da75100170a5a77", "code"=>"tester", "email"=>"tester@test.com", "role"=>"M", "image"=>"https://www.manatees...
1981
+ MONGODB | [18] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.000s
1982
+ MONGODB | [19] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1983
+ MONGODB | [19] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1984
+ MONGODB | [20] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xf42a81821cd14f79...>}}
1985
+ MONGODB | [20] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
1986
+ Started GET "/" for 172.20.0.1 at 2022-12-04 23:18:24 +0000
1987
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
1988
+ Processing by JindaController#index as HTML
1989
+ Rendering layout layouts/application.haml
1990
+ Rendering jinda/index.html.haml within layouts/application
1991
+ Rendered jinda/index.html.haml within layouts/application (Duration: 745.9ms | Allocations: 17685)
1992
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
1993
+ MONGODB | Topology type 'unknown' initializing.
1994
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[mongodb:27017]>
1995
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
1996
+ MONGODB | EVENT: #<ServerOpening address=mongodb:27017 topology=Unknown[mongodb:27017]>
1997
+ MONGODB | Server mongodb:27017 initializing.
1998
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[mongodb:27017] servers=[#<Server address=mongodb:27017 UNKNOWN>]>
1999
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82820 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x82800 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:26.034 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.001970167>>
2000
+ MONGODB | Server description for mongodb:27017 changed from 'unknown' to 'standalone'.
2001
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[mongodb:27017] new=Single[mongodb:27017]>
2002
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
2003
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
2004
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82800 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:26.034 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.001970167> new=#<Mongo::Server:Description:0x82900 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:26.041 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>8, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0017935004>>
2005
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2006
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2007
+ MONGODB | Topology type 'Single' changed to type 'Single'.
2008
+ MONGODB | [7] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2009
+ MONGODB | [7] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2010
+ MONGODB | [8] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2011
+ MONGODB | [8] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2012
+ MONGODB | [9] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2013
+ MONGODB | [9] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2014
+ MONGODB | [10] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2015
+ MONGODB | [10] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2016
+ Rendered layouts/lte/_header.haml (Duration: 77.6ms | Allocations: 62603)
2017
+ MONGODB | [11] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2018
+ MONGODB | [11] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2019
+ MONGODB | [12] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2020
+ MONGODB | [12] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2021
+ MONGODB | [13] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2022
+ MONGODB | [13] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2023
+ Rendered layouts/lte/_menu_mm.haml (Duration: 52.9ms | Allocations: 114761)
2024
+ MONGODB | [14] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2025
+ MONGODB | [14] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2026
+ Rendered layouts/lte/_menu.haml (Duration: 65.0ms | Allocations: 133408)
2027
+ Rendered layouts/lte/_sidebar.haml (Duration: 80.4ms | Allocations: 173037)
2028
+ Rendered layouts/lte/_flash.haml (Duration: 3.5ms | Allocations: 3847)
2029
+ Rendered layouts/lte/_footer.haml (Duration: 2.5ms | Allocations: 3123)
2030
+ Rendered layout layouts/application.haml (Duration: 922.4ms | Allocations: 268752)
2031
+ Completed 200 OK in 983ms (Views: 951.4ms | MongoDB: 0.0ms | Allocations: 271671)
2032
+
2033
+
2034
+ Started GET "/" for 172.20.0.1 at 2022-12-04 23:18:35 +0000
2035
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2036
+ Processing by JindaController#index as HTML
2037
+ Rendering layout layouts/application.haml
2038
+ Rendering jinda/index.html.haml within layouts/application
2039
+ Rendered jinda/index.html.haml within layouts/application (Duration: 11.9ms | Allocations: 1901)
2040
+ MONGODB | [15] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2041
+ MONGODB | [15] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2042
+ MONGODB | [16] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2043
+ MONGODB | [16] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2044
+ MONGODB | [17] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2045
+ MONGODB | [17] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2046
+ MONGODB | [18] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2047
+ MONGODB | [18] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2048
+ Rendered layouts/lte/_header.haml (Duration: 25.0ms | Allocations: 17523)
2049
+ MONGODB | [19] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2050
+ MONGODB | [19] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2051
+ MONGODB | [20] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2052
+ MONGODB | [20] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2053
+ MONGODB | [21] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2054
+ MONGODB | [21] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2055
+ Rendered layouts/lte/_menu_mm.haml (Duration: 27.6ms | Allocations: 102203)
2056
+ MONGODB | [22] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2057
+ MONGODB | [22] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2058
+ Rendered layouts/lte/_menu.haml (Duration: 39.7ms | Allocations: 110384)
2059
+ Rendered layouts/lte/_sidebar.haml (Duration: 44.1ms | Allocations: 115266)
2060
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 54)
2061
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2062
+ Rendered layout layouts/application.haml (Duration: 88.8ms | Allocations: 135858)
2063
+ Completed 200 OK in 92ms (Views: 91.2ms | MongoDB: 0.0ms | Allocations: 136182)
2064
+
2065
+
2066
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82900 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:26.041 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>8, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0017935004> new=#<Mongo::Server:Description:0x97140 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d2a7be138d0ce8e57e01a'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-04 23:18:36.039 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0017804253200000002>>
2067
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2068
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2069
+ MONGODB | Topology type 'Single' changed to type 'Single'.
2070
+ Started GET "/sessions/new" for 172.20.0.1 at 2022-12-04 23:18:46 +0000
2071
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2072
+ Processing by SessionsController#new as HTML
2073
+ Rendering layout layouts/application.haml
2074
+ Rendering sessions/new.html.haml within layouts/application
2075
+ Rendered sessions/new.html.haml within layouts/application (Duration: 6.0ms | Allocations: 10030)
2076
+ MONGODB | [23] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2077
+ MONGODB | [23] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2078
+ MONGODB | [24] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2079
+ MONGODB | [24] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2080
+ MONGODB | [25] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2081
+ MONGODB | [25] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2082
+ MONGODB | [26] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2083
+ MONGODB | [26] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2084
+ Rendered layouts/lte/_header.haml (Duration: 18.4ms | Allocations: 17811)
2085
+ MONGODB | [27] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2086
+ MONGODB | [27] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2087
+ MONGODB | [28] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2088
+ MONGODB | [28] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2089
+ MONGODB | [29] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2090
+ MONGODB | [29] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2091
+ Rendered layouts/lte/_menu_mm.haml (Duration: 23.4ms | Allocations: 102191)
2092
+ MONGODB | [30] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"K_6VsFCYTnmbCbGARRnPKQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2093
+ MONGODB | [30] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2094
+ Rendered layouts/lte/_menu.haml (Duration: 34.3ms | Allocations: 110366)
2095
+ Rendered layouts/lte/_sidebar.haml (Duration: 38.2ms | Allocations: 115248)
2096
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 36)
2097
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2098
+ Rendered layout layouts/application.haml (Duration: 67.9ms | Allocations: 143907)
2099
+ Completed 200 OK in 71ms (Views: 70.3ms | MongoDB: 0.0ms | Allocations: 144668)
2100
+
2101
+
2102
+ Started POST "/auth/identity/callback" for 172.20.0.1 at 2022-12-04 23:18:52 +0000
2103
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2104
+ MONGODB | [31] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2105
+ MONGODB | [31] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2106
+ Processing by SessionsController#create as HTML
2107
+ Parameters: {"authenticity_token"=>"[FILTERED]", "auth_key"=>"[FILTERED]", "password"=>"[FILTERED]", "provider"=>"identity"}
2108
+ MONGODB | [32] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"uid"=>"638d2aab0da75100170a5a75", "provider"=>"identity", "email"=>"admin@test.com"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2109
+ MONGODB | [32] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2110
+ Unpermitted parameters: :authenticity_token, :auth_key, :password, :provider. Context: { controller: SessionsController, action: create, request: #<ActionDispatch::Request:0x0000ffff8c956370>, params: {"authenticity_token"=>"[FILTERED]", "auth_key"=>"[FILTERED]", "password"=>"[FILTERED]", "controller"=>"sessions", "action"=>"create", "provider"=>"identity"} }
2111
+ Redirected to http://localhost:3000/
2112
+ Completed 302 Found in 6ms (MongoDB: 0.0ms | Allocations: 3316)
2113
+
2114
+
2115
+ Started GET "/" for 172.20.0.1 at 2022-12-04 23:18:52 +0000
2116
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2117
+ Processing by JindaController#index as HTML
2118
+ Rendering layout layouts/application.haml
2119
+ Rendering jinda/index.html.haml within layouts/application
2120
+ Rendered jinda/index.html.haml within layouts/application (Duration: 7.5ms | Allocations: 1889)
2121
+ MONGODB | [33] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2122
+ MONGODB | [33] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2123
+ Rendered layouts/lte/_header.haml (Duration: 3.1ms | Allocations: 2549)
2124
+ MONGODB | [34] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2125
+ MONGODB | [34] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2126
+ Rendered layouts/lte/_menu_mm.haml (Duration: 21.5ms | Allocations: 102258)
2127
+ Rendered layouts/lte/_menu.haml (Duration: 22.3ms | Allocations: 102403)
2128
+ Rendered layouts/lte/_sidebar.haml (Duration: 23.2ms | Allocations: 102531)
2129
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 55)
2130
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2131
+ Rendered layout layouts/application.haml (Duration: 39.6ms | Allocations: 108140)
2132
+ Completed 200 OK in 41ms (Views: 41.2ms | MongoDB: 0.0ms | Allocations: 108471)
2133
+
2134
+
2135
+ Started GET "/logout" for 172.20.0.1 at 2022-12-04 23:19:53 +0000
2136
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2137
+ Processing by SessionsController#destroy as HTML
2138
+ Rendering inline template
2139
+ Rendered inline template (Duration: 0.3ms | Allocations: 150)
2140
+ Completed 200 OK in 28ms (Views: 27.4ms | MongoDB: 0.0ms | Allocations: 16035)
2141
+
2142
+
2143
+ Started GET "/" for 172.20.0.1 at 2022-12-04 23:19:53 +0000
2144
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2145
+ Processing by JindaController#index as HTML
2146
+ Rendering layout layouts/application.haml
2147
+ Rendering jinda/index.html.haml within layouts/application
2148
+ Rendered jinda/index.html.haml within layouts/application (Duration: 18.7ms | Allocations: 1884)
2149
+ Rendered layouts/lte/_header.haml (Duration: 5.8ms | Allocations: 2499)
2150
+ MONGODB | [35] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2151
+ MONGODB | [35] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2152
+ Rendered layouts/lte/_menu_mm.haml (Duration: 24.7ms | Allocations: 102549)
2153
+ Rendered layouts/lte/_menu.haml (Duration: 27.5ms | Allocations: 102700)
2154
+ Rendered layouts/lte/_sidebar.haml (Duration: 28.7ms | Allocations: 103892)
2155
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 54)
2156
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2157
+ Rendered layout layouts/application.haml (Duration: 61.2ms | Allocations: 109433)
2158
+ Completed 200 OK in 64ms (Views: 63.2ms | MongoDB: 0.0ms | Allocations: 109758)
2159
+
2160
+
2161
+ Started GET "/sessions/new" for 172.20.0.1 at 2022-12-04 23:19:56 +0000
2162
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2163
+ Processing by SessionsController#new as HTML
2164
+ Rendering layout layouts/application.haml
2165
+ Rendering sessions/new.html.haml within layouts/application
2166
+ Rendered sessions/new.html.haml within layouts/application (Duration: 1.4ms | Allocations: 1099)
2167
+ Rendered layouts/lte/_header.haml (Duration: 11.6ms | Allocations: 2929)
2168
+ MONGODB | [36] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2169
+ MONGODB | [36] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2170
+ Rendered layouts/lte/_menu_mm.haml (Duration: 24.1ms | Allocations: 102544)
2171
+ Rendered layouts/lte/_menu.haml (Duration: 25.0ms | Allocations: 102688)
2172
+ Rendered layouts/lte/_sidebar.haml (Duration: 26.7ms | Allocations: 103880)
2173
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 36)
2174
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2175
+ Rendered layout layouts/application.haml (Duration: 47.0ms | Allocations: 108711)
2176
+ Completed 200 OK in 50ms (Views: 49.8ms | MongoDB: 0.0ms | Allocations: 109034)
2177
+
2178
+
2179
+ Started POST "/auth/identity/callback" for 172.20.0.1 at 2022-12-04 23:19:59 +0000
2180
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2181
+ MONGODB | [37] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2182
+ MONGODB | [37] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2183
+ Processing by SessionsController#create as HTML
2184
+ Parameters: {"authenticity_token"=>"[FILTERED]", "auth_key"=>"[FILTERED]", "password"=>"[FILTERED]", "provider"=>"identity"}
2185
+ MONGODB | [38] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"uid"=>"638d2aab0da75100170a5a75", "provider"=>"identity", "email"=>"admin@test.com"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2186
+ MONGODB | [38] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2187
+ Unpermitted parameters: :authenticity_token, :auth_key, :password, :provider. Context: { controller: SessionsController, action: create, request: #<ActionDispatch::Request:0x0000ffff8c46a000>, params: {"authenticity_token"=>"[FILTERED]", "auth_key"=>"[FILTERED]", "password"=>"[FILTERED]", "controller"=>"sessions", "action"=>"create", "provider"=>"identity"} }
2188
+ Redirected to http://localhost:3000/
2189
+ Completed 302 Found in 6ms (MongoDB: 0.0ms | Allocations: 3119)
2190
+
2191
+
2192
+ Started GET "/" for 172.20.0.1 at 2022-12-04 23:19:59 +0000
2193
+ Cannot render console from 172.20.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2194
+ Processing by JindaController#index as HTML
2195
+ Rendering layout layouts/application.haml
2196
+ Rendering jinda/index.html.haml within layouts/application
2197
+ Rendered jinda/index.html.haml within layouts/application (Duration: 7.8ms | Allocations: 1884)
2198
+ MONGODB | [39] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2199
+ MONGODB | [39] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2200
+ Rendered layouts/lte/_header.haml (Duration: 3.7ms | Allocations: 4224)
2201
+ MONGODB | [40] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0x5b355ad8f33f4abf...>}}
2202
+ MONGODB | [40] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2203
+ Rendered layouts/lte/_menu_mm.haml (Duration: 22.7ms | Allocations: 102248)
2204
+ Rendered layouts/lte/_menu.haml (Duration: 24.0ms | Allocations: 102392)
2205
+ Rendered layouts/lte/_sidebar.haml (Duration: 25.3ms | Allocations: 102520)
2206
+ Rendered layouts/lte/_flash.haml (Duration: 0.1ms | Allocations: 54)
2207
+ Rendered layouts/lte/_footer.haml (Duration: 0.0ms | Allocations: 18)
2208
+ Rendered layout layouts/application.haml (Duration: 42.6ms | Allocations: 109812)
2209
+ Completed 200 OK in 44ms (Views: 44.2ms | MongoDB: 0.0ms | Allocations: 110130)
2210
+
2211
+
2212
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
2213
+ MONGODB | Topology type 'unknown' initializing.
2214
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[mongodb:27017]>
2215
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
2216
+ MONGODB | EVENT: #<ServerOpening address=mongodb:27017 topology=Unknown[mongodb:27017]>
2217
+ MONGODB | Server mongodb:27017 initializing.
2218
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[mongodb:27017] servers=[#<Server address=mongodb:27017 UNKNOWN>]>
2219
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67560 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d36aeac4f9862655fb72c'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-05 00:09:34.705 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.00188625>>
2220
+ MONGODB | Server description for mongodb:27017 changed from 'unknown' to 'standalone'.
2221
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[mongodb:27017] new=Single[mongodb:27017]>
2222
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
2223
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
2224
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d36aeac4f9862655fb72c'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-05 00:09:34.705 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.00188625> new=#<Mongo::Server:Description:0x67640 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638d36aeac4f9862655fb72c'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-05 00:09:34.71 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>4, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0016553666>>
2225
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2226
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2227
+ MONGODB | Topology type 'Single' changed to type 'Single'.
2228
+ MONGODB | [7] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xc7bf97974a034419...>}}
2229
+ MONGODB | [7] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2230
+ MONGODB | [8] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xc7bf97974a034419...>}}
2231
+ MONGODB | [8] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2232
+ MONGODB | [9] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xc7bf97974a034419...>}}
2233
+ MONGODB | [9] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2234
+ MONGODB | [10] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xc7bf97974a034419...>}}
2235
+ MONGODB | [10] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2236
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
2237
+ MONGODB | Topology type 'unknown' initializing.
2238
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[mongodb:27017]>
2239
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
2240
+ MONGODB | EVENT: #<ServerOpening address=mongodb:27017 topology=Unknown[mongodb:27017]>
2241
+ MONGODB | Server mongodb:27017 initializing.
2242
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[mongodb:27017] servers=[#<Server address=mongodb:27017 UNKNOWN>]>
2243
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67560 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:31.806 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0026325>>
2244
+ MONGODB | Server description for mongodb:27017 changed from 'unknown' to 'standalone'.
2245
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[mongodb:27017] new=Single[mongodb:27017]>
2246
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
2247
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
2248
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x67540 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:31.806 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>2, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0026325> new=#<Mongo::Server:Description:0x67640 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:31.811 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>4, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.00224905>>
2249
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2250
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2251
+ MONGODB | Topology type 'Single' changed to type 'Single'.
2252
+ MONGODB | [7] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2253
+ MONGODB | [7] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2254
+ MONGODB | [8] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2255
+ MONGODB | [8] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2256
+ MONGODB | [9] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"admin@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2257
+ MONGODB | [9] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2258
+ MONGODB | [10] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638ecd60fef48d0017ab2ac7'), "code"=>"admin", "email"=>"admin@test.com", "password_digest"=>"$2a$12$hzNh/imuca7RpcS1nIhCg.TZYcqbbtVWagn.TZr54n41DhAW4LnmG"}], "lsid"=>{"id"=...
2259
+ MONGODB | [10] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.006s
2260
+ MONGODB | [11] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2261
+ MONGODB | [11] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2262
+ MONGODB | [12] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638ecd60fef48d0017ab2ac8'), "provider"=>"identity", "uid"=>"638ecd60fef48d0017ab2ac7", "code"=>"admin", "email"=>"admin@test.com", "role"=>"M,A,D", "image"=>"https://user-image...
2263
+ MONGODB | [12] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.006s
2264
+ MONGODB | [13] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2265
+ MONGODB | [13] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2266
+ MONGODB | [14] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2267
+ MONGODB | [14] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2268
+ MONGODB | [15] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"email"=>"tester@test.com"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2269
+ MONGODB | [15] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2270
+ MONGODB | [16] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"identities", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638ecd60fef48d0017ab2ac9'), "code"=>"tester", "email"=>"tester@test.com", "password_digest"=>"$2a$12$GMqRGvyafsPjjG.Bf47SOeTxedvTQkt2ungf8BFWSwyebVBfLO8de"}], "lsid"=>{"id...
2271
+ MONGODB | [16] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.001s
2272
+ MONGODB | [17] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2273
+ MONGODB | [17] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2274
+ MONGODB | [18] mongodb:27017 #1 | shop263603_development.insert | STARTED | {"insert"=>"users", "ordered"=>true, "documents"=>[{"_id"=>BSON::ObjectId('638ecd60fef48d0017ab2aca'), "provider"=>"identity", "uid"=>"638ecd60fef48d0017ab2ac9", "code"=>"tester", "email"=>"tester@test.com", "role"=>"M", "image"=>"https://www.manatees...
2275
+ MONGODB | [18] mongodb:27017 | shop263603_development.insert | SUCCEEDED | 0.001s
2276
+ MONGODB | [19] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"admin"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2277
+ MONGODB | [19] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2278
+ MONGODB | [20] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"identities", "filter"=>{"code"=>"tester"}, "projection"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x67700 type=uuid data=0xcb3d6b3cd8364d11...>}}
2279
+ MONGODB | [20] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2280
+ Started GET "/" for 172.21.0.1 at 2022-12-06 05:04:52 +0000
2281
+ Cannot render console from 172.21.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
2282
+ Processing by JindaController#index as HTML
2283
+ Rendering layout layouts/application.haml
2284
+ Rendering jinda/index.html.haml within layouts/application
2285
+ Rendered jinda/index.html.haml within layouts/application (Duration: 32.7ms | Allocations: 14235)
2286
+ MONGODB | EVENT: #<TopologyOpening topology=Unknown[]>
2287
+ MONGODB | Topology type 'unknown' initializing.
2288
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[] new=Unknown[mongodb:27017]>
2289
+ MONGODB | Topology type 'Unknown' changed to type 'Unknown'.
2290
+ MONGODB | EVENT: #<ServerOpening address=mongodb:27017 topology=Unknown[mongodb:27017]>
2291
+ MONGODB | Server mongodb:27017 initializing.
2292
+ MONGODB | Waiting for up to 30.00 seconds for servers to be scanned: #<Cluster topology=Unknown[mongodb:27017] servers=[#<Server address=mongodb:27017 UNKNOWN>]>
2293
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82820 config={} average_round_trip_time=> new=#<Mongo::Server:Description:0x82800 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:52.651 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.002051917>>
2294
+ MONGODB | Server description for mongodb:27017 changed from 'unknown' to 'standalone'.
2295
+ MONGODB | EVENT: #<TopologyChanged prev=Unknown[mongodb:27017] new=Single[mongodb:27017]>
2296
+ MONGODB | Topology type 'Unknown' changed to type 'Single'.
2297
+ The criteria cache has been deprecated and will be removed in Mongoid 8. Please enable the Mongoid QueryCache to have caching functionality.
2298
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82800 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:52.651 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.002051917> new=#<Mongo::Server:Description:0x82900 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:52.657 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>8, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0017264586>>
2299
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2300
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2301
+ MONGODB | Topology type 'Single' changed to type 'Single'.
2302
+ MONGODB | [7] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2303
+ MONGODB | [7] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2304
+ MONGODB | [8] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2305
+ MONGODB | [8] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2306
+ MONGODB | [9] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2307
+ MONGODB | [9] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2308
+ MONGODB | [10] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2309
+ MONGODB | [10] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2310
+ Rendered layouts/lte/_header.haml (Duration: 73.4ms | Allocations: 62395)
2311
+ MONGODB | [11] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2312
+ MONGODB | [11] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2313
+ MONGODB | [12] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2314
+ MONGODB | [12] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2315
+ MONGODB | [13] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"jinda_modules", "filter"=>{}, "sort"=>{"seq"=>1}, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2316
+ MONGODB | [13] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.001s
2317
+ Rendered layouts/lte/_menu_mm.haml (Duration: 47.3ms | Allocations: 114721)
2318
+ MONGODB | [14] mongodb:27017 #1 | shop263603_development.find | STARTED | {"find"=>"users", "filter"=>{"auth_token"=>"m4DA8xcmfn4ksYIMJr7inQ"}, "sort"=>{"_id"=>1}, "limit"=>1, "lsid"=>{"id"=><BSON::Binary:0x82960 type=uuid data=0xb867da7a604b48cc...>}}
2319
+ MONGODB | [14] mongodb:27017 | shop263603_development.find | SUCCEEDED | 0.000s
2320
+ Rendered layouts/lte/_menu.haml (Duration: 59.5ms | Allocations: 131518)
2321
+ Rendered layouts/lte/_sidebar.haml (Duration: 73.2ms | Allocations: 171147)
2322
+ Rendered layouts/lte/_flash.haml (Duration: 4.1ms | Allocations: 3847)
2323
+ Rendered layouts/lte/_footer.haml (Duration: 3.4ms | Allocations: 3123)
2324
+ Rendered layout layouts/application.haml (Duration: 198.8ms | Allocations: 263216)
2325
+ Completed 200 OK in 220ms (Views: 209.2ms | MongoDB: 0.0ms | Allocations: 265338)
2326
+
2327
+
2328
+ MONGODB | EVENT: #<ServerDescriptionChanged address=mongodb:27017 topology=Single[mongodb:27017] prev=#<Mongo::Server:Description:0x82900 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:04:52.657 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>8, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.0017264586> new=#<Mongo::Server:Description:0x90100 config={"ismaster"=>true, "topologyVersion"=>{"processId"=>BSON::ObjectId('638ecd4ea3cfba04d3ec0cf6'), "counter"=>0}, "maxBsonObjectSize"=>16777216, "maxMessageSizeBytes"=>48000000, "maxWriteBatchSize"=>100000, "localTime"=>2022-12-06 05:05:02.655 UTC, "logicalSessionTimeoutMinutes"=>30, "connectionId"=>6, "minWireVersion"=>0, "maxWireVersion"=>17, "readOnly"=>false, "ok"=>1.0} average_round_trip_time=0.00159320008>>
2329
+ MONGODB | Server description for mongodb:27017 changed from 'standalone' to 'standalone'.
2330
+ MONGODB | EVENT: #<TopologyChanged prev=Single[mongodb:27017] new=Single[mongodb:27017]>
2331
+ MONGODB | Topology type 'Single' changed to type 'Single'.