cuboid 0.0.5 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (778) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -0
  3. data/README.md +13 -13
  4. data/cuboid.gemspec +1 -5
  5. data/lib/cuboid/application.rb +10 -10
  6. data/lib/cuboid/option_groups/{dispatcher.rb → agent.rb} +10 -10
  7. data/lib/cuboid/option_groups/paths.rb +1 -1
  8. data/lib/cuboid/options.rb +1 -1
  9. data/lib/cuboid/processes/{dispatchers.rb → agents.rb} +25 -25
  10. data/lib/cuboid/processes/executables/agent.rb +5 -0
  11. data/lib/cuboid/processes/helpers/agents.rb +23 -0
  12. data/lib/cuboid/processes/helpers/instances.rb +4 -4
  13. data/lib/cuboid/processes/helpers.rb +1 -1
  14. data/lib/cuboid/processes/instances.rb +9 -9
  15. data/lib/cuboid/processes/schedulers.rb +2 -2
  16. data/lib/cuboid/processes.rb +2 -2
  17. data/lib/cuboid/report.rb +1 -0
  18. data/lib/cuboid/rest/server/instance_helpers.rb +13 -13
  19. data/lib/cuboid/rest/server/routes/dispatcher.rb +11 -11
  20. data/lib/cuboid/rest/server/routes/grid.rb +8 -8
  21. data/lib/cuboid/rest/server/routes/instances.rb +1 -1
  22. data/lib/cuboid/rest/server.rb +5 -5
  23. data/lib/cuboid/rpc/client/{dispatcher.rb → agent.rb} +4 -4
  24. data/lib/cuboid/rpc/client/instance.rb +2 -2
  25. data/lib/cuboid/rpc/client.rb +1 -1
  26. data/lib/cuboid/rpc/server/agent/node.rb +247 -0
  27. data/lib/cuboid/rpc/server/{dispatcher → agent}/service.rb +13 -13
  28. data/lib/cuboid/rpc/server/{dispatcher.rb → agent.rb} +45 -38
  29. data/lib/cuboid/rpc/server/application_wrapper.rb +2 -1
  30. data/lib/cuboid/rpc/server/instance.rb +4 -4
  31. data/lib/cuboid/rpc/server/scheduler.rb +12 -12
  32. data/lib/cuboid.rb +0 -3
  33. data/lib/version +1 -1
  34. data/spec/cuboid/option_groups/dispatcher_spec.rb +2 -2
  35. data/spec/cuboid/rest/server_spec.rb +46 -46
  36. data/spec/cuboid/rpc/client/dispatcher_spec.rb +2 -2
  37. data/spec/cuboid/rpc/server/agent/node_spec.rb +222 -0
  38. data/spec/cuboid/rpc/server/{dispatcher → agent}/service_spec.rb +16 -16
  39. data/spec/cuboid/rpc/server/{dispatcher_spec.rb → agent_spec.rb} +103 -95
  40. data/spec/cuboid/rpc/server/scheduler_spec.rb +8 -8
  41. data/spec/support/fixtures/executables/node.rb +3 -3
  42. data/spec/support/fixtures/mock_app/test_service.rb +8 -8
  43. data/spec/support/fixtures/mock_app.rb +1 -1
  44. data/spec/support/fixtures/services/echo.rb +6 -6
  45. data/spec/support/helpers/resets.rb +1 -1
  46. data/spec/support/lib/web_server_client.rb +2 -2
  47. data/spec/support/lib/web_server_dispatcher.rb +1 -1
  48. data/spec/support/logs/Agent - 1797289-46860.log +6 -0
  49. data/spec/support/logs/Agent - 1797295-27499.log +11 -0
  50. data/spec/support/logs/Agent - 1797297-3144.log +11 -0
  51. data/spec/support/logs/Agent - 1797379-31898.log +6 -0
  52. data/spec/support/logs/Agent - 1797386-37553.log +11 -0
  53. data/spec/support/logs/Agent - 1797390-46182.log +11 -0
  54. data/spec/support/logs/Agent - 1797487-7120.log +11 -0
  55. data/spec/support/logs/Agent - 1797492-19266.log +11 -0
  56. data/spec/support/logs/Agent - 1797535-15905.log +6 -0
  57. data/spec/support/logs/Agent - 1797540-32892.log +16 -0
  58. data/spec/support/logs/Agent - 1797542-59822.log +14 -0
  59. data/spec/support/logs/Agent - 1797547-57893.log +10 -0
  60. data/spec/support/logs/Agent - 1797558-26026.log +11 -0
  61. data/spec/support/logs/Agent - 1797560-6022.log +11 -0
  62. data/spec/support/logs/Agent - 1797592-36797.log +6 -0
  63. data/spec/support/logs/Agent - 1797598-8455.log +16 -0
  64. data/spec/support/logs/Agent - 1797600-56813.log +14 -0
  65. data/spec/support/logs/Agent - 1797604-47328.log +10 -0
  66. data/spec/support/logs/Agent - 1797611-25674.log +16 -0
  67. data/spec/support/logs/Agent - 1797613-63564.log +14 -0
  68. data/spec/support/logs/Agent - 1797622-56082.log +10 -0
  69. data/spec/support/logs/Agent - 1797632-63113.log +16 -0
  70. data/spec/support/logs/Agent - 1797640-55358.log +14 -0
  71. data/spec/support/logs/Agent - 1797644-19227.log +10 -0
  72. data/spec/support/logs/Agent - 1797649-4273.log +16 -0
  73. data/spec/support/logs/Agent - 1797651-45800.log +14 -0
  74. data/spec/support/logs/Agent - 1797655-44436.log +10 -0
  75. data/spec/support/logs/Agent - 1797663-8070.log +16 -0
  76. data/spec/support/logs/Agent - 1797667-56769.log +14 -0
  77. data/spec/support/logs/Agent - 1797671-53005.log +10 -0
  78. data/spec/support/logs/Agent - 1797678-6376.log +6 -0
  79. data/spec/support/logs/Agent - 1797680-53067.log +6 -0
  80. data/spec/support/logs/Agent - 1797684-1440.log +6 -0
  81. data/spec/support/logs/Agent - 1797688-2251.log +6 -0
  82. data/spec/support/logs/Agent - 1797698-41295.log +6 -0
  83. data/spec/support/logs/Agent - 1797702-50250.log +6 -0
  84. data/spec/support/logs/Agent - 1797707-29900.log +6 -0
  85. data/spec/support/logs/Agent - 1797718-49346.log +6 -0
  86. data/spec/support/logs/Agent - 1797726-15376.log +6 -0
  87. data/spec/support/logs/Agent - 1797745-40056.log +6 -0
  88. data/spec/support/logs/Agent - 1797804-62957.log +17 -0
  89. data/spec/support/logs/Agent - 1797821-21500.log +15 -0
  90. data/spec/support/logs/Agent - 1797832-1983.log +11 -0
  91. data/spec/support/logs/Agent - 1797939-12833.log +17 -0
  92. data/spec/support/logs/Agent - 1797952-60103.log +15 -0
  93. data/spec/support/logs/Agent - 1797960-13475.log +11 -0
  94. data/spec/support/logs/Agent - 1798019-61496.log +17 -0
  95. data/spec/support/logs/Agent - 1798033-46806.log +15 -0
  96. data/spec/support/logs/Agent - 1798041-8155.log +11 -0
  97. data/spec/support/logs/Agent - 1798099-42581.log +17 -0
  98. data/spec/support/logs/Agent - 1798113-6252.log +15 -0
  99. data/spec/support/logs/Agent - 1798121-58237.log +11 -0
  100. data/spec/support/logs/Agent - 1798182-15586.log +16 -0
  101. data/spec/support/logs/Agent - 1798197-41430.log +14 -0
  102. data/spec/support/logs/Agent - 1798205-23172.log +10 -0
  103. data/spec/support/logs/Agent - 1798248-46908.log +6 -0
  104. data/spec/support/logs/Agent - 1798253-25994.log +16 -0
  105. data/spec/support/logs/Agent - 1798255-19341.log +14 -0
  106. data/spec/support/logs/Agent - 1798261-4788.log +10 -0
  107. data/spec/support/logs/Agent - 1798270-2955.log +16 -0
  108. data/spec/support/logs/Agent - 1798277-35029.log +14 -0
  109. data/spec/support/logs/Agent - 1798283-51766.log +10 -0
  110. data/spec/support/logs/Agent - 1798294-27029.log +16 -0
  111. data/spec/support/logs/Agent - 1798296-19420.log +14 -0
  112. data/spec/support/logs/Agent - 1798301-49988.log +10 -0
  113. data/spec/support/logs/Agent - 1798306-62835.log +16 -0
  114. data/spec/support/logs/Agent - 1798308-5619.log +14 -0
  115. data/spec/support/logs/Agent - 1798317-13936.log +10 -0
  116. data/spec/support/logs/Agent - 1798325-24989.log +16 -0
  117. data/spec/support/logs/Agent - 1798329-59694.log +14 -0
  118. data/spec/support/logs/Agent - 1798333-7693.log +10 -0
  119. data/spec/support/logs/Agent - 1798339-9797.log +6 -0
  120. data/spec/support/logs/Agent - 1798341-47566.log +6 -0
  121. data/spec/support/logs/Agent - 1798345-57649.log +6 -0
  122. data/spec/support/logs/Agent - 1798349-1601.log +6 -0
  123. data/spec/support/logs/Agent - 1798365-33727.log +6 -0
  124. data/spec/support/logs/Agent - 1798369-47048.log +6 -0
  125. data/spec/support/logs/Agent - 1798373-39436.log +6 -0
  126. data/spec/support/logs/Agent - 1798380-22295.log +6 -0
  127. data/spec/support/logs/Agent - 1798384-54448.log +6 -0
  128. data/spec/support/logs/Agent - 1798401-25598.log +6 -0
  129. data/spec/support/logs/Agent - 1798464-60577.log +16 -0
  130. data/spec/support/logs/Agent - 1798476-32013.log +14 -0
  131. data/spec/support/logs/Agent - 1798488-17640.log +10 -0
  132. data/spec/support/logs/Agent - 1798516-32546.log +16 -0
  133. data/spec/support/logs/Agent - 1798526-32438.log +14 -0
  134. data/spec/support/logs/Agent - 1798533-62298.log +10 -0
  135. data/spec/support/logs/Agent - 1798543-21098.log +16 -0
  136. data/spec/support/logs/Agent - 1798555-25891.log +14 -0
  137. data/spec/support/logs/Agent - 1798562-34080.log +10 -0
  138. data/spec/support/logs/Agent - 1798606-52034.log +10 -0
  139. data/spec/support/logs/Agent - 1798608-43174.log +10 -0
  140. data/spec/support/logs/Agent - 1798610-14773.log +16 -0
  141. data/spec/support/logs/Agent - 1798614-18350.log +14 -0
  142. data/spec/support/logs/Agent - 1798621-4674.log +10 -0
  143. data/spec/support/logs/Agent - 1798645-52114.log +6 -0
  144. data/spec/support/logs/Agent - 1798650-42695.log +6 -0
  145. data/spec/support/logs/Agent - 1798661-51655.log +7 -0
  146. data/spec/support/logs/Agent - 1798680-43699.log +6 -0
  147. data/spec/support/logs/Agent - 1798687-63896.log +16 -0
  148. data/spec/support/logs/Agent - 1798691-57598.log +14 -0
  149. data/spec/support/logs/Agent - 1798701-14752.log +10 -0
  150. data/spec/support/logs/Agent - 1798708-25763.log +16 -0
  151. data/spec/support/logs/Agent - 1798710-32797.log +14 -0
  152. data/spec/support/logs/Agent - 1798714-28009.log +10 -0
  153. data/spec/support/logs/Agent - 1798724-41047.log +16 -0
  154. data/spec/support/logs/Agent - 1798726-55249.log +14 -0
  155. data/spec/support/logs/Agent - 1798735-6516.log +10 -0
  156. data/spec/support/logs/Agent - 1798743-54492.log +16 -0
  157. data/spec/support/logs/Agent - 1798745-3549.log +14 -0
  158. data/spec/support/logs/Agent - 1798749-63028.log +10 -0
  159. data/spec/support/logs/Agent - 1798759-46764.log +16 -0
  160. data/spec/support/logs/Agent - 1798763-20439.log +14 -0
  161. data/spec/support/logs/Agent - 1798767-24602.log +10 -0
  162. data/spec/support/logs/Agent - 1798773-21120.log +6 -0
  163. data/spec/support/logs/Agent - 1798775-30653.log +7 -0
  164. data/spec/support/logs/Agent - 1798794-13970.log +6 -0
  165. data/spec/support/logs/Agent - 1798799-61184.log +16 -0
  166. data/spec/support/logs/Agent - 1798801-17972.log +14 -0
  167. data/spec/support/logs/Agent - 1798805-20634.log +10 -0
  168. data/spec/support/logs/Agent - 1798812-2372.log +16 -0
  169. data/spec/support/logs/Agent - 1798814-56878.log +14 -0
  170. data/spec/support/logs/Agent - 1798824-62001.log +10 -0
  171. data/spec/support/logs/Agent - 1798835-39880.log +16 -0
  172. data/spec/support/logs/Agent - 1798837-61826.log +14 -0
  173. data/spec/support/logs/Agent - 1798841-16507.log +10 -0
  174. data/spec/support/logs/Agent - 1798846-48234.log +16 -0
  175. data/spec/support/logs/Agent - 1798848-5064.log +14 -0
  176. data/spec/support/logs/Agent - 1798853-31760.log +10 -0
  177. data/spec/support/logs/Agent - 1798866-50670.log +16 -0
  178. data/spec/support/logs/Agent - 1798870-45487.log +14 -0
  179. data/spec/support/logs/Agent - 1798874-52084.log +10 -0
  180. data/spec/support/logs/Agent - 1798880-36517.log +6 -0
  181. data/spec/support/logs/Agent - 1798882-40177.log +6 -0
  182. data/spec/support/logs/Agent - 1798886-7030.log +6 -0
  183. data/spec/support/logs/Agent - 1798895-7798.log +6 -0
  184. data/spec/support/logs/Agent - 1798906-43816.log +6 -0
  185. data/spec/support/logs/Agent - 1798910-18160.log +6 -0
  186. data/spec/support/logs/Agent - 1798916-29506.log +6 -0
  187. data/spec/support/logs/Agent - 1798920-21682.log +6 -0
  188. data/spec/support/logs/Agent - 1798926-45303.log +6 -0
  189. data/spec/support/logs/Agent - 1798950-17451.log +6 -0
  190. data/spec/support/logs/Agent - 1799005-32280.log +16 -0
  191. data/spec/support/logs/Agent - 1799017-9877.log +14 -0
  192. data/spec/support/logs/Agent - 1799024-65347.log +10 -0
  193. data/spec/support/logs/Agent - 1799051-25939.log +16 -0
  194. data/spec/support/logs/Agent - 1799061-59062.log +14 -0
  195. data/spec/support/logs/Agent - 1799074-49397.log +10 -0
  196. data/spec/support/logs/Agent - 1799083-27497.log +16 -0
  197. data/spec/support/logs/Agent - 1799096-40902.log +14 -0
  198. data/spec/support/logs/Agent - 1799103-20369.log +10 -0
  199. data/spec/support/logs/Agent - 1799135-60557.log +10 -0
  200. data/spec/support/logs/Agent - 1799137-3725.log +10 -0
  201. data/spec/support/logs/Agent - 1799144-38486.log +16 -0
  202. data/spec/support/logs/Agent - 1799150-30915.log +14 -0
  203. data/spec/support/logs/Agent - 1799154-18474.log +10 -0
  204. data/spec/support/logs/Agent - 1799170-26867.log +6 -0
  205. data/spec/support/logs/Agent - 1799174-16635.log +6 -0
  206. data/spec/support/logs/Agent - 1799184-8862.log +6 -0
  207. data/spec/support/logs/Agent - 1799197-45365.log +6 -0
  208. data/spec/support/logs/Agent - 1799214-21005.log +6 -0
  209. data/spec/support/logs/Agent - 1799225-8303.log +6 -0
  210. data/spec/support/logs/Agent - 1799229-20233.log +6 -0
  211. data/spec/support/logs/Agent - 1799234-31440.log +6 -0
  212. data/spec/support/logs/Agent - 2486896-44236.log +6 -0
  213. data/spec/support/logs/Agent - 2487229-16390.log +6 -0
  214. data/spec/support/logs/Agent - 2487520-2511.log +6 -0
  215. data/spec/support/logs/Agent - 2487522-24008.log +6 -0
  216. data/spec/support/logs/Agent - 2487526-3383.log +6 -0
  217. data/spec/support/logs/Agent - 2487528-23713.log +10 -0
  218. data/spec/support/logs/Agent - 2487530-42875.log +10 -0
  219. data/spec/support/logs/Agent - 2487533-14182.log +10 -0
  220. data/spec/support/logs/Agent - 2487535-32486.log +10 -0
  221. data/spec/support/logs/Agent - 2487537-30578.log +10 -0
  222. data/spec/support/logs/Agent - 2487539-65402.log +10 -0
  223. data/spec/support/logs/Agent - 2493974-23066.log +6 -0
  224. data/spec/support/logs/Agent - 2501716-11729.log +6 -0
  225. data/spec/support/logs/Agent - 2501724-48638.log +6 -0
  226. data/spec/support/logs/Agent - 2501961-60077.log +6 -0
  227. data/spec/support/logs/Agent - 2501976-10941.log +10 -0
  228. data/spec/support/logs/Agent - 2502050-45312.log +10 -0
  229. data/spec/support/logs/Agent - 2502131-45940.log +10 -0
  230. data/spec/support/logs/Agent - 2502139-59848.log +10 -0
  231. data/spec/support/logs/Agent - 2502262-46629.log +10 -0
  232. data/spec/support/logs/Agent - 2502298-28395.log +10 -0
  233. data/spec/support/logs/Agent - 2512541-7108.log +6 -0
  234. data/spec/support/logs/Agent - 2515458-5532.log +6 -0
  235. data/spec/support/logs/Agent - 2515540-20379.log +6 -0
  236. data/spec/support/logs/Agent - 2515550-19661.log +6 -0
  237. data/spec/support/logs/Agent - 2515626-34192.log +6 -0
  238. data/spec/support/logs/Agent - 2515879-19884.log +6 -0
  239. data/spec/support/logs/Agent - 2516130-27514.log +6 -0
  240. data/spec/support/logs/Agent - 2516382-45886.log +6 -0
  241. data/spec/support/logs/Agent - 2516390-47909.log +6 -0
  242. data/spec/support/logs/Agent - 2516465-47774.log +6 -0
  243. data/spec/support/logs/Agent - 2516546-13955.log +6 -0
  244. data/spec/support/logs/Agent - 2516561-39041.log +6 -0
  245. data/spec/support/logs/Agent - 2516710-46722.log +6 -0
  246. data/spec/support/logs/Agent - 2516795-56481.log +16 -0
  247. data/spec/support/logs/Agent - 2516798-22121.log +14 -0
  248. data/spec/support/logs/Agent - 2516881-21755.log +10 -0
  249. data/spec/support/logs/Agent - 2517053-64944.log +16 -0
  250. data/spec/support/logs/Agent - 2517056-63364.log +14 -0
  251. data/spec/support/logs/Agent - 2517066-34797.log +10 -0
  252. data/spec/support/logs/Agent - 2518042-30794.log +16 -0
  253. data/spec/support/logs/Agent - 2518050-6895.log +14 -0
  254. data/spec/support/logs/Agent - 2518212-36288.log +10 -0
  255. data/spec/support/logs/Agent - 2518395-10976.log +16 -0
  256. data/spec/support/logs/Agent - 2518472-35419.log +14 -0
  257. data/spec/support/logs/Agent - 2518559-43119.log +10 -0
  258. data/spec/support/logs/Agent - 2518647-48415.log +16 -0
  259. data/spec/support/logs/Agent - 2518652-65099.log +14 -0
  260. data/spec/support/logs/Agent - 2518658-1449.log +10 -0
  261. data/spec/support/logs/Agent - 2518910-62083.log +6 -0
  262. data/spec/support/logs/Agent - 2518919-58035.log +6 -0
  263. data/spec/support/logs/Agent - 2519076-57825.log +6 -0
  264. data/spec/support/logs/Agent - 2519156-8413.log +6 -0
  265. data/spec/support/logs/Agent - 2519406-64200.log +6 -0
  266. data/spec/support/logs/Agent - 2519570-20841.log +6 -0
  267. data/spec/support/logs/Agent - 2519659-30136.log +6 -0
  268. data/spec/support/logs/Agent - 2519822-9736.log +6 -0
  269. data/spec/support/logs/Agent - 2520004-59217.log +6 -0
  270. data/spec/support/logs/Agent - 2520357-37723.log +6 -0
  271. data/spec/support/logs/Agent - 2521294-5229.log +16 -0
  272. data/spec/support/logs/Agent - 2521407-31515.log +14 -0
  273. data/spec/support/logs/Agent - 2521415-7501.log +10 -0
  274. data/spec/support/logs/Agent - 2521452-22168.log +16 -0
  275. data/spec/support/logs/Agent - 2521463-24492.log +14 -0
  276. data/spec/support/logs/Agent - 2521482-50808.log +10 -0
  277. data/spec/support/logs/Agent - 2521503-8180.log +16 -0
  278. data/spec/support/logs/Agent - 2521562-3183.log +14 -0
  279. data/spec/support/logs/Agent - 2521639-45199.log +10 -0
  280. data/spec/support/logs/Agent - 2521891-30967.log +10 -0
  281. data/spec/support/logs/Agent - 2521897-64837.log +10 -0
  282. data/spec/support/logs/Agent - 2521916-23526.log +16 -0
  283. data/spec/support/logs/Agent - 2521936-26313.log +14 -0
  284. data/spec/support/logs/Agent - 2521948-18199.log +10 -0
  285. data/spec/support/logs/Agent - 2522026-18512.log +6 -0
  286. data/spec/support/logs/Agent - 2522093-46502.log +6 -0
  287. data/spec/support/logs/Agent - 2522195-30981.log +6 -0
  288. data/spec/support/logs/Agent - 2522295-55509.log +6 -0
  289. data/spec/support/logs/Agent - 2522347-32811.log +6 -0
  290. data/spec/support/logs/Agent - 2523391-7522.log +6 -0
  291. data/spec/support/logs/Agent - 2523626-61560.log +6 -0
  292. data/spec/support/logs/Agent - 2523913-25677.log +6 -0
  293. data/spec/support/logs/Agent - 2539887-21281.log +6 -0
  294. data/spec/support/logs/Agent - 2540261-61895.log +6 -0
  295. data/spec/support/logs/Agent - 2540430-8261.log +6 -0
  296. data/spec/support/logs/Agent - 361913-24577.log +6 -0
  297. data/spec/support/logs/Agent - 362152-33398.log +6 -0
  298. data/spec/support/logs/Agent - 362154-44243.log +6 -0
  299. data/spec/support/logs/Agent - 362157-6034.log +6 -0
  300. data/spec/support/logs/Agent - 362160-38548.log +10 -0
  301. data/spec/support/logs/Agent - 362162-59176.log +10 -0
  302. data/spec/support/logs/Agent - 362165-23738.log +10 -0
  303. data/spec/support/logs/Agent - 362167-57542.log +10 -0
  304. data/spec/support/logs/Agent - 362172-22798.log +10 -0
  305. data/spec/support/logs/Agent - 362174-46609.log +10 -0
  306. data/spec/support/logs/Agent - 362398-10913.log +6 -0
  307. data/spec/support/logs/Agent - 362524-29482.log +6 -0
  308. data/spec/support/logs/Agent - 362527-40674.log +6 -0
  309. data/spec/support/logs/Agent - 362530-32963.log +6 -0
  310. data/spec/support/logs/Agent - 362532-22236.log +6 -0
  311. data/spec/support/logs/Agent - 362543-4429.log +6 -0
  312. data/spec/support/logs/Agent - 362557-7510.log +6 -0
  313. data/spec/support/logs/Agent - 362574-36915.log +6 -0
  314. data/spec/support/logs/Agent - 362576-65372.log +6 -0
  315. data/spec/support/logs/Agent - 362578-29183.log +6 -0
  316. data/spec/support/logs/Agent - 362580-43546.log +6 -0
  317. data/spec/support/logs/Agent - 362582-22254.log +6 -0
  318. data/spec/support/logs/Agent - 362588-40009.log +6 -0
  319. data/spec/support/logs/Agent - 362591-60596.log +16 -0
  320. data/spec/support/logs/Agent - 362595-3584.log +14 -0
  321. data/spec/support/logs/Agent - 362599-39016.log +10 -0
  322. data/spec/support/logs/Agent - 362606-58506.log +16 -0
  323. data/spec/support/logs/Agent - 362609-55768.log +14 -0
  324. data/spec/support/logs/Agent - 362613-37168.log +10 -0
  325. data/spec/support/logs/Agent - 362629-16593.log +16 -0
  326. data/spec/support/logs/Agent - 362632-32264.log +14 -0
  327. data/spec/support/logs/Agent - 362643-59807.log +10 -0
  328. data/spec/support/logs/Agent - 362649-40552.log +16 -0
  329. data/spec/support/logs/Agent - 362655-31144.log +14 -0
  330. data/spec/support/logs/Agent - 362660-12968.log +10 -0
  331. data/spec/support/logs/Agent - 362666-6806.log +16 -0
  332. data/spec/support/logs/Agent - 362673-39178.log +14 -0
  333. data/spec/support/logs/Agent - 362678-36132.log +10 -0
  334. data/spec/support/logs/Agent - 362685-62240.log +6 -0
  335. data/spec/support/logs/Agent - 362687-4068.log +6 -0
  336. data/spec/support/logs/Agent - 362691-48465.log +6 -0
  337. data/spec/support/logs/Agent - 362693-40295.log +6 -0
  338. data/spec/support/logs/Agent - 362705-53855.log +6 -0
  339. data/spec/support/logs/Agent - 362712-14029.log +6 -0
  340. data/spec/support/logs/Agent - 362717-3069.log +6 -0
  341. data/spec/support/logs/Agent - 362721-38670.log +6 -0
  342. data/spec/support/logs/Agent - 362725-7644.log +6 -0
  343. data/spec/support/logs/Agent - 362748-18302.log +6 -0
  344. data/spec/support/logs/Agent - 362828-61766.log +16 -0
  345. data/spec/support/logs/Agent - 362838-44693.log +14 -0
  346. data/spec/support/logs/Agent - 362847-31875.log +10 -0
  347. data/spec/support/logs/Agent - 362875-46401.log +16 -0
  348. data/spec/support/logs/Agent - 362887-52041.log +14 -0
  349. data/spec/support/logs/Agent - 362897-7426.log +10 -0
  350. data/spec/support/logs/Agent - 362908-35228.log +16 -0
  351. data/spec/support/logs/Agent - 362919-33764.log +14 -0
  352. data/spec/support/logs/Agent - 362928-1323.log +10 -0
  353. data/spec/support/logs/Agent - 362960-27883.log +10 -0
  354. data/spec/support/logs/Agent - 362964-26072.log +10 -0
  355. data/spec/support/logs/Agent - 362966-42927.log +16 -0
  356. data/spec/support/logs/Agent - 362972-56025.log +14 -0
  357. data/spec/support/logs/Agent - 362977-39574.log +10 -0
  358. data/spec/support/logs/Agent - 362992-23510.log +6 -0
  359. data/spec/support/logs/Agent - 362996-63445.log +6 -0
  360. data/spec/support/logs/Agent - 363017-59359.log +6 -0
  361. data/spec/support/logs/Agent - 363034-15682.log +6 -0
  362. data/spec/support/logs/Agent - 363050-6605.log +6 -0
  363. data/spec/support/logs/Agent - 363065-59445.log +6 -0
  364. data/spec/support/logs/Agent - 363070-6619.log +6 -0
  365. data/spec/support/logs/Agent - 363077-18731.log +6 -0
  366. data/spec/support/logs/Agent - 363250-16962.log +6 -0
  367. data/spec/support/logs/Agent - 363265-25598.log +6 -0
  368. data/spec/support/logs/Agent - 363279-50603.log +6 -0
  369. data/spec/support/logs/{Instance - 1521363-26218.error.log → Instance - 2525557-35695.error.log } +18 -18
  370. data/spec/support/logs/{Instance - 1521353-26273.error.log → Instance - 2525638-6350.error.log } +18 -18
  371. data/spec/support/logs/{Instance - 1521355-56591.error.log → Instance - 2525719-30351.error.log } +18 -18
  372. data/spec/support/logs/Instance - 363119-21886.error.log +105 -0
  373. data/spec/support/logs/Instance - 363121-31774.error.log +105 -0
  374. data/spec/support/logs/Instance - 363127-52671.error.log +105 -0
  375. data/spec/support/logs/Scheduler - 2486608-59709.log +3 -0
  376. data/spec/support/logs/Scheduler - 2486612-44110.log +27 -0
  377. data/spec/support/logs/Scheduler - 2486723-50393.log +3 -0
  378. data/spec/support/logs/Scheduler - 2486727-21620.log +27 -0
  379. data/spec/support/logs/Scheduler - 2486877-37845.log +3 -0
  380. data/spec/support/logs/Scheduler - 2486881-3624.log +1 -0
  381. data/spec/support/logs/Scheduler - 2486911-24752.log +3 -0
  382. data/spec/support/logs/Scheduler - 2486919-48535.log +27 -0
  383. data/spec/support/logs/Scheduler - 2486985-8897.log +1 -0
  384. data/spec/support/logs/Scheduler - 2487211-7516.log +3 -0
  385. data/spec/support/logs/Scheduler - 2487215-2831.log +1 -0
  386. data/spec/support/logs/Scheduler - 2487246-7826.log +3 -0
  387. data/spec/support/logs/Scheduler - 2487256-35669.log +6 -0
  388. data/spec/support/logs/Scheduler - 2487272-11542.log +4 -0
  389. data/spec/support/logs/Scheduler - 2487278-9621.log +1 -0
  390. data/spec/support/logs/Scheduler - 2487291-24094.log +3 -0
  391. data/spec/support/logs/Scheduler - 2487299-60095.log +6 -0
  392. data/spec/support/logs/Scheduler - 2487368-7706.log +3 -0
  393. data/spec/support/logs/Scheduler - 2487378-9859.log +6 -0
  394. data/spec/support/logs/Scheduler - 2487396-17812.log +3 -0
  395. data/spec/support/logs/Scheduler - 2487407-25543.log +6 -0
  396. data/spec/support/logs/Scheduler - 2487451-44767.log +4 -0
  397. data/spec/support/logs/Scheduler - 2487506-1422.log +6 -0
  398. data/spec/support/logs/Scheduler - 2487541-38068.log +1 -0
  399. data/spec/support/logs/Scheduler - 2487544-21866.log +1 -0
  400. data/spec/support/logs/Scheduler - 2487548-15245.log +1 -0
  401. data/spec/support/logs/Scheduler - 2487551-34905.log +1 -0
  402. data/spec/support/logs/Scheduler - 2487554-22142.log +1 -0
  403. data/spec/support/logs/Scheduler - 2487562-35113.log +1 -0
  404. data/spec/support/logs/Scheduler - 2487565-55125.log +3 -0
  405. data/spec/support/logs/Scheduler - 2487569-48845.log +6 -0
  406. data/spec/support/logs/Scheduler - 2487576-57192.log +4 -0
  407. data/spec/support/logs/Scheduler - 2487583-17991.log +1 -0
  408. data/spec/support/logs/Scheduler - 2487586-30014.log +1 -0
  409. data/spec/support/logs/Scheduler - 2487591-6472.log +1 -0
  410. data/spec/support/logs/Scheduler - 2487594-2195.log +1 -0
  411. data/spec/support/logs/Scheduler - 2487598-55808.log +3 -0
  412. data/spec/support/logs/Scheduler - 2487605-7400.log +1 -0
  413. data/spec/support/logs/Scheduler - 2487607-4337.log +1 -0
  414. data/spec/support/logs/Scheduler - 2487610-25835.log +1 -0
  415. data/spec/support/logs/Scheduler - 2493623-45209.log +3 -0
  416. data/spec/support/logs/Scheduler - 2493714-59407.log +1 -0
  417. data/spec/support/logs/Scheduler - 2494470-61696.log +3 -0
  418. data/spec/support/logs/Scheduler - 2494723-2810.log +6 -0
  419. data/spec/support/logs/Scheduler - 2495458-22112.log +4 -0
  420. data/spec/support/logs/Scheduler - 2496034-4076.log +1 -0
  421. data/spec/support/logs/Scheduler - 2496119-62253.log +3 -0
  422. data/spec/support/logs/Scheduler - 2496210-50380.log +6 -0
  423. data/spec/support/logs/Scheduler - 2497536-24922.log +3 -0
  424. data/spec/support/logs/Scheduler - 2497786-13515.log +6 -0
  425. data/spec/support/logs/Scheduler - 2498774-16911.log +3 -0
  426. data/spec/support/logs/Scheduler - 2498961-4742.log +6 -0
  427. data/spec/support/logs/Scheduler - 2500340-16045.log +4 -0
  428. data/spec/support/logs/Scheduler - 2500980-26158.log +6 -0
  429. data/spec/support/logs/Scheduler - 2502381-26435.log +1 -0
  430. data/spec/support/logs/Scheduler - 2502463-62965.log +1 -0
  431. data/spec/support/logs/Scheduler - 2502547-53434.log +1 -0
  432. data/spec/support/logs/Scheduler - 2502628-43720.log +1 -0
  433. data/spec/support/logs/Scheduler - 2502643-58379.log +1 -0
  434. data/spec/support/logs/Scheduler - 2502873-64893.log +1 -0
  435. data/spec/support/logs/Scheduler - 2502954-43885.log +3 -0
  436. data/spec/support/logs/Scheduler - 2503039-52147.log +6 -0
  437. data/spec/support/logs/Scheduler - 2503768-28831.log +4 -0
  438. data/spec/support/logs/Scheduler - 2504259-24533.log +1 -0
  439. data/spec/support/logs/Scheduler - 2504343-56967.log +1 -0
  440. data/spec/support/logs/Scheduler - 2504502-25085.log +1 -0
  441. data/spec/support/logs/Scheduler - 2504587-30789.log +1 -0
  442. data/spec/support/logs/Scheduler - 2504608-56601.log +3 -0
  443. data/spec/support/logs/Scheduler - 2504760-36374.log +1 -0
  444. data/spec/support/logs/Scheduler - 2504841-49675.log +1 -0
  445. data/spec/support/logs/Scheduler - 2504923-15781.log +1 -0
  446. data/spec/support/logs/Scheduler - 2532871-63847.log +16 -0
  447. data/spec/support/logs/Scheduler - 2538978-63705.log +6 -0
  448. data/spec/support/logs/Scheduler - 2539461-10579.log +6 -0
  449. data/spec/support/logs/Scheduler - 2539981-44320.log +6 -0
  450. data/spec/support/logs/Scheduler - 2540265-37672.log +3 -0
  451. data/spec/support/logs/Scheduler - 2540434-9490.log +5 -0
  452. data/spec/support/logs/Scheduler - 2540840-9957.log +1 -0
  453. data/spec/support/logs/Scheduler - 2540921-2437.log +1 -0
  454. data/spec/support/logs/Scheduler - 2540937-17100.log +1 -0
  455. data/spec/support/logs/Scheduler - 2541007-52812.log +1 -0
  456. data/spec/support/logs/Scheduler - 2541091-56468.log +1 -0
  457. data/spec/support/logs/Scheduler - 2541109-54138.log +1 -0
  458. data/spec/support/logs/Scheduler - 2541188-17918.log +1 -0
  459. data/spec/support/logs/Scheduler - 2541267-2563.log +3 -0
  460. data/spec/support/logs/Scheduler - 2541430-40675.log +3 -0
  461. data/spec/support/logs/Scheduler - 2542341-38074.log +3 -0
  462. data/spec/support/logs/Scheduler - 2542519-33069.log +3 -0
  463. data/spec/support/logs/Scheduler - 2542610-41819.log +4 -0
  464. data/spec/support/logs/Scheduler - 2543168-3708.log +1 -0
  465. data/spec/support/logs/Scheduler - 2543332-46957.log +4 -0
  466. data/spec/support/logs/Scheduler - 2543334-53034.log +1 -0
  467. data/spec/support/logs/Scheduler - 2543419-31038.log +1 -0
  468. data/spec/support/logs/Scheduler - 2543666-10481.log +16 -0
  469. data/spec/support/logs/Scheduler - 2544245-30154.log +4 -0
  470. data/spec/support/logs/Scheduler - 2544487-8113.log +1 -0
  471. data/spec/support/logs/Scheduler - 2544490-62030.log +1 -0
  472. data/spec/support/logs/Scheduler - 2544494-64830.log +1 -0
  473. data/spec/support/logs/Scheduler - 2544585-3507.log +1 -0
  474. data/spec/support/logs/Scheduler - 2544668-24185.log +3 -0
  475. data/spec/support/logs/Scheduler - 2544762-17601.log +1 -0
  476. data/spec/support/logs/Scheduler - 2544790-32379.log +1 -0
  477. data/spec/support/logs/Scheduler - 2544853-35518.log +1 -0
  478. data/spec/support/logs/Scheduler - 2544939-52525.log +1 -0
  479. data/spec/support/logs/Scheduler - 2545016-12352.log +1 -0
  480. data/spec/support/logs/Scheduler - 2545096-63001.log +1 -0
  481. data/spec/support/logs/Scheduler - 2545178-63647.log +2 -0
  482. data/spec/support/logs/Scheduler - 361893-37255.log +3 -0
  483. data/spec/support/logs/Scheduler - 361897-36090.log +1 -0
  484. data/spec/support/logs/Scheduler - 361928-44834.log +3 -0
  485. data/spec/support/logs/Scheduler - 361937-43013.log +6 -0
  486. data/spec/support/logs/Scheduler - 361956-8533.log +4 -0
  487. data/spec/support/logs/Scheduler - 361968-31856.log +1 -0
  488. data/spec/support/logs/Scheduler - 361988-37894.log +3 -0
  489. data/spec/support/logs/Scheduler - 361997-31525.log +6 -0
  490. data/spec/support/logs/Scheduler - 362037-51907.log +3 -0
  491. data/spec/support/logs/Scheduler - 362047-32758.log +6 -0
  492. data/spec/support/logs/Scheduler - 362072-11620.log +3 -0
  493. data/spec/support/logs/Scheduler - 362080-16797.log +6 -0
  494. data/spec/support/logs/Scheduler - 362124-56230.log +4 -0
  495. data/spec/support/logs/Scheduler - 362137-4746.log +6 -0
  496. data/spec/support/logs/Scheduler - 362176-32691.log +1 -0
  497. data/spec/support/logs/Scheduler - 362179-34759.log +1 -0
  498. data/spec/support/logs/Scheduler - 362183-18758.log +1 -0
  499. data/spec/support/logs/Scheduler - 362187-63438.log +1 -0
  500. data/spec/support/logs/Scheduler - 362189-35075.log +1 -0
  501. data/spec/support/logs/Scheduler - 362191-34351.log +1 -0
  502. data/spec/support/logs/Scheduler - 362195-51436.log +3 -0
  503. data/spec/support/logs/Scheduler - 362199-46884.log +6 -0
  504. data/spec/support/logs/Scheduler - 362214-12351.log +4 -0
  505. data/spec/support/logs/Scheduler - 362230-12723.log +1 -0
  506. data/spec/support/logs/Scheduler - 362233-16133.log +1 -0
  507. data/spec/support/logs/Scheduler - 362238-51103.log +1 -0
  508. data/spec/support/logs/Scheduler - 362241-20441.log +1 -0
  509. data/spec/support/logs/Scheduler - 362245-40692.log +3 -0
  510. data/spec/support/logs/Scheduler - 362251-40074.log +1 -0
  511. data/spec/support/logs/Scheduler - 362253-48087.log +1 -0
  512. data/spec/support/logs/Scheduler - 362256-27112.log +1 -0
  513. data/spec/support/logs/Scheduler - 363208-60869.log +16 -0
  514. data/spec/support/logs/Scheduler - 363231-35883.log +6 -0
  515. data/spec/support/logs/Scheduler - 363240-11734.log +6 -0
  516. data/spec/support/logs/Scheduler - 363252-28394.log +6 -0
  517. data/spec/support/logs/Scheduler - 363267-7527.log +3 -0
  518. data/spec/support/logs/Scheduler - 363282-48049.log +5 -0
  519. data/spec/support/logs/Scheduler - 363298-26965.log +1 -0
  520. data/spec/support/logs/Scheduler - 363300-14973.log +1 -0
  521. data/spec/support/logs/Scheduler - 363302-58216.log +1 -0
  522. data/spec/support/logs/Scheduler - 363304-11942.log +1 -0
  523. data/spec/support/logs/Scheduler - 363306-39654.log +1 -0
  524. data/spec/support/logs/Scheduler - 363308-57479.log +1 -0
  525. data/spec/support/logs/Scheduler - 363310-32176.log +1 -0
  526. data/spec/support/logs/Scheduler - 363314-13492.log +3 -0
  527. data/spec/support/logs/Scheduler - 363322-38112.log +3 -0
  528. data/spec/support/logs/Scheduler - 363342-26080.log +3 -0
  529. data/spec/support/logs/Scheduler - 363349-51783.log +3 -0
  530. data/spec/support/logs/Scheduler - 363355-44132.log +4 -0
  531. data/spec/support/logs/Scheduler - 363367-12160.log +1 -0
  532. data/spec/support/logs/Scheduler - 363372-28520.log +4 -0
  533. data/spec/support/logs/Scheduler - 363376-58951.log +1 -0
  534. data/spec/support/logs/Scheduler - 363379-28506.log +1 -0
  535. data/spec/support/logs/Scheduler - 363384-63536.log +16 -0
  536. data/spec/support/logs/Scheduler - 363402-32695.log +4 -0
  537. data/spec/support/logs/Scheduler - 363412-41984.log +1 -0
  538. data/spec/support/logs/Scheduler - 363414-47366.log +1 -0
  539. data/spec/support/logs/Scheduler - 363416-44368.log +1 -0
  540. data/spec/support/logs/Scheduler - 363427-29292.log +1 -0
  541. data/spec/support/logs/Scheduler - 363431-44605.log +3 -0
  542. data/spec/support/logs/Scheduler - 363439-19754.log +1 -0
  543. data/spec/support/logs/Scheduler - 363441-5762.log +1 -0
  544. data/spec/support/logs/Scheduler - 363443-4000.log +1 -0
  545. data/spec/support/logs/Scheduler - 363445-3688.log +1 -0
  546. data/spec/support/logs/Scheduler - 363448-50268.log +1 -0
  547. data/spec/support/logs/Scheduler - 363451-23104.log +1 -0
  548. data/spec/support/logs/Scheduler - 363454-12897.log +2 -0
  549. data/spec/support/logs/{error-1520329.log → error-2487640.log} +449 -449
  550. data/spec/support/logs/error-360075.log +797 -0
  551. data/spec/support/logs/output_spec_2487640.log +390 -0
  552. data/spec/support/logs/output_spec_360075.log +390 -0
  553. data/spec/support/reports/052f88c73e2d0ecf331dbf5fce0cfe3c.crf +0 -0
  554. data/spec/support/reports/06eed3dec98f5cd5fc717190a004d7d6.crf +0 -0
  555. data/spec/support/reports/0902bd88bbd4df462910007a3b5018fc.crf +0 -0
  556. data/spec/support/reports/10b9864e81e3204d1ef4940ccb88b0ed.crf +0 -0
  557. data/spec/support/reports/16b575097e68156416a84a6854d3719c.crf +0 -0
  558. data/spec/support/reports/18be00bff4371738c7c7013b284b415b.crf +0 -0
  559. data/spec/support/reports/1ca39d410c2cf1f652eb8c320d6682bd.crf +0 -0
  560. data/spec/support/reports/266a09d73152ce2f3d2951f1dab133f3.crf +0 -0
  561. data/spec/support/reports/2929bee9c126b2695dc569b693fef574.crf +0 -0
  562. data/spec/support/reports/2abd611201d06f0428f1b060b32d4839.crf +0 -0
  563. data/spec/support/reports/2b9ce956f7060163d7a0b78603dc05ca.crf +0 -0
  564. data/spec/support/reports/3254163f76b8696fa1677d18eaefce1d.crf +0 -0
  565. data/spec/support/reports/3a9e6a4fa91c901550ff295cd21d69c9.crf +0 -0
  566. data/spec/support/reports/3de18cf956e18664f441f94ee05e4118.crf +0 -0
  567. data/spec/support/reports/46bcffd844008e71c7d90a76baf8597d.crf +0 -0
  568. data/spec/support/reports/482cf0d0c54cda32bedf59b2ea995c65.crf +0 -0
  569. data/spec/support/reports/502508e3a29966200350196c9859881c.crf +0 -0
  570. data/spec/support/reports/5f0d832d46338d69b4eab6ff91ba4c91.crf +0 -0
  571. data/spec/support/reports/620287cfdc373595385cf2471e1d4523.crf +0 -0
  572. data/spec/support/reports/65d71de3b0e8c9fe894f4ba36cb4cb7c.crf +0 -0
  573. data/spec/support/reports/6754d1f86dc5544abeca7f06314ebc56.crf +0 -0
  574. data/spec/support/reports/75fecdd5e006942292e02e6a223e7279.crf +0 -0
  575. data/spec/support/reports/77523cc87357aa220c33d5604f41b5a1.crf +0 -0
  576. data/spec/support/reports/7e137bd5f71e0f0fbb63b93b87dae160.crf +0 -0
  577. data/spec/support/reports/806a17c3a40cc22eafd77c97b64a2ed5.crf +0 -0
  578. data/spec/support/reports/81cca53163bbab5ccf4d5f0401d5adcd.crf +0 -0
  579. data/spec/support/reports/8745ae8fdeb76289765582e06a614940.crf +0 -0
  580. data/spec/support/reports/8c204ee129fe1bd6c5964d29ae5d03ae.crf +0 -0
  581. data/spec/support/reports/937b7b516a99c23b2a641bb7bf695bfa.crf +0 -0
  582. data/spec/support/reports/a6eb89ffb1c33e33e421c1ee393118a9.crf +0 -0
  583. data/spec/support/reports/aadbf2c1544b0e11174853fb4883a38c.crf +0 -0
  584. data/spec/support/reports/c360a2833f3e635e69036916010edeac.crf +0 -0
  585. data/spec/support/reports/cf0bfb4662a7cda85db324936aae93d3.crf +0 -0
  586. data/spec/support/reports/cfff9c06897e28b1d58977909738c78f.crf +0 -0
  587. data/spec/support/reports/e2d5321452359193a758f7d16879ddb3.crf +0 -0
  588. data/spec/support/reports/e58c9dfbf9edeca9adcf32af5940f16b.crf +0 -0
  589. data/spec/support/reports/e96abea937f1ed3f89bc2ec5397522db.crf +0 -0
  590. data/spec/support/reports/ec0bbd4424061d305963551a29d20e1a.crf +0 -0
  591. data/spec/support/reports/f16e679098a4411d4f1c123abcd6af90.crf +0 -0
  592. data/spec/support/reports/f2c155087c431851979048ceb8c46ec9.crf +0 -0
  593. data/spec/support/reports/f3d542036e17f6a66e11bfacb2fb3366.crf +0 -0
  594. data/spec/support/reports/f72c7feef5f9c7e29f423c3ebe345ef3.crf +0 -0
  595. data/spec/support/reports/fbb2e1c6ada2d4b8229488f4c4b3b418.crf +0 -0
  596. data/spec/support/snapshots/Cuboid 2022-02-01 13_10_28 +0200 a06d9bd7db81b1b4fb077ceadcc3895f.csf +0 -0
  597. data/spec/support/snapshots/Cuboid 2022-02-01 13_10_42 +0200 36c68859faf144eed9ff9c01ae754217.csf +0 -0
  598. data/spec/support/snapshots/Cuboid 2022-02-01 13_24_42 +0200 5a26112a913330ee8763b2982a4d42df.csf +0 -0
  599. data/spec/support/snapshots/Cuboid 2022-02-01 13_24_56 +0200 190856b98ac7099eb553ed3abcfbcb87.csf +0 -0
  600. data/spec/support/snapshots/Cuboid 2022-02-01 13_35_35 +0200 a9c5229b459119840c9428a3d7c54eb1.csf +0 -0
  601. data/spec/support/snapshots/Cuboid 2022-02-01 13_35_41 +0200 d93660f71110dad136cea0758b29611e.csf +0 -0
  602. data/spec/support/snapshots/Cuboid 2022-02-01 13_35_44 +0200 57083dafa382f1d21cc33c9740861c88.csf +0 -0
  603. data/spec/support/snapshots/Cuboid 2022-02-13 07_55_57 +0200 6ff9bf8c7b70ad85fa3a42f44bcc5fe7.csf +0 -0
  604. data/spec/support/snapshots/Cuboid 2022-02-13 07_56_12 +0200 2852d4e0ae04e5365301703913f7b763.csf +0 -0
  605. data/spec/support/snapshots/Cuboid 2022-02-13 08_06_41 +0200 54da34dab4b059de90cdd33d400ccac7.csf +0 -0
  606. data/spec/support/snapshots/Cuboid 2022-02-13 08_06_46 +0200 61596bdce9318446373d1b736ec7c9ce.csf +0 -0
  607. data/spec/support/snapshots/Cuboid 2022-02-13 08_06_48 +0200 19030be87532ece27c1d4791a8d3229c.csf +0 -0
  608. data/spec/support/snapshots/Cuboid 2022-02-20 03_01_57 +0200 b03ce79d889c60483385e77cda635831.csf +0 -0
  609. metadata +1213 -457
  610. data/lib/cuboid/processes/executables/dispatcher.rb +0 -5
  611. data/lib/cuboid/processes/helpers/dispatchers.rb +0 -23
  612. data/lib/cuboid/rpc/server/dispatcher/node.rb +0 -247
  613. data/spec/cuboid/rpc/server/dispatcher/node_spec.rb +0 -222
  614. data/spec/support/logs/Dispatcher - 1520492-37227.log +0 -6
  615. data/spec/support/logs/Dispatcher - 1520680-13689.log +0 -6
  616. data/spec/support/logs/Dispatcher - 1520682-24167.log +0 -6
  617. data/spec/support/logs/Dispatcher - 1520688-42731.log +0 -6
  618. data/spec/support/logs/Dispatcher - 1520690-5750.log +0 -10
  619. data/spec/support/logs/Dispatcher - 1520692-55183.log +0 -10
  620. data/spec/support/logs/Dispatcher - 1520695-39752.log +0 -10
  621. data/spec/support/logs/Dispatcher - 1520697-44327.log +0 -10
  622. data/spec/support/logs/Dispatcher - 1520699-58785.log +0 -10
  623. data/spec/support/logs/Dispatcher - 1520701-60952.log +0 -10
  624. data/spec/support/logs/Dispatcher - 1520796-50420.log +0 -6
  625. data/spec/support/logs/Dispatcher - 1520894-56883.log +0 -6
  626. data/spec/support/logs/Dispatcher - 1520896-21419.log +0 -6
  627. data/spec/support/logs/Dispatcher - 1520898-62584.log +0 -6
  628. data/spec/support/logs/Dispatcher - 1520900-59721.log +0 -6
  629. data/spec/support/logs/Dispatcher - 1520910-51632.log +0 -6
  630. data/spec/support/logs/Dispatcher - 1520920-21801.log +0 -6
  631. data/spec/support/logs/Dispatcher - 1520930-49223.log +0 -6
  632. data/spec/support/logs/Dispatcher - 1520933-34241.log +0 -6
  633. data/spec/support/logs/Dispatcher - 1520935-64571.log +0 -6
  634. data/spec/support/logs/Dispatcher - 1520937-50734.log +0 -6
  635. data/spec/support/logs/Dispatcher - 1520939-60841.log +0 -6
  636. data/spec/support/logs/Dispatcher - 1520944-8124.log +0 -6
  637. data/spec/support/logs/Dispatcher - 1520946-25192.log +0 -16
  638. data/spec/support/logs/Dispatcher - 1520948-9752.log +0 -14
  639. data/spec/support/logs/Dispatcher - 1520952-45543.log +0 -10
  640. data/spec/support/logs/Dispatcher - 1520958-36653.log +0 -16
  641. data/spec/support/logs/Dispatcher - 1520960-17456.log +0 -14
  642. data/spec/support/logs/Dispatcher - 1520964-5774.log +0 -10
  643. data/spec/support/logs/Dispatcher - 1520976-40848.log +0 -16
  644. data/spec/support/logs/Dispatcher - 1520978-29867.log +0 -14
  645. data/spec/support/logs/Dispatcher - 1520982-17715.log +0 -10
  646. data/spec/support/logs/Dispatcher - 1520987-8925.log +0 -16
  647. data/spec/support/logs/Dispatcher - 1520989-25480.log +0 -14
  648. data/spec/support/logs/Dispatcher - 1520993-5124.log +0 -10
  649. data/spec/support/logs/Dispatcher - 1520999-12901.log +0 -16
  650. data/spec/support/logs/Dispatcher - 1521004-32265.log +0 -14
  651. data/spec/support/logs/Dispatcher - 1521008-33455.log +0 -10
  652. data/spec/support/logs/Dispatcher - 1521014-13779.log +0 -6
  653. data/spec/support/logs/Dispatcher - 1521017-14755.log +0 -6
  654. data/spec/support/logs/Dispatcher - 1521022-48687.log +0 -6
  655. data/spec/support/logs/Dispatcher - 1521024-59097.log +0 -6
  656. data/spec/support/logs/Dispatcher - 1521034-12604.log +0 -6
  657. data/spec/support/logs/Dispatcher - 1521038-64272.log +0 -6
  658. data/spec/support/logs/Dispatcher - 1521043-8680.log +0 -6
  659. data/spec/support/logs/Dispatcher - 1521047-22949.log +0 -6
  660. data/spec/support/logs/Dispatcher - 1521051-3355.log +0 -6
  661. data/spec/support/logs/Dispatcher - 1521074-12332.log +0 -6
  662. data/spec/support/logs/Dispatcher - 1521118-53130.log +0 -16
  663. data/spec/support/logs/Dispatcher - 1521128-47137.log +0 -14
  664. data/spec/support/logs/Dispatcher - 1521136-30328.log +0 -10
  665. data/spec/support/logs/Dispatcher - 1521161-21329.log +0 -16
  666. data/spec/support/logs/Dispatcher - 1521172-19183.log +0 -14
  667. data/spec/support/logs/Dispatcher - 1521179-34902.log +0 -10
  668. data/spec/support/logs/Dispatcher - 1521190-20155.log +0 -16
  669. data/spec/support/logs/Dispatcher - 1521204-43843.log +0 -14
  670. data/spec/support/logs/Dispatcher - 1521211-23972.log +0 -10
  671. data/spec/support/logs/Dispatcher - 1521237-20879.log +0 -10
  672. data/spec/support/logs/Dispatcher - 1521239-61999.log +0 -10
  673. data/spec/support/logs/Dispatcher - 1521242-20975.log +0 -16
  674. data/spec/support/logs/Dispatcher - 1521246-28409.log +0 -14
  675. data/spec/support/logs/Dispatcher - 1521250-58505.log +0 -10
  676. data/spec/support/logs/Dispatcher - 1521262-53292.log +0 -6
  677. data/spec/support/logs/Dispatcher - 1521266-42758.log +0 -6
  678. data/spec/support/logs/Dispatcher - 1521277-4215.log +0 -6
  679. data/spec/support/logs/Dispatcher - 1521292-16086.log +0 -6
  680. data/spec/support/logs/Dispatcher - 1521301-42112.log +0 -6
  681. data/spec/support/logs/Dispatcher - 1521312-61196.log +0 -6
  682. data/spec/support/logs/Dispatcher - 1521316-23353.log +0 -6
  683. data/spec/support/logs/Dispatcher - 1521321-46361.log +0 -6
  684. data/spec/support/logs/Dispatcher - 1521438-46016.log +0 -6
  685. data/spec/support/logs/Dispatcher - 1521454-49862.log +0 -6
  686. data/spec/support/logs/Dispatcher - 1521470-54737.log +0 -6
  687. data/spec/support/logs/Scheduler - 1520469-35703.log +0 -3
  688. data/spec/support/logs/Scheduler - 1520473-60524.log +0 -6
  689. data/spec/support/logs/Scheduler - 1520509-34951.log +0 -3
  690. data/spec/support/logs/Scheduler - 1520517-31455.log +0 -6
  691. data/spec/support/logs/Scheduler - 1520529-43808.log +0 -4
  692. data/spec/support/logs/Scheduler - 1520536-23387.log +0 -1
  693. data/spec/support/logs/Scheduler - 1520549-48260.log +0 -3
  694. data/spec/support/logs/Scheduler - 1520563-45636.log +0 -6
  695. data/spec/support/logs/Scheduler - 1520599-40643.log +0 -3
  696. data/spec/support/logs/Scheduler - 1520608-54106.log +0 -6
  697. data/spec/support/logs/Scheduler - 1520629-24722.log +0 -3
  698. data/spec/support/logs/Scheduler - 1520637-61755.log +0 -6
  699. data/spec/support/logs/Scheduler - 1520663-17447.log +0 -4
  700. data/spec/support/logs/Scheduler - 1520671-38282.log +0 -6
  701. data/spec/support/logs/Scheduler - 1520703-33082.log +0 -1
  702. data/spec/support/logs/Scheduler - 1520706-22309.log +0 -1
  703. data/spec/support/logs/Scheduler - 1520709-1816.log +0 -1
  704. data/spec/support/logs/Scheduler - 1520711-19998.log +0 -1
  705. data/spec/support/logs/Scheduler - 1520714-47570.log +0 -1
  706. data/spec/support/logs/Scheduler - 1520723-18521.log +0 -1
  707. data/spec/support/logs/Scheduler - 1520725-40913.log +0 -3
  708. data/spec/support/logs/Scheduler - 1520749-45742.log +0 -6
  709. data/spec/support/logs/Scheduler - 1520759-44350.log +0 -4
  710. data/spec/support/logs/Scheduler - 1520770-53219.log +0 -1
  711. data/spec/support/logs/Scheduler - 1520773-54792.log +0 -1
  712. data/spec/support/logs/Scheduler - 1520777-19636.log +0 -1
  713. data/spec/support/logs/Scheduler - 1520780-51801.log +0 -1
  714. data/spec/support/logs/Scheduler - 1520782-9652.log +0 -3
  715. data/spec/support/logs/Scheduler - 1520786-59472.log +0 -1
  716. data/spec/support/logs/Scheduler - 1520789-1603.log +0 -1
  717. data/spec/support/logs/Scheduler - 1520792-35476.log +0 -1
  718. data/spec/support/logs/Scheduler - 1521410-47324.log +0 -16
  719. data/spec/support/logs/Scheduler - 1521422-33737.log +0 -6
  720. data/spec/support/logs/Scheduler - 1521433-36637.log +0 -6
  721. data/spec/support/logs/Scheduler - 1521440-15066.log +0 -6
  722. data/spec/support/logs/Scheduler - 1521456-48637.log +0 -3
  723. data/spec/support/logs/Scheduler - 1521472-54425.log +0 -5
  724. data/spec/support/logs/Scheduler - 1521496-12923.log +0 -1
  725. data/spec/support/logs/Scheduler - 1521518-46819.log +0 -1
  726. data/spec/support/logs/Scheduler - 1521522-21417.log +0 -1
  727. data/spec/support/logs/Scheduler - 1521525-35088.log +0 -1
  728. data/spec/support/logs/Scheduler - 1521528-13676.log +0 -1
  729. data/spec/support/logs/Scheduler - 1521530-48176.log +0 -1
  730. data/spec/support/logs/Scheduler - 1521532-13207.log +0 -1
  731. data/spec/support/logs/Scheduler - 1521535-5799.log +0 -3
  732. data/spec/support/logs/Scheduler - 1521543-62784.log +0 -3
  733. data/spec/support/logs/Scheduler - 1521551-10263.log +0 -3
  734. data/spec/support/logs/Scheduler - 1521556-56026.log +0 -3
  735. data/spec/support/logs/Scheduler - 1521560-14551.log +0 -4
  736. data/spec/support/logs/Scheduler - 1521573-47584.log +0 -1
  737. data/spec/support/logs/Scheduler - 1521578-14443.log +0 -4
  738. data/spec/support/logs/Scheduler - 1521580-60337.log +0 -1
  739. data/spec/support/logs/Scheduler - 1521583-52039.log +0 -1
  740. data/spec/support/logs/Scheduler - 1521586-1500.log +0 -16
  741. data/spec/support/logs/Scheduler - 1521598-61298.log +0 -4
  742. data/spec/support/logs/Scheduler - 1521602-61490.log +0 -1
  743. data/spec/support/logs/Scheduler - 1521604-29209.log +0 -1
  744. data/spec/support/logs/Scheduler - 1521606-47734.log +0 -1
  745. data/spec/support/logs/Scheduler - 1521612-63269.log +0 -1
  746. data/spec/support/logs/Scheduler - 1521614-47018.log +0 -3
  747. data/spec/support/logs/Scheduler - 1521619-32411.log +0 -1
  748. data/spec/support/logs/Scheduler - 1521621-42861.log +0 -1
  749. data/spec/support/logs/Scheduler - 1521623-56258.log +0 -1
  750. data/spec/support/logs/Scheduler - 1521627-9487.log +0 -1
  751. data/spec/support/logs/Scheduler - 1521630-3345.log +0 -1
  752. data/spec/support/logs/Scheduler - 1521632-47325.log +0 -1
  753. data/spec/support/logs/Scheduler - 1521635-22156.log +0 -2
  754. data/spec/support/logs/output_spec_1520329.log +0 -390
  755. data/spec/support/reports/003bed585153336c2548d1c60a026a3e.crf +0 -0
  756. data/spec/support/reports/30e3c7a8c13e9b40a0a443a5e5a4ff94.crf +0 -0
  757. data/spec/support/reports/31655751a9f0eee91e588bc796985b1e.crf +0 -0
  758. data/spec/support/reports/40801b7993c0ed919b73242a9c078dde.crf +0 -0
  759. data/spec/support/reports/4719b89667e92bb80102f4b0bb4c0c75.crf +0 -0
  760. data/spec/support/reports/4e765a3d2870d2763ea72167bd3db9d6.crf +0 -0
  761. data/spec/support/reports/61968f732d8ae715c104175e43679915.crf +0 -0
  762. data/spec/support/reports/63446a8ec637d9991b8c6a1151ae59a9.crf +0 -0
  763. data/spec/support/reports/737144b18305c7a115ad7964b9bbe41c.crf +0 -0
  764. data/spec/support/reports/73fe5f7adf905045c3fe4669bdf60d02.crf +0 -0
  765. data/spec/support/reports/86cd396db9ef97472876f32e57c44ce7.crf +0 -0
  766. data/spec/support/reports/8a031ac2b2730dfd07a1d1ca870299f2.crf +0 -0
  767. data/spec/support/reports/8e16ac74484ee5d8cf7073fe22adf787.crf +0 -0
  768. data/spec/support/reports/8eff857213ab6ff712a0b0e8582855c9.crf +0 -0
  769. data/spec/support/reports/9e0e6ed8718973b3d4e63bbb7dd1d1c6.crf +0 -0
  770. data/spec/support/reports/a9c88f967d09cb9c4e8e1180cfb24828.crf +0 -0
  771. data/spec/support/reports/ba32970a64686e45ec8caa5032f65c2e.crf +0 -0
  772. data/spec/support/reports/cceb7596659fd619ab4438953cbda78b.crf +0 -0
  773. data/spec/support/reports/d2e0f4558b605ffd1215e9226815b951.crf +0 -0
  774. data/spec/support/snapshots/Cuboid 2022-01-24 14_38_16 +0200 8238609e31cedaf1bcb89205f9d42121.csf +0 -0
  775. data/spec/support/snapshots/Cuboid 2022-01-24 14_38_30 +0200 68690b002e79c7bc9e3aabfcbc7ac5a7.csf +0 -0
  776. data/spec/support/snapshots/Cuboid 2022-01-24 14_46_39 +0200 6fd3c9491d3e784e18f9c3c0d9deddec.csf +0 -0
  777. data/spec/support/snapshots/Cuboid 2022-01-24 14_46_44 +0200 c3a012fba59210bc7c169afb0565d5a8.csf +0 -0
  778. data/spec/support/snapshots/Cuboid 2022-01-24 14_46_46 +0200 e4c1ce35d8e62e6a16f84eccd36b2283.csf +0 -0
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:33:08 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:08 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:08 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:08 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:08 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:08 2022] [status] Ready
7
+ [Tue Feb 1 13:33:09 2022] [status] Adding peer: 127.0.0.1:64944
8
+ [Tue Feb 1 13:33:09 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:09 2022] [info] ---- 127.0.0.1:64944
10
+ [Tue Feb 1 13:33:09 2022] [status] Advertising: 127.0.0.1:64944
11
+ [Tue Feb 1 13:33:10 2022] [status] Adding peer: 127.0.0.1:34797
12
+ [Tue Feb 1 13:33:10 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:10 2022] [info] ---- 127.0.0.1:64944
14
+ [Tue Feb 1 13:33:10 2022] [info] ---- 127.0.0.1:34797
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:33:10 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:10 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:10 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:10 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:10 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:10 2022] [status] Ready
7
+ [Tue Feb 1 13:33:10 2022] [status] Adding peer: 127.0.0.1:64944
8
+ [Tue Feb 1 13:33:10 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:10 2022] [info] ---- 127.0.0.1:64944
10
+ [Tue Feb 1 13:33:10 2022] [status] Advertising: 127.0.0.1:64944
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:33:13 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:13 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:13 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:13 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:13 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:13 2022] [status] Ready
7
+ [Tue Feb 1 13:33:14 2022] [status] Adding peer: 127.0.0.1:6895
8
+ [Tue Feb 1 13:33:14 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:14 2022] [info] ---- 127.0.0.1:6895
10
+ [Tue Feb 1 13:33:14 2022] [status] Advertising: 127.0.0.1:6895
11
+ [Tue Feb 1 13:33:16 2022] [status] Adding peer: 127.0.0.1:36288
12
+ [Tue Feb 1 13:33:16 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:16 2022] [info] ---- 127.0.0.1:6895
14
+ [Tue Feb 1 13:33:16 2022] [info] ---- 127.0.0.1:36288
15
+ [Tue Feb 1 13:33:16 2022] [status] Advertising: 127.0.0.1:36288
16
+ [Tue Feb 1 13:33:16 2022] [info] ---- to: 127.0.0.1:6895
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:33:14 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:14 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:14 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:14 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:14 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:14 2022] [status] Ready
7
+ [Tue Feb 1 13:33:14 2022] [status] Adding peer: 127.0.0.1:30794
8
+ [Tue Feb 1 13:33:14 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:14 2022] [info] ---- 127.0.0.1:30794
10
+ [Tue Feb 1 13:33:14 2022] [status] Advertising: 127.0.0.1:30794
11
+ [Tue Feb 1 13:33:16 2022] [status] Adding peer: 127.0.0.1:36288
12
+ [Tue Feb 1 13:33:16 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:16 2022] [info] ---- 127.0.0.1:30794
14
+ [Tue Feb 1 13:33:16 2022] [info] ---- 127.0.0.1:36288
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:33:16 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:16 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:16 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:16 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:16 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:16 2022] [status] Ready
7
+ [Tue Feb 1 13:33:16 2022] [status] Adding peer: 127.0.0.1:30794
8
+ [Tue Feb 1 13:33:16 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:16 2022] [info] ---- 127.0.0.1:30794
10
+ [Tue Feb 1 13:33:16 2022] [status] Advertising: 127.0.0.1:30794
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:33:18 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:18 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:18 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:18 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:18 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:18 2022] [status] Ready
7
+ [Tue Feb 1 13:33:19 2022] [status] Adding peer: 127.0.0.1:35419
8
+ [Tue Feb 1 13:33:19 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:19 2022] [info] ---- 127.0.0.1:35419
10
+ [Tue Feb 1 13:33:19 2022] [status] Advertising: 127.0.0.1:35419
11
+ [Tue Feb 1 13:33:20 2022] [status] Adding peer: 127.0.0.1:43119
12
+ [Tue Feb 1 13:33:20 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:20 2022] [info] ---- 127.0.0.1:35419
14
+ [Tue Feb 1 13:33:20 2022] [info] ---- 127.0.0.1:43119
15
+ [Tue Feb 1 13:33:20 2022] [status] Advertising: 127.0.0.1:43119
16
+ [Tue Feb 1 13:33:20 2022] [info] ---- to: 127.0.0.1:35419
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:33:19 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:19 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:19 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:19 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:19 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:19 2022] [status] Ready
7
+ [Tue Feb 1 13:33:19 2022] [status] Adding peer: 127.0.0.1:10976
8
+ [Tue Feb 1 13:33:19 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:19 2022] [info] ---- 127.0.0.1:10976
10
+ [Tue Feb 1 13:33:19 2022] [status] Advertising: 127.0.0.1:10976
11
+ [Tue Feb 1 13:33:20 2022] [status] Adding peer: 127.0.0.1:43119
12
+ [Tue Feb 1 13:33:20 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:20 2022] [info] ---- 127.0.0.1:10976
14
+ [Tue Feb 1 13:33:20 2022] [info] ---- 127.0.0.1:43119
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:33:20 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:20 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:20 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:20 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:20 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:20 2022] [status] Ready
7
+ [Tue Feb 1 13:33:20 2022] [status] Adding peer: 127.0.0.1:10976
8
+ [Tue Feb 1 13:33:20 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:20 2022] [info] ---- 127.0.0.1:10976
10
+ [Tue Feb 1 13:33:20 2022] [status] Advertising: 127.0.0.1:10976
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:33:23 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:23 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:23 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:23 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:23 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:23 2022] [status] Ready
7
+ [Tue Feb 1 13:33:24 2022] [status] Adding peer: 127.0.0.1:65099
8
+ [Tue Feb 1 13:33:24 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:24 2022] [info] ---- 127.0.0.1:65099
10
+ [Tue Feb 1 13:33:24 2022] [status] Advertising: 127.0.0.1:65099
11
+ [Tue Feb 1 13:33:25 2022] [status] Adding peer: 127.0.0.1:1449
12
+ [Tue Feb 1 13:33:25 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:25 2022] [info] ---- 127.0.0.1:65099
14
+ [Tue Feb 1 13:33:25 2022] [info] ---- 127.0.0.1:1449
15
+ [Tue Feb 1 13:33:25 2022] [status] Advertising: 127.0.0.1:1449
16
+ [Tue Feb 1 13:33:25 2022] [info] ---- to: 127.0.0.1:65099
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:33:24 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:24 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:24 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:24 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:24 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:24 2022] [status] Ready
7
+ [Tue Feb 1 13:33:24 2022] [status] Adding peer: 127.0.0.1:48415
8
+ [Tue Feb 1 13:33:24 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:24 2022] [info] ---- 127.0.0.1:48415
10
+ [Tue Feb 1 13:33:24 2022] [status] Advertising: 127.0.0.1:48415
11
+ [Tue Feb 1 13:33:25 2022] [status] Adding peer: 127.0.0.1:1449
12
+ [Tue Feb 1 13:33:25 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:33:25 2022] [info] ---- 127.0.0.1:48415
14
+ [Tue Feb 1 13:33:25 2022] [info] ---- 127.0.0.1:1449
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:33:25 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:25 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:25 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:25 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:25 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:25 2022] [status] Ready
7
+ [Tue Feb 1 13:33:25 2022] [status] Adding peer: 127.0.0.1:48415
8
+ [Tue Feb 1 13:33:25 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:33:25 2022] [info] ---- 127.0.0.1:48415
10
+ [Tue Feb 1 13:33:25 2022] [status] Advertising: 127.0.0.1:48415
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:28 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:28 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:28 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:28 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:28 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:28 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:29 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:29 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:29 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:29 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:29 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:29 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:31 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:31 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:31 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:31 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:31 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:31 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:32 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:32 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:32 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:32 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:32 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:32 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:35 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:35 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:35 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:35 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:35 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:35 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:37 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:37 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:37 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:37 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:37 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:37 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:39 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:39 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:39 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:39 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:39 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:39 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:41 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:41 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:41 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:41 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:41 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:41 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:43 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:43 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:43 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:43 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:43 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:43 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:33:49 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:33:49 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:33:49 2022] [status] Node ready.
4
+ [Tue Feb 1 13:33:49 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:33:49 2022] [info] <empty>
6
+ [Tue Feb 1 13:33:49 2022] [status] Ready
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:34:30 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:30 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:30 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:30 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:30 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:30 2022] [status] Ready
7
+ [Tue Feb 1 13:34:33 2022] [status] Adding peer: 127.0.0.2:31515
8
+ [Tue Feb 1 13:34:33 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:33 2022] [info] ---- 127.0.0.2:31515
10
+ [Tue Feb 1 13:34:33 2022] [status] Advertising: 127.0.0.2:31515
11
+ [Tue Feb 1 13:34:35 2022] [status] Adding peer: 127.0.0.3:7501
12
+ [Tue Feb 1 13:34:35 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:35 2022] [info] ---- 127.0.0.2:31515
14
+ [Tue Feb 1 13:34:35 2022] [info] ---- 127.0.0.3:7501
15
+ [Tue Feb 1 13:34:35 2022] [status] Advertising: 127.0.0.3:7501
16
+ [Tue Feb 1 13:34:35 2022] [info] ---- to: 127.0.0.2:31515
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:34:32 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:32 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:32 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:32 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:32 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:32 2022] [status] Ready
7
+ [Tue Feb 1 13:34:33 2022] [status] Adding peer: 127.0.0.1:5229
8
+ [Tue Feb 1 13:34:33 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:33 2022] [info] ---- 127.0.0.1:5229
10
+ [Tue Feb 1 13:34:33 2022] [status] Advertising: 127.0.0.1:5229
11
+ [Tue Feb 1 13:34:35 2022] [status] Adding peer: 127.0.0.3:7501
12
+ [Tue Feb 1 13:34:35 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:35 2022] [info] ---- 127.0.0.1:5229
14
+ [Tue Feb 1 13:34:35 2022] [info] ---- 127.0.0.3:7501
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:34:34 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:34 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:34 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:34 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:34 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:34 2022] [status] Ready
7
+ [Tue Feb 1 13:34:35 2022] [status] Adding peer: 127.0.0.1:5229
8
+ [Tue Feb 1 13:34:35 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:35 2022] [info] ---- 127.0.0.1:5229
10
+ [Tue Feb 1 13:34:35 2022] [status] Advertising: 127.0.0.1:5229
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:34:43 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:43 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:43 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:43 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:43 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:43 2022] [status] Ready
7
+ [Tue Feb 1 13:34:46 2022] [status] Adding peer: 127.0.0.2:24492
8
+ [Tue Feb 1 13:34:46 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:46 2022] [info] ---- 127.0.0.2:24492
10
+ [Tue Feb 1 13:34:46 2022] [status] Advertising: 127.0.0.2:24492
11
+ [Tue Feb 1 13:34:48 2022] [status] Adding peer: 127.0.0.3:50808
12
+ [Tue Feb 1 13:34:48 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:48 2022] [info] ---- 127.0.0.2:24492
14
+ [Tue Feb 1 13:34:48 2022] [info] ---- 127.0.0.3:50808
15
+ [Tue Feb 1 13:34:48 2022] [status] Advertising: 127.0.0.3:50808
16
+ [Tue Feb 1 13:34:48 2022] [info] ---- to: 127.0.0.2:24492
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:34:45 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:45 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:45 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:45 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:45 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:45 2022] [status] Ready
7
+ [Tue Feb 1 13:34:46 2022] [status] Adding peer: 127.0.0.1:22168
8
+ [Tue Feb 1 13:34:46 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:46 2022] [info] ---- 127.0.0.1:22168
10
+ [Tue Feb 1 13:34:46 2022] [status] Advertising: 127.0.0.1:22168
11
+ [Tue Feb 1 13:34:48 2022] [status] Adding peer: 127.0.0.3:50808
12
+ [Tue Feb 1 13:34:48 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:48 2022] [info] ---- 127.0.0.1:22168
14
+ [Tue Feb 1 13:34:48 2022] [info] ---- 127.0.0.3:50808
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:34:48 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:48 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:48 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:48 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:48 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:48 2022] [status] Ready
7
+ [Tue Feb 1 13:34:48 2022] [status] Adding peer: 127.0.0.1:22168
8
+ [Tue Feb 1 13:34:48 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:48 2022] [info] ---- 127.0.0.1:22168
10
+ [Tue Feb 1 13:34:48 2022] [status] Advertising: 127.0.0.1:22168
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:34:52 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:52 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:52 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:52 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:52 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:52 2022] [status] Ready
7
+ [Tue Feb 1 13:34:55 2022] [status] Adding peer: 127.0.0.2:3183
8
+ [Tue Feb 1 13:34:55 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:55 2022] [info] ---- 127.0.0.2:3183
10
+ [Tue Feb 1 13:34:55 2022] [status] Advertising: 127.0.0.2:3183
11
+ [Tue Feb 1 13:34:57 2022] [status] Adding peer: 127.0.0.3:45199
12
+ [Tue Feb 1 13:34:57 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:57 2022] [info] ---- 127.0.0.2:3183
14
+ [Tue Feb 1 13:34:57 2022] [info] ---- 127.0.0.3:45199
15
+ [Tue Feb 1 13:34:57 2022] [status] Advertising: 127.0.0.3:45199
16
+ [Tue Feb 1 13:34:57 2022] [info] ---- to: 127.0.0.2:3183
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:34:55 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:55 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:55 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:55 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:55 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:55 2022] [status] Ready
7
+ [Tue Feb 1 13:34:55 2022] [status] Adding peer: 127.0.0.1:8180
8
+ [Tue Feb 1 13:34:55 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:55 2022] [info] ---- 127.0.0.1:8180
10
+ [Tue Feb 1 13:34:55 2022] [status] Advertising: 127.0.0.1:8180
11
+ [Tue Feb 1 13:34:57 2022] [status] Adding peer: 127.0.0.3:45199
12
+ [Tue Feb 1 13:34:57 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:34:57 2022] [info] ---- 127.0.0.1:8180
14
+ [Tue Feb 1 13:34:57 2022] [info] ---- 127.0.0.3:45199
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:34:57 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:34:57 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:34:57 2022] [status] Node ready.
4
+ [Tue Feb 1 13:34:57 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:34:57 2022] [info] <empty>
6
+ [Tue Feb 1 13:34:57 2022] [status] Ready
7
+ [Tue Feb 1 13:34:57 2022] [status] Adding peer: 127.0.0.1:8180
8
+ [Tue Feb 1 13:34:57 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:34:57 2022] [info] ---- 127.0.0.1:8180
10
+ [Tue Feb 1 13:34:57 2022] [status] Advertising: 127.0.0.1:8180
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:35:05 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:05 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:05 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:05 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:05 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:05 2022] [status] Ready
7
+ [Tue Feb 1 13:35:06 2022] [status] Adding peer: 127.0.0.1:64837
8
+ [Tue Feb 1 13:35:06 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:35:06 2022] [info] ---- 127.0.0.1:64837
10
+ [Tue Feb 1 13:35:06 2022] [status] Advertising: 127.0.0.1:64837
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:35:06 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:06 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:06 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:06 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:06 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:06 2022] [status] Ready
7
+ [Tue Feb 1 13:35:06 2022] [status] Adding peer: 127.0.0.1:30967
8
+ [Tue Feb 1 13:35:06 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:35:06 2022] [info] ---- 127.0.0.1:30967
10
+ [Tue Feb 1 13:35:06 2022] [status] Advertising: 127.0.0.1:30967
@@ -0,0 +1,16 @@
1
+ [Tue Feb 1 13:35:07 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:07 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:07 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:07 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:07 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:07 2022] [status] Ready
7
+ [Tue Feb 1 13:35:08 2022] [status] Adding peer: 127.0.0.2:26313
8
+ [Tue Feb 1 13:35:08 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:35:08 2022] [info] ---- 127.0.0.2:26313
10
+ [Tue Feb 1 13:35:08 2022] [status] Advertising: 127.0.0.2:26313
11
+ [Tue Feb 1 13:35:09 2022] [status] Adding peer: 127.0.0.3:18199
12
+ [Tue Feb 1 13:35:09 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:35:09 2022] [info] ---- 127.0.0.2:26313
14
+ [Tue Feb 1 13:35:09 2022] [info] ---- 127.0.0.3:18199
15
+ [Tue Feb 1 13:35:09 2022] [status] Advertising: 127.0.0.3:18199
16
+ [Tue Feb 1 13:35:09 2022] [info] ---- to: 127.0.0.2:26313
@@ -0,0 +1,14 @@
1
+ [Tue Feb 1 13:35:08 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:08 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:08 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:08 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:08 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:08 2022] [status] Ready
7
+ [Tue Feb 1 13:35:08 2022] [status] Adding peer: 127.0.0.1:23526
8
+ [Tue Feb 1 13:35:08 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:35:08 2022] [info] ---- 127.0.0.1:23526
10
+ [Tue Feb 1 13:35:08 2022] [status] Advertising: 127.0.0.1:23526
11
+ [Tue Feb 1 13:35:09 2022] [status] Adding peer: 127.0.0.3:18199
12
+ [Tue Feb 1 13:35:09 2022] [info] Updated peers:
13
+ [Tue Feb 1 13:35:09 2022] [info] ---- 127.0.0.1:23526
14
+ [Tue Feb 1 13:35:09 2022] [info] ---- 127.0.0.3:18199
@@ -0,0 +1,10 @@
1
+ [Tue Feb 1 13:35:09 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:09 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:09 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:09 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:09 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:09 2022] [status] Ready
7
+ [Tue Feb 1 13:35:09 2022] [status] Adding peer: 127.0.0.1:23526
8
+ [Tue Feb 1 13:35:09 2022] [info] Updated peers:
9
+ [Tue Feb 1 13:35:09 2022] [info] ---- 127.0.0.1:23526
10
+ [Tue Feb 1 13:35:09 2022] [status] Advertising: 127.0.0.1:23526
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:13 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:13 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:13 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:13 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:13 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:13 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:15 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:15 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:15 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:15 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:15 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:15 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:18 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:18 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:18 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:18 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:18 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:18 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:22 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:22 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:22 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:22 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:22 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:22 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:26 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:26 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:26 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:26 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:26 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:26 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:31 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:31 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:31 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:31 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:31 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:31 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:34 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:34 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:34 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:34 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:34 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:34 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:35:36 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:35:36 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:35:36 2022] [status] Node ready.
4
+ [Tue Feb 1 13:35:36 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:35:36 2022] [info] <empty>
6
+ [Tue Feb 1 13:35:36 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:37:11 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:37:11 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:37:11 2022] [status] Node ready.
4
+ [Tue Feb 1 13:37:11 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:37:11 2022] [info] <empty>
6
+ [Tue Feb 1 13:37:11 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:37:21 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:37:21 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:37:21 2022] [status] Node ready.
4
+ [Tue Feb 1 13:37:21 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:37:21 2022] [info] <empty>
6
+ [Tue Feb 1 13:37:21 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Tue Feb 1 13:37:25 2022] [status] Starting the RPC Server...
2
+ [Tue Feb 1 13:37:25 2022] [status] Initializing grid node...
3
+ [Tue Feb 1 13:37:25 2022] [status] Node ready.
4
+ [Tue Feb 1 13:37:25 2022] [info] Updated peers:
5
+ [Tue Feb 1 13:37:25 2022] [info] <empty>
6
+ [Tue Feb 1 13:37:25 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Sun Feb 13 07:57:47 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 07:57:47 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 07:57:47 2022] [status] Node ready.
4
+ [Sun Feb 13 07:57:47 2022] [info] Updated peers:
5
+ [Sun Feb 13 07:57:47 2022] [info] <empty>
6
+ [Sun Feb 13 07:57:47 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Sun Feb 13 07:59:56 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 07:59:56 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 07:59:56 2022] [status] Node ready.
4
+ [Sun Feb 13 07:59:56 2022] [info] Updated peers:
5
+ [Sun Feb 13 07:59:56 2022] [info] <empty>
6
+ [Sun Feb 13 07:59:56 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Sun Feb 13 07:59:57 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 07:59:57 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 07:59:57 2022] [status] Node ready.
4
+ [Sun Feb 13 07:59:57 2022] [info] Updated peers:
5
+ [Sun Feb 13 07:59:57 2022] [info] <empty>
6
+ [Sun Feb 13 07:59:57 2022] [status] Ready
@@ -0,0 +1,6 @@
1
+ [Sun Feb 13 08:00:00 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 08:00:00 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 08:00:00 2022] [status] Node ready.
4
+ [Sun Feb 13 08:00:00 2022] [info] Updated peers:
5
+ [Sun Feb 13 08:00:00 2022] [info] <empty>
6
+ [Sun Feb 13 08:00:00 2022] [status] Ready
@@ -0,0 +1,10 @@
1
+ [Sun Feb 13 08:00:01 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 08:00:01 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 08:00:01 2022] [status] Node ready.
4
+ [Sun Feb 13 08:00:01 2022] [info] Updated peers:
5
+ [Sun Feb 13 08:00:01 2022] [info] <empty>
6
+ [Sun Feb 13 08:00:01 2022] [status] Ready
7
+ [Sun Feb 13 08:00:02 2022] [status] Adding peer: 127.0.0.1:59176
8
+ [Sun Feb 13 08:00:02 2022] [info] Updated peers:
9
+ [Sun Feb 13 08:00:02 2022] [info] ---- 127.0.0.1:59176
10
+ [Sun Feb 13 08:00:02 2022] [status] Advertising: 127.0.0.1:59176
@@ -0,0 +1,10 @@
1
+ [Sun Feb 13 08:00:01 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 08:00:01 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 08:00:01 2022] [status] Node ready.
4
+ [Sun Feb 13 08:00:01 2022] [info] Updated peers:
5
+ [Sun Feb 13 08:00:01 2022] [info] <empty>
6
+ [Sun Feb 13 08:00:01 2022] [status] Ready
7
+ [Sun Feb 13 08:00:02 2022] [status] Adding peer: 127.0.0.1:38548
8
+ [Sun Feb 13 08:00:02 2022] [info] Updated peers:
9
+ [Sun Feb 13 08:00:02 2022] [info] ---- 127.0.0.1:38548
10
+ [Sun Feb 13 08:00:02 2022] [status] Advertising: 127.0.0.1:38548
@@ -0,0 +1,10 @@
1
+ [Sun Feb 13 08:00:03 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 08:00:03 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 08:00:03 2022] [status] Node ready.
4
+ [Sun Feb 13 08:00:03 2022] [info] Updated peers:
5
+ [Sun Feb 13 08:00:03 2022] [info] <empty>
6
+ [Sun Feb 13 08:00:03 2022] [status] Ready
7
+ [Sun Feb 13 08:00:03 2022] [status] Adding peer: 127.0.0.1:57542
8
+ [Sun Feb 13 08:00:03 2022] [info] Updated peers:
9
+ [Sun Feb 13 08:00:03 2022] [info] ---- 127.0.0.1:57542
10
+ [Sun Feb 13 08:00:03 2022] [status] Advertising: 127.0.0.1:57542
@@ -0,0 +1,10 @@
1
+ [Sun Feb 13 08:00:03 2022] [status] Starting the RPC Server...
2
+ [Sun Feb 13 08:00:03 2022] [status] Initializing grid node...
3
+ [Sun Feb 13 08:00:03 2022] [status] Node ready.
4
+ [Sun Feb 13 08:00:03 2022] [info] Updated peers:
5
+ [Sun Feb 13 08:00:03 2022] [info] <empty>
6
+ [Sun Feb 13 08:00:03 2022] [status] Ready
7
+ [Sun Feb 13 08:00:03 2022] [status] Adding peer: 127.0.0.1:23738
8
+ [Sun Feb 13 08:00:03 2022] [info] Updated peers:
9
+ [Sun Feb 13 08:00:03 2022] [info] ---- 127.0.0.1:23738
10
+ [Sun Feb 13 08:00:03 2022] [status] Advertising: 127.0.0.1:23738