symphony 0.11.1 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/ChangeLog +941 -859
- data/History.rdoc +14 -0
- data/lib/symphony.rb +2 -2
- data/lib/symphony/daemon.rb +5 -3
- data/lib/symphony/metrics.rb +1 -1
- data/lib/symphony/queue.rb +3 -3
- data/lib/symphony/statistics.rb +1 -1
- data/lib/symphony/task.rb +29 -9
- data/lib/symphony/task_group.rb +1 -1
- data/lib/symphony/task_group/longlived.rb +41 -47
- data/lib/symphony/tasks/auditor.rb +1 -1
- data/lib/symphony/tasks/oneshot_simulator.rb +3 -3
- data/lib/symphony/tasks/simulator.rb +19 -16
- data/spec/symphony/daemon_spec.rb +1 -1
- data/spec/symphony/task_group/longlived_spec.rb +21 -32
- data/spec/symphony/task_spec.rb +13 -0
- metadata +38 -29
- metadata.gz.sig +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0e183ac257c66fe624499aa023a5d718f8fc14478c7630a589014b90bda42e52
|
4
|
+
data.tar.gz: 1e4a16de67ffe59e26fa27ad82c8ab01732b0ac8d616ce463c36805357d90a45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24620df94d92b8ecc79f96f80d27c5c06390e3d91b7f2d53b484f318c73676ddcfcd35bb166abbc5e9c898368c9a276b50872b4bc396b3d1e5466318eb558a8e
|
7
|
+
data.tar.gz: e938e3c38f6af33f14903a957b14b9380e63b22ddb1f50fe319ad454eae1810fbc5a832ba4ba9c2476a1b69ebd16106451058e433958e311f65c9f0e98399414
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,1001 +1,1083 @@
|
|
1
|
+
2019-06-26 Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
@ * History.rdoc, lib/symphony.rb:
|
4
|
+
| Bump the minor version, update history.
|
5
|
+
| [0b40141657be] [tip]
|
6
|
+
|
|
7
|
+
o * lib/symphony/metrics.rb, lib/symphony/task.rb,
|
8
|
+
| spec/symphony/task_spec.rb:
|
9
|
+
| Set a proctitle for all tasks, not just those that include the
|
10
|
+
| Metrics mixin.
|
11
|
+
| [8e142500aab8]
|
12
|
+
|
|
13
|
+
o * lib/symphony/queue.rb, lib/symphony/statistics.rb,
|
14
|
+
| lib/symphony/task.rb, lib/symphony/task_group.rb,
|
15
|
+
| lib/symphony/task_group/longlived.rb, lib/symphony/tasks/auditor.rb,
|
16
|
+
| lib/symphony/tasks/oneshot_simulator.rb,
|
17
|
+
| lib/symphony/tasks/simulator.rb,
|
18
|
+
| spec/symphony/task_group/longlived_spec.rb:
|
19
|
+
| Fix a bunch of bugs with scaling, idle timeout, and message-
|
20
|
+
| counting.
|
21
|
+
| [198fd4e6b4df]
|
22
|
+
|
|
23
|
+
2019-06-12 Michael Granger <ged@FaerieMUD.org>
|
24
|
+
|
25
|
+
o * lib/symphony/task_group/longlived.rb, spec/symphony/daemon_spec.rb,
|
26
|
+
| spec/symphony/task_group/longlived_spec.rb:
|
27
|
+
| Clean up unused @pids variable in longlived task group
|
28
|
+
| [c5bf2c780b17]
|
29
|
+
|
|
30
|
+
2019-06-05 Michael Granger <ged@FaerieMUD.org>
|
31
|
+
|
32
|
+
o * lib/symphony/daemon.rb:
|
33
|
+
| Whitespace cleanup, add some debugging to the Daemon
|
34
|
+
| [743783efb3a1]
|
35
|
+
|
|
36
|
+
o * .tm_properties:
|
37
|
+
| Use the homedir TM_RUBY for textmate
|
38
|
+
| [5f75aadd7897]
|
39
|
+
|
|
40
|
+
o * .ruby-version:
|
41
|
+
| Bump to Ruby 2.6
|
42
|
+
| [3bccdeb7bfb9]
|
43
|
+
|
|
44
|
+
2017-09-18 Michael Granger <ged@FaerieMUD.org>
|
45
|
+
|
46
|
+
o * symphony.gemspec:
|
47
|
+
| Update the gemspec
|
48
|
+
| [d47773906581]
|
49
|
+
|
|
50
|
+
2017-01-31 Mahlon E. Smith <mahlon@laika.com>
|
51
|
+
|
52
|
+
o * .hgtags:
|
53
|
+
| Added tag v0.11.1 for changeset e19db9c5c88b
|
54
|
+
| [539cf0b836d9]
|
55
|
+
|
|
56
|
+
o * .hgsigs:
|
57
|
+
| Added signature for changeset 5347e2bfccb1
|
58
|
+
| [e19db9c5c88b] [v0.11.1]
|
59
|
+
|
|
60
|
+
2017-01-31 Mahlon E. Smith <mahlon@martini.nu>
|
61
|
+
|
62
|
+
o * History.rdoc, Rakefile, lib/symphony.rb:
|
63
|
+
| Bump the msgpack dependency for Ruby 2.4 support.
|
64
|
+
| [5347e2bfccb1]
|
65
|
+
|
|
66
|
+
2017-01-16 Mahlon E. Smith <mahlon@laika.com>
|
67
|
+
|
68
|
+
o * .hgtags:
|
69
|
+
| Added tag v0.11.0 for changeset 0023e43b3338
|
70
|
+
| [45fd4dc1d5bd]
|
71
|
+
|
|
72
|
+
o * .hgsigs:
|
73
|
+
| Added signature for changeset bfb708abaa1c
|
74
|
+
| [0023e43b3338] [v0.11.0]
|
75
|
+
|
|
76
|
+
2017-01-16 Mahlon E. Smith <mahlon@martini.nu>
|
77
|
+
|
78
|
+
o * .gems, .ruby-gemset, .ruby-version, .rvmrc, History.rdoc, Rakefile,
|
79
|
+
| lib/symphony.rb, symphony.gemspec:
|
80
|
+
| Bump Configurability dependency, migrate away from .rvmrc.
|
81
|
+
| [bfb708abaa1c]
|
82
|
+
|
|
1
83
|
2016-03-15 Mahlon E. Smith <mahlon@laika.com>
|
2
84
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
85
|
+
o * lib/symphony/tasks/failure_logger.rb:
|
86
|
+
| Disable auto rebinding for the failure logger example.
|
87
|
+
| [b2a2205ff560]
|
88
|
+
|
|
7
89
|
2016-03-02 Michael Granger <ged@FaerieMUD.org>
|
8
90
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
91
|
+
o * .hgtags:
|
92
|
+
| Added tag v0.10.0 for changeset 49b6a34f99d9
|
93
|
+
| [86c7156109bb]
|
94
|
+
|
|
95
|
+
o * .hgsigs:
|
96
|
+
| Added signature for changeset 6e4811acb073
|
97
|
+
| [49b6a34f99d9] [v0.10.0]
|
98
|
+
|
|
99
|
+
o * History.rdoc, lib/symphony.rb, symphony.gemspec:
|
100
|
+
| Bump the version and update history.
|
101
|
+
| [6e4811acb073]
|
102
|
+
|
|
21
103
|
2016-01-27 Michael Granger <ged@FaerieMUD.org>
|
22
104
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
105
|
+
o * .gems, Rakefile, USAGE.rdoc, lib/symphony/queue.rb,
|
106
|
+
| lib/symphony/routing.rb, lib/symphony/task.rb,
|
107
|
+
| spec/symphony/queue_spec.rb, spec/symphony/routing_spec.rb,
|
108
|
+
| spec/symphony/task_spec.rb:
|
109
|
+
| Add a setting to tasks to force them to always rebind
|
110
|
+
| [d4dd79e15aa1]
|
111
|
+
|
|
30
112
|
2015-10-30 Michael Granger <ged@FaerieMUD.org>
|
31
113
|
|
32
|
-
|
33
|
-
|
34
|
-
|
114
|
+
o * Merged with a29e516eb7c7
|
115
|
+
|\ [285d9c7783df]
|
116
|
+
| |
|
35
117
|
2015-09-03 Michael Granger <ged@FaerieMUD.org>
|
36
118
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
119
|
+
| o * lib/symphony/statistics.rb, lib/symphony/task_group/longlived.rb,
|
120
|
+
| | spec/symphony/task_group/longlived_spec.rb:
|
121
|
+
| | Invert scaling logic to handle initial load
|
122
|
+
| | [fd66c7ade2b0]
|
123
|
+
| |
|
42
124
|
2015-07-07 Michael Granger <ged@FaerieMUD.org>
|
43
125
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
126
|
+
o | * .hgtags:
|
127
|
+
| | Added tag v0.9.2 for changeset a802f4bea30c
|
128
|
+
| | [a29e516eb7c7]
|
129
|
+
| |
|
130
|
+
o | * .hgsigs:
|
131
|
+
| | Added signature for changeset 4171fb773f62
|
132
|
+
| | [a802f4bea30c] [v0.9.2]
|
133
|
+
| |
|
134
|
+
o | * History.rdoc, lib/symphony.rb, symphony.gemspec:
|
135
|
+
| | Bump the patch version, update history.
|
136
|
+
| | [4171fb773f62]
|
137
|
+
| |
|
56
138
|
2015-07-07 Mahlon E. Smith <mahlon@martini.nu>
|
57
139
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
140
|
+
o | * lib/symphony/task.rb:
|
141
|
+
| | Ensure the work callback's block returns the work() rval, instead of
|
142
|
+
| | the current time. This fixes Task acknowledgement.
|
143
|
+
| | [889ec4c329ed]
|
144
|
+
| |
|
63
145
|
2015-06-08 Michael Granger <ged@FaerieMUD.org>
|
64
146
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
147
|
+
o | * .hgtags:
|
148
|
+
| | Added tag v0.9.1 for changeset 794376fe5aae
|
149
|
+
| | [173192ac6251]
|
150
|
+
| |
|
151
|
+
o | * .hgsigs:
|
152
|
+
| | Added signature for changeset a3458bb40133
|
153
|
+
| | [794376fe5aae] [v0.9.1]
|
154
|
+
| |
|
155
|
+
o | * History.rdoc, lib/symphony.rb, symphony.gemspec:
|
156
|
+
|/ Bump the patch version, update history.
|
157
|
+
| [a3458bb40133]
|
158
|
+
|
|
159
|
+
o * lib/symphony.rb, lib/symphony/daemon.rb, spec/symphony_spec.rb,
|
160
|
+
| symphony.gemspec:
|
161
|
+
| Make Symphony.tasks contain just the task names.
|
162
|
+
|
|
163
|
+
| The Daemon will now load them on startup. This is so code that can
|
164
|
+
| depend on Symphony without loading every configured task anytime its
|
165
|
+
| config loads.
|
166
|
+
| [ade5a2647590]
|
167
|
+
|
|
86
168
|
2015-06-01 Michael Granger <ged@FaerieMUD.org>
|
87
169
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
170
|
+
o * .hgtags:
|
171
|
+
| Added tag v0.9.0 for changeset 197111441b6d
|
172
|
+
| [b342ddae5e9c]
|
173
|
+
|
|
174
|
+
o * .hgsigs:
|
175
|
+
| Added signature for changeset 84c169f1c831
|
176
|
+
| [197111441b6d] [v0.9.0]
|
177
|
+
|
|
178
|
+
o * History.rdoc, README.rdoc, lib/symphony.rb, symphony.gemspec:
|
179
|
+
| Bump minor version, update History.
|
180
|
+
| [84c169f1c831]
|
181
|
+
|
|
182
|
+
o * spec/helpers.rb:
|
183
|
+
| Add #message_count to the mock queue class
|
184
|
+
| [3dad232548eb]
|
185
|
+
|
|
186
|
+
o * lib/symphony/routing.rb, spec/symphony/routing_spec.rb:
|
187
|
+
| Fix the patterns used by Symphony::Routing
|
188
|
+
| [b9017563da91]
|
189
|
+
|
|
108
190
|
2015-05-29 Michael Granger <ged@FaerieMUD.org>
|
109
191
|
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
192
|
+
o * .gems, .hoerc, .rvm.gems, .rvmrc:
|
193
|
+
| Update dev environment
|
194
|
+
| [074b15c4dbc8]
|
195
|
+
|
|
114
196
|
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
115
197
|
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
198
|
+
o * .travis.yml:
|
199
|
+
| Don't test under rbx
|
200
|
+
| [c6e5888c9d68]
|
201
|
+
|
|
202
|
+
o * .travis.yml, Gemfile.ci:
|
203
|
+
| Nope, backed out changeset 031ea486d462
|
204
|
+
| [3031ee38d8a8]
|
205
|
+
|
|
206
|
+
o * .travis.yml, Gemfile.ci:
|
207
|
+
| Try using a specific gemset without metrics to avoid rusage
|
208
|
+
| [031ea486d462]
|
209
|
+
|
|
210
|
+
o * .travis.yml:
|
211
|
+
| Adding travis-ci config
|
212
|
+
| [a4bec430c2ce]
|
213
|
+
|
|
214
|
+
o * .hgignore, .hoerc, .ruby-version, Gemfile, Manifest.txt, Rakefile,
|
215
|
+
| UPGRADING.md, USAGE.rdoc, symphony.gemspec:
|
216
|
+
| Update project files for prerelease
|
217
|
+
| [5f344848f265]
|
218
|
+
|
|
219
|
+
o * lib/symphony/daemon.rb, lib/symphony/task_group.rb,
|
220
|
+
| spec/symphony/daemon_spec.rb, spec/symphony/queue_spec.rb:
|
221
|
+
| Finish up the daemon task reconfig spec
|
222
|
+
| [d3ea6af65086]
|
223
|
+
|
|
142
224
|
2015-02-27 mahlon <mahlon@martini.nu>
|
143
225
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
226
|
+
o * Manifest.txt:
|
227
|
+
| Update the manifest.
|
228
|
+
| [74cfe663a36e]
|
229
|
+
|
|
148
230
|
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
149
231
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
232
|
+
o * lib/symphony/queue.rb, lib/symphony/statistics.rb:
|
233
|
+
| Squelch spammy debugging
|
234
|
+
| [e098fa10f649]
|
235
|
+
|
|
236
|
+
o * .rvm.gems, .rvmrc, .tm_properties, Manifest.txt, Rakefile, TODO.md,
|
237
|
+
| lib/symphony.rb, lib/symphony/daemon.rb, lib/symphony/queue.rb,
|
238
|
+
| lib/symphony/signal_handling.rb, lib/symphony/statistics.rb,
|
239
|
+
| lib/symphony/task.rb, lib/symphony/task_group.rb,
|
240
|
+
| lib/symphony/task_group/longlived.rb,
|
241
|
+
| lib/symphony/task_group/oneshot.rb,
|
242
|
+
| lib/symphony/tasks/oneshot_simulator.rb,
|
243
|
+
| lib/symphony/tasks/simulator.rb, spec/helpers.rb,
|
244
|
+
| spec/symphony/daemon_spec.rb, spec/symphony/statistics_spec.rb,
|
245
|
+
| spec/symphony/task_group/longlived_spec.rb,
|
246
|
+
| spec/symphony/task_group/oneshot_spec.rb,
|
247
|
+
| spec/symphony/task_group_spec.rb, spec/symphony_spec.rb:
|
248
|
+
| Implement task work models
|
249
|
+
| * * * Load components earlier, and move configure() below other method
|
250
|
+
| definitions. This fixes a chicken-and-egg with Configurability where
|
251
|
+
| loading the config before loading Symphony caused a RuntimeError.
|
252
|
+
| [a6b97e9ea2e1]
|
253
|
+
|
|
254
|
+
o * lib/symphony/queue.rb:
|
255
|
+
| Include the first backtrace frame when logging job errors
|
256
|
+
| [47b5da330502]
|
257
|
+
|
|
176
258
|
2014-10-14 Michael Granger <ged@FaerieMUD.org>
|
177
259
|
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
260
|
+
o * .rvm.gems, Rakefile:
|
261
|
+
| Bump minimum version of Bunny to 1.5 for better connection recovery
|
262
|
+
| [cd10e63d22d7]
|
263
|
+
|
|
182
264
|
2014-09-03 Michael Granger <ged@FaerieMUD.org>
|
183
265
|
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
266
|
+
o * .hgtags:
|
267
|
+
| Added tag v0.8.0 for changeset 8d6669a7e329
|
268
|
+
| [af3d65f141e7]
|
269
|
+
|
|
270
|
+
o * .hgsigs:
|
271
|
+
| Added signature for changeset 68352ad02888
|
272
|
+
| [8d6669a7e329] [v0.8.0]
|
273
|
+
|
|
274
|
+
o * History.rdoc, Manifest.txt, lib/symphony.rb:
|
275
|
+
| Bump the minor version, update history.
|
276
|
+
| [68352ad02888]
|
277
|
+
|
|
196
278
|
2014-09-01 Michael Granger <ged@FaerieMUD.org>
|
197
279
|
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
280
|
+
o * lib/symphony/routing.rb, spec/symphony/routing_spec.rb:
|
281
|
+
| Add route options to routing mixin
|
282
|
+
| [328bc1fbb538]
|
283
|
+
|
|
202
284
|
2014-05-10 Michael Granger <ged@FaerieMUD.org>
|
203
285
|
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
286
|
+
o * bin/symphony-task:
|
287
|
+
| Use the config env stuff already in Symphony.load_config, and keep
|
288
|
+
| the config file argument optional for symphony-task.
|
289
|
+
| [0d91a148cacd]
|
290
|
+
|
|
209
291
|
2014-05-09 Mahlon E. Smith <mahlon@laika.com>
|
210
292
|
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
293
|
+
o * bin/symphony-task:
|
294
|
+
| Don't hardcode the path to the config file, letting it instead be
|
295
|
+
| set on the command line or via the environment.
|
296
|
+
| [e2cc9f8c064e]
|
297
|
+
|
|
216
298
|
2014-05-05 Michael Granger <ged@FaerieMUD.org>
|
217
299
|
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
300
|
+
o * .hgtags:
|
301
|
+
| Added tag v0.7.0 for changeset 204a5921a6c7
|
302
|
+
| [a40a8a3d1e83]
|
303
|
+
|
|
304
|
+
o * .hgsigs:
|
305
|
+
| Added signature for changeset 52300e72d138
|
306
|
+
| [204a5921a6c7] [v0.7.0]
|
307
|
+
|
|
308
|
+
o * History.rdoc, lib/symphony.rb:
|
309
|
+
| Bump the minor version, update history.
|
310
|
+
| [52300e72d138]
|
311
|
+
|
|
230
312
|
2014-04-25 Michael Granger <ged@FaerieMUD.org>
|
231
313
|
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
314
|
+
o * lib/symphony/daemon.rb, lib/symphony/task.rb:
|
315
|
+
| Add a 'before_fork' hook to Symphony::Task.
|
316
|
+
| [e9d2ed1b68ae]
|
317
|
+
|
|
236
318
|
2014-04-23 Michael Granger <ged@FaerieMUD.org>
|
237
319
|
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
320
|
+
o * .hgtags:
|
321
|
+
| Added tag v0.6.1 for changeset 6be0640d1a6a
|
322
|
+
| [d06ac2e417e2]
|
323
|
+
|
|
324
|
+
o * .hgsigs:
|
325
|
+
| Added signature for changeset d6ea48d772f3
|
326
|
+
| [6be0640d1a6a] [v0.6.1]
|
327
|
+
|
|
328
|
+
o * History.rdoc, lib/symphony.rb:
|
329
|
+
| Bump the patch version, update history.
|
330
|
+
| [d6ea48d772f3]
|
331
|
+
|
|
332
|
+
o * lib/symphony/daemon.rb, lib/symphony/signal_handling.rb,
|
333
|
+
| spec/symphony/daemon_spec.rb:
|
334
|
+
| Handle SIGQUIT the same as SIGINT and SIGTERM in the daemon.
|
335
|
+
| [42785d57eec9]
|
336
|
+
|
|
255
337
|
2014-04-14 Mahlon E. Smith <mahlon@laika.com>
|
256
338
|
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
339
|
+
o * Rakefile:
|
340
|
+
| Add configurability to the dependencies list.
|
341
|
+
| [f73d3ee81d17]
|
342
|
+
|
|
261
343
|
2014-04-14 Michael Granger <ged@FaerieMUD.org>
|
262
344
|
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
345
|
+
o * .hgtags:
|
346
|
+
| Added tag v0.6.0 for changeset a088731f43ff
|
347
|
+
| [718f55893ad5]
|
348
|
+
|
|
349
|
+
o * .hgsigs:
|
350
|
+
| Added signature for changeset fa6a367872f4
|
351
|
+
| [a088731f43ff] [v0.6.0]
|
352
|
+
|
|
353
|
+
o * History.rdoc, lib/symphony.rb:
|
354
|
+
| Bump the minor version, update history
|
355
|
+
| [fa6a367872f4]
|
356
|
+
|
|
357
|
+
o * TODO.md, lib/symphony/queue.rb, spec/symphony/queue_spec.rb:
|
358
|
+
| Update the TO-DO list
|
359
|
+
| [b30f07c96e7e]
|
360
|
+
|
|
361
|
+
o * lib/symphony/queue.rb:
|
362
|
+
| Set cancel-on-failover flag to the queue consumer
|
363
|
+
| [7c4d92ddbc79]
|
364
|
+
|
|
365
|
+
o * Rakefile:
|
366
|
+
| Remove the ssh-related dev deps
|
367
|
+
| [ccfe90203de7]
|
368
|
+
|
|
287
369
|
2014-04-14 Mahlon E. Smith <mahlon@laika.com>
|
288
370
|
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
371
|
+
o * Manifest.txt, Rakefile, lib/symphony/tasks/ssh.rb,
|
372
|
+
|\ lib/symphony/tasks/sshscript.rb:
|
373
|
+
| | Branch merge from 221b25852ba6.
|
374
|
+
| | [3673b0e7202d]
|
375
|
+
| |
|
376
|
+
| o * .hoerc, Manifest.txt, spec/symphony/mixins_spec.rb:
|
377
|
+
| | Complete the intervalexpression backout.
|
378
|
+
| | [ab1e59fc5ef8]
|
379
|
+
| |
|
298
380
|
2014-04-14 Mahlon E. Smith <mahlon@martini.nu>
|
299
381
|
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
382
|
+
| o * .hgignore, Manifest.txt, Rakefile,
|
383
|
+
| | lib/symphony/intervalexpression.rl, lib/symphony/mixins.rb,
|
384
|
+
| | spec/symphony/intervalexpression_spec.rb,
|
385
|
+
| | spec/symphony/mixins_spec.rb:
|
386
|
+
| | After some further consideration, the intervalexpression pieces
|
387
|
+
| | aren't necessarily dependent upon symphony core -- breaking the
|
388
|
+
| | scheduling components out.
|
389
|
+
| | [9ec6a4b61674]
|
390
|
+
| |
|
309
391
|
2014-04-14 Michael Granger <ged@FaerieMUD.org>
|
310
392
|
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
393
|
+
o | * Manifest.txt, lib/symphony/daemon.rb, lib/symphony/queue.rb,
|
394
|
+
| | lib/symphony/task.rb:
|
395
|
+
| | Allow a task to declare its queue as persistant.
|
396
|
+
| | [221b25852ba6]
|
397
|
+
| |
|
398
|
+
o | * Rakefile:
|
399
|
+
| | Make the gemspec task a little smarter
|
400
|
+
| | [03efe7b2c206]
|
401
|
+
| |
|
320
402
|
2014-04-11 Michael Granger <ged@FaerieMUD.org>
|
321
403
|
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
404
|
+
o | * lib/symphony/tasks/ssh.rb, lib/symphony/tasks/sshscript.rb:
|
405
|
+
|/ Break out SSH tasks into their own gem
|
406
|
+
| [a3c5dd11f642]
|
407
|
+
|
|
326
408
|
2014-04-08 Michael Granger <ged@FaerieMUD.org>
|
327
409
|
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
410
|
+
o * .hgtags:
|
411
|
+
| Added tag v0.5.0 for changeset f8e6883990fc
|
412
|
+
| [41fc4926342b]
|
413
|
+
|
|
414
|
+
o * .hgsigs:
|
415
|
+
| Added signature for changeset 369353a62297
|
416
|
+
| [f8e6883990fc] [v0.5.0]
|
417
|
+
|
|
418
|
+
o * History.rdoc, lib/symphony.rb:
|
419
|
+
| Bump minor version, update history.
|
420
|
+
| [369353a62297]
|
421
|
+
|
|
422
|
+
o * lib/symphony/task.rb:
|
423
|
+
| Don't set up default signal handlers for WINCH and CHLD for Tasks.
|
424
|
+
| [d42c7aa57e0b]
|
425
|
+
|
|
344
426
|
2014-04-05 Michael Granger <ged@FaerieMUD.org>
|
345
427
|
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
428
|
+
o * .hoerc, Manifest.txt, Rakefile, lib/symphony/intervalexpression.rl,
|
429
|
+
| lib/symphony/mixins.rb, spec/symphony/intervalexpression_spec.rb,
|
430
|
+
| spec/symphony/mixins_spec.rb:
|
431
|
+
| Make time-math stuff in IntervalExpression a little safer.
|
432
|
+
|
|
433
|
+
| - Use refinements to avoid polluting core modules
|
434
|
+
| - Use an explicit function instead of #send for interval calulation.
|
435
|
+
| - Fix manifest, add ragel files to the manifest-exclude pattern.
|
436
|
+
| [466b8bd312b4]
|
437
|
+
|
|
356
438
|
2014-04-04 Mahlon E. Smith <mahlon@laika.com>
|
357
439
|
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
440
|
+
o * .hgignore, Manifest.txt, Rakefile,
|
441
|
+
| lib/symphony/intervalexpression.rl, lib/symphony/mixins.rb,
|
442
|
+
| spec/symphony/intervalexpression_spec.rb,
|
443
|
+
| spec/symphony/mixins_spec.rb:
|
444
|
+
| Add an interval expression parsing library in preparation for
|
445
|
+
| Symphony scheduling.
|
446
|
+
| [cddc160bc76f]
|
447
|
+
|
|
366
448
|
2014-04-01 Michael Granger <ged@FaerieMUD.org>
|
367
449
|
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
450
|
+
o * Rakefile:
|
451
|
+
| Add direct dependency on loggability
|
452
|
+
| [3afd6890a914]
|
453
|
+
|
|
454
|
+
o * TODO.md:
|
455
|
+
| Update TODO list
|
456
|
+
| [3615936701c5]
|
457
|
+
|
|
458
|
+
o * lib/symphony/tasks/pinger.rb:
|
459
|
+
| Remove the pinger example task
|
460
|
+
| [cd84bece7998]
|
461
|
+
|
|
380
462
|
2014-03-29 Michael Granger <ged@FaerieMUD.org>
|
381
463
|
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
464
|
+
o * .hgtags:
|
465
|
+
| Added tag v0.4.0 for changeset ccf6adfeb268
|
466
|
+
| [a5c661d2b122]
|
467
|
+
|
|
468
|
+
o * .hgsigs:
|
469
|
+
| Added signature for changeset 855c7801eaea
|
470
|
+
| [ccf6adfeb268] [v0.4.0]
|
471
|
+
|
|
472
|
+
o * History.rdoc, Rakefile, lib/symphony.rb:
|
473
|
+
| Bump the minor version, update history.
|
474
|
+
| [855c7801eaea]
|
475
|
+
|
|
394
476
|
2014-03-28 Mahlon E. Smith <mahlon@laika.com>
|
395
477
|
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
478
|
+
o * lib/symphony/signal_handling.rb:
|
479
|
+
| Just return true if a signal was handled in wait_for_signals(), or
|
480
|
+
| false if a timeout occurred.
|
481
|
+
| [aa8c912414a6]
|
482
|
+
|
|
483
|
+
o * lib/symphony/signal_handling.rb:
|
484
|
+
| Add an optional (disabled by default) timeout for the signal
|
485
|
+
| handling wait_for_signals() method, for potential re-use in
|
486
|
+
| alternate loop actions.
|
487
|
+
| [5a19dd31e618]
|
488
|
+
|
|
407
489
|
2014-03-28 Michael Granger <ged@FaerieMUD.org>
|
408
490
|
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
491
|
+
o * .hgtags:
|
492
|
+
| Added tag v0.3.0 for changeset 3fa6e3a90e8e
|
493
|
+
| [b3383a3c3948]
|
494
|
+
|
|
495
|
+
o * .hgsigs:
|
496
|
+
| Added signature for changeset 5e22b47ec5dc
|
497
|
+
| [3fa6e3a90e8e] [v0.3.0]
|
498
|
+
|
|
499
|
+
o * History.rdoc:
|
500
|
+
| Update history.
|
501
|
+
| [5e22b47ec5dc]
|
502
|
+
|
|
503
|
+
o * Manifest.txt, TODO.md, lib/symphony/daemon.rb, lib/symphony/task.rb,
|
504
|
+
| spec/symphony/daemon_spec.rb, spec/symphony/task_spec.rb,
|
505
|
+
| spec/symphony_spec.rb:
|
506
|
+
| Add some more Task specs, add a placeholder for Daemon specs.
|
507
|
+
| [97812070cd5b]
|
508
|
+
|
|
509
|
+
o * TODO.md, USAGE.rdoc:
|
510
|
+
| Update docs until we implement the generic plugin system
|
511
|
+
| [5ae518abaadb]
|
512
|
+
|
|
513
|
+
o * Manifest.txt, lib/symphony/daemon.rb, lib/symphony/metrics.rb,
|
514
|
+
| lib/symphony/queue.rb, lib/symphony/task.rb,
|
515
|
+
| spec/symphony/queue_spec.rb:
|
516
|
+
| Put task children in their own process group so they don't get
|
517
|
+
| signals from the controlling tty.
|
518
|
+
| [60ea5a828e74]
|
519
|
+
|
|
520
|
+
o * .pryrc, bin/symphony, lib/symphony/daemon.rb,
|
521
|
+
| lib/symphony/signal_handling.rb, spec/symphony/task_spec.rb:
|
522
|
+
| Checkpoint of work on the Daemon
|
523
|
+
| [796ecc9bc2b8]
|
524
|
+
|
|
443
525
|
2014-03-27 Michael Granger <ged@FaerieMUD.org>
|
444
526
|
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
527
|
+
o * .rvmrc, Manifest.txt, README.rdoc, Rakefile, USAGE.rdoc,
|
528
|
+
| bin/groundcontrol, bin/groundcontrol-task, bin/symphony, bin
|
529
|
+
| /symphony-task, experiments/ps-publisher.rb, lib/groundcontrol.rb,
|
530
|
+
| lib/groundcontrol/daemon.rb, lib/groundcontrol/metrics.rb,
|
531
|
+
| lib/groundcontrol/mixins.rb, lib/groundcontrol/queue.rb,
|
532
|
+
| lib/groundcontrol/routing.rb, lib/groundcontrol/signal_handling.rb,
|
533
|
+
| lib/groundcontrol/task.rb, lib/groundcontrol/tasks/auditor.rb,
|
534
|
+
| lib/groundcontrol/tasks/failure_logger.rb,
|
535
|
+
| lib/groundcontrol/tasks/pinger.rb,
|
536
|
+
| lib/groundcontrol/tasks/simulator.rb,
|
537
|
+
| lib/groundcontrol/tasks/ssh.rb,
|
538
|
+
| lib/groundcontrol/tasks/sshscript.rb, lib/symphony.rb,
|
539
|
+
| lib/symphony/daemon.rb, lib/symphony/metrics.rb,
|
540
|
+
| lib/symphony/mixins.rb, lib/symphony/queue.rb,
|
541
|
+
| lib/symphony/routing.rb, lib/symphony/signal_handling.rb,
|
542
|
+
| lib/symphony/task.rb, lib/symphony/tasks/auditor.rb,
|
543
|
+
| lib/symphony/tasks/failure_logger.rb, lib/symphony/tasks/pinger.rb,
|
544
|
+
| lib/symphony/tasks/simulator.rb, lib/symphony/tasks/ssh.rb,
|
545
|
+
| lib/symphony/tasks/sshscript.rb, spec/groundcontrol/mixins_spec.rb,
|
546
|
+
| spec/groundcontrol/queue_spec.rb, spec/groundcontrol/task_spec.rb,
|
547
|
+
| spec/groundcontrol_spec.rb, spec/symphony/mixins_spec.rb,
|
548
|
+
| spec/symphony/queue_spec.rb, spec/symphony/task_spec.rb,
|
549
|
+
| spec/symphony_spec.rb:
|
550
|
+
| Rename from GroundControl -> Symphony
|
551
|
+
| [cf61ced7d585]
|
552
|
+
|
|
471
553
|
2014-03-26 Michael Granger <ged@FaerieMUD.org>
|
472
554
|
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
555
|
+
o * Manifest.txt, lib/groundcontrol.rb,
|
556
|
+
| lib/groundcontrol/tasks/failure_logger.rb,
|
557
|
+
| spec/groundcontrol/queue_spec.rb, spec/groundcontrol/task_spec.rb:
|
558
|
+
| Better queue coverage, prerelease gem prep.
|
559
|
+
| [6b1db8abd866]
|
560
|
+
|
|
479
561
|
2014-03-24 Michael Granger <ged@FaerieMUD.org>
|
480
562
|
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
563
|
+
o * TODO.md, lib/groundcontrol/queue.rb,
|
564
|
+
| spec/groundcontrol/queue_spec.rb, spec/groundcontrol/task_spec.rb:
|
565
|
+
| Checkpoint of work on coverage
|
566
|
+
| [e05a4224b0d0]
|
567
|
+
|
|
486
568
|
2014-03-21 Michael Granger <ged@FaerieMUD.org>
|
487
569
|
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
570
|
+
o * Rakefile, lib/groundcontrol.rb, lib/groundcontrol/queue.rb,
|
571
|
+
| lib/groundcontrol/task.rb, lib/groundcontrol/tasks/pinger.rb,
|
572
|
+
| spec/groundcontrol/queue_spec.rb, spec/groundcontrol/task_spec.rb:
|
573
|
+
| Start catching specs up with the code.
|
574
|
+
| [9857865f6cec]
|
575
|
+
|
|
494
576
|
2014-03-17 Mahlon E. Smith <mahlon@laika.com>
|
495
577
|
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
578
|
+
o * USAGE.rdoc:
|
579
|
+
| English, do you speak it?
|
580
|
+
| [7297d2999838]
|
581
|
+
|
|
500
582
|
2014-03-17 Mahlon E. Smith <mahlon@martini.nu>
|
501
583
|
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
584
|
+
o * README.rdoc, USAGE.rdoc, lib/groundcontrol/routing.rb:
|
585
|
+
| Clean up the README a little, add a USAGE document (that may evolve
|
586
|
+
| into a manual later), and allow the #on method in the routing plugin
|
587
|
+
| to accept an array of binding topics.
|
588
|
+
| [694dfa71528f]
|
589
|
+
|
|
508
590
|
2014-03-15 Mahlon E. Smith <mahlon@martini.nu>
|
509
591
|
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
592
|
+
o * Manifest.txt, Rakefile, experiments/mailer_task.rb,
|
593
|
+
| lib/groundcontrol/tasks/messaging.rb:
|
594
|
+
| Require a recent rubygems to fix a metriks issue with the hitimes
|
595
|
+
| dependency. Remove accidentally committed messaging task, a (nearly)
|
596
|
+
| empty mailer experiment, and an internal rdoc server location.
|
597
|
+
| [8b74abf2494f]
|
598
|
+
|
|
517
599
|
2014-03-14 Michael Granger <ged@FaerieMUD.org>
|
518
600
|
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
601
|
+
o * experiments/ps-publisher.rb:
|
602
|
+
| Add an example publisher with some interestingish test data
|
603
|
+
| [b671046cb46a]
|
604
|
+
|
|
605
|
+
o * lib/groundcontrol/tasks/auditor.rb,
|
606
|
+
| lib/groundcontrol/tasks/failure_logger.rb,
|
607
|
+
| lib/groundcontrol/tasks/simulator.rb:
|
608
|
+
| Explicitly name queues, clean up the simple task types
|
609
|
+
| [9be720b141c5]
|
610
|
+
|
|
611
|
+
o * lib/groundcontrol/queue.rb:
|
612
|
+
| Simplify the queue configuration
|
613
|
+
| [506e35c44fb7]
|
614
|
+
|
|
615
|
+
o * lib/groundcontrol/routing.rb:
|
616
|
+
| Fix routing mixin
|
617
|
+
| [0e1a756a8c72]
|
618
|
+
|
|
619
|
+
o * .autotest, Manifest.txt, bin/gctask, bin/gcworkerd,
|
620
|
+
| bin/groundcontrol, bin/groundcontrol-task,
|
621
|
+
| lib/groundcontrol/task.rb, lib/groundcontrol/tasks/simulator.rb:
|
622
|
+
| Checkpoint of work on timeout; renamed binaries
|
623
|
+
| [6b0655dc6892]
|
624
|
+
|
|
625
|
+
o * .rvm.gems, Rakefile, lib/groundcontrol/metrics.rb,
|
626
|
+
| lib/groundcontrol/routing.rb, lib/groundcontrol/task.rb,
|
627
|
+
| lib/groundcontrol/tasks/auditor.rb,
|
628
|
+
| lib/groundcontrol/tasks/failure_logger.rb,
|
629
|
+
| lib/groundcontrol/tasks/simulator.rb:
|
630
|
+
| Checkpoint before adding timeout
|
631
|
+
| [c1a33bbb4490]
|
632
|
+
|
|
551
633
|
2014-03-13 Michael Granger <ged@FaerieMUD.org>
|
552
634
|
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
635
|
+
o * lib/groundcontrol/queue.rb, lib/groundcontrol/signal_handling.rb,
|
636
|
+
| lib/groundcontrol/task.rb:
|
637
|
+
| Implement task restart on SIGHUP
|
638
|
+
| [1b4d965d8d48]
|
639
|
+
|
|
640
|
+
o * .hgignore:
|
641
|
+
| Ignore logfiles
|
642
|
+
| [9a8bf7a02a7b]
|
643
|
+
|
|
644
|
+
o * lib/groundcontrol/tasks/auditor.rb,
|
645
|
+
| lib/groundcontrol/tasks/failure_logger.rb,
|
646
|
+
| lib/groundcontrol/tasks/simulator.rb:
|
647
|
+
| Add some basic task types: work simulator, audit logger, failure
|
648
|
+
| logger
|
649
|
+
| [49b034c13f78]
|
650
|
+
|
|
651
|
+
o * etc/config.yml.example:
|
652
|
+
| Add an example config
|
653
|
+
| [970e15eafad9]
|
654
|
+
|
|
573
655
|
2014-03-12 Mahlon E. Smith <mahlon@martini.nu>
|
574
656
|
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
657
|
+
o * lib/groundcontrol/queue.rb:
|
658
|
+
| Retain the exchange -> queue binding for pre-existing queues.
|
659
|
+
| [bc11d76f7ef7]
|
660
|
+
|
|
579
661
|
2014-03-12 Michael Granger <ged@FaerieMUD.org>
|
580
662
|
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
663
|
+
o * lib/groundcontrol/queue.rb, lib/groundcontrol/task.rb,
|
664
|
+
| lib/groundcontrol/tasks/auditor.rb:
|
665
|
+
| Checkpoint commit of AMQP work
|
666
|
+
| [3ec6040c9e98]
|
667
|
+
|
|
668
|
+
o * lib/groundcontrol/queue.rb:
|
669
|
+
| Use a class-instance variable instead of thread-local for AMQP
|
670
|
+
| objects
|
671
|
+
| [6401e5aedf57]
|
672
|
+
|
|
673
|
+
o * lib/groundcontrol/queue.rb:
|
674
|
+
| Re-raise errors from Bunny while handling messages
|
675
|
+
| [384ab73d9b7f]
|
676
|
+
|
|
595
677
|
2014-03-11 Michael Granger <ged@FaerieMUD.org>
|
596
678
|
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
679
|
+
o * lib/groundcontrol/queue.rb, lib/groundcontrol/task.rb,
|
680
|
+
| lib/groundcontrol/tasks/auditor.rb,
|
681
|
+
| spec/groundcontrol/queue_spec.rb:
|
682
|
+
| Checkpoint of work on work model, subscription
|
683
|
+
| [b023dab4997c]
|
684
|
+
|
|
685
|
+
o * .hgignore, History.rdoc, Manifest.txt, Rakefile, bin/gctask,
|
686
|
+
| lib/groundcontrol/daemon.rb, lib/groundcontrol/queue.rb,
|
687
|
+
| lib/groundcontrol/signal_handling.rb, lib/groundcontrol/task.rb,
|
688
|
+
| lib/groundcontrol/tasks/auditor.rb,
|
689
|
+
| lib/groundcontrol/tasks/messaging.rb,
|
690
|
+
| spec/groundcontrol/mixins_spec.rb, spec/groundcontrol/queue_spec.rb,
|
691
|
+
| spec/groundcontrol/task_spec.rb, spec/groundcontrol_spec.rb:
|
692
|
+
| Checkpoint commit.
|
693
|
+
| [e86edf8ff23c]
|
694
|
+
|
|
613
695
|
2014-03-03 Michael Granger <ged@FaerieMUD.org>
|
614
696
|
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
697
|
+
o * .rvm.gems, Rakefile, experiments/mailer_task.rb,
|
698
|
+
| lib/groundcontrol/queue.rb, lib/groundcontrol/task.rb,
|
699
|
+
| lib/groundcontrol/tasks/pinger.rb, spec/groundcontrol/queue_spec.rb,
|
700
|
+
| spec/groundcontrol/task_spec.rb, spec/helpers.rb:
|
701
|
+
| Checkpoint of the work from this morning
|
702
|
+
| [5c8021195e16]
|
703
|
+
|
|
622
704
|
2014-02-18 Michael Granger <ged@FaerieMUD.org>
|
623
705
|
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
706
|
+
o * .pryrc, .rvm.gems, .rvmrc, .simplecov, Manifest.txt, README.rdoc,
|
707
|
+
| Rakefile, bin/gcworkerd, experiments/.foreman, experiments/Procfile,
|
708
|
+
| experiments/consumer-sketch.rb, experiments/mailer_task.rb,
|
709
|
+
| experiments/producer-sketch.rb, experiments/ssh_system.rb,
|
710
|
+
| experiments/test_script.sh, lib/groundcontrol.rb,
|
711
|
+
| lib/groundcontrol/daemon.rb, lib/groundcontrol/mixins.rb,
|
712
|
+
| lib/groundcontrol/queue.rb, lib/groundcontrol/signal_handling.rb,
|
713
|
+
| lib/groundcontrol/task.rb, lib/groundcontrol/tasks/pinger.rb,
|
714
|
+
| lib/groundcontrol/tasks/ssh.rb,
|
715
|
+
| lib/groundcontrol/tasks/sshscript.rb, lib/laika/groundcontrol.rb,
|
716
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
717
|
+
| lib/laika/groundcontrol/task.rb,
|
718
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
719
|
+
| lib/laika/groundcontrol/tasks/ssh.rb,
|
720
|
+
| lib/laika/groundcontrol/tasks/sshscript.rb,
|
721
|
+
| lib/laika/groundcontrol/worker.rb,
|
722
|
+
| spec/groundcontrol/mixins_spec.rb, spec/groundcontrol/queue_spec.rb,
|
723
|
+
| spec/groundcontrol_spec.rb, spec/helpers.rb,
|
724
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
725
|
+
| spec/laika/groundcontrol/queue_spec.rb,
|
726
|
+
| spec/laika/groundcontrol/task_spec.rb,
|
727
|
+
| spec/laika/groundcontrol_spec.rb,
|
728
|
+
| spec/lib/groundcontrolconstants.rb,
|
729
|
+
| spec/lib/groundcontrolhelpers.rb:
|
730
|
+
| Checkpoint of the weekend's work
|
731
|
+
| [4d3da7e3530b]
|
732
|
+
|
|
651
733
|
2012-11-06 Michael Granger <ged@FaerieMUD.org>
|
652
734
|
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
735
|
+
o * .rvm.gems, Rakefile:
|
736
|
+
| Bump dependencies
|
737
|
+
| [c3602949056c]
|
738
|
+
|
|
657
739
|
2012-10-17 Michael Granger <ged@FaerieMUD.org>
|
658
740
|
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
741
|
+
o * .rvm.gems:
|
742
|
+
| Bump the laika-ldap version in the RVM gemset
|
743
|
+
| [03934b446cbf]
|
744
|
+
|
|
663
745
|
2012-10-09 Michael Granger <ged@FaerieMUD.org>
|
664
746
|
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
747
|
+
o * .rvm.gems:
|
748
|
+
| Bump laika-ldap version in rvm gems
|
749
|
+
| [314934c7b53c]
|
750
|
+
|
|
669
751
|
2012-09-24 Michael Granger <ged@FaerieMUD.org>
|
670
752
|
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
753
|
+
o * lib/laika/groundcontrol/tasks/sshscript.rb:
|
754
|
+
| Adding a 'nocleanup' option to the sshscript task class.
|
755
|
+
|
|
756
|
+
| This is to enable easy troubleshooting; just re-run a failing
|
757
|
+
| sshscript-based task with 'nocleanup' enabled, then the script will
|
758
|
+
| be preserved on the remote side after it runs.
|
759
|
+
| [0b84cb38b9ec]
|
760
|
+
|
|
679
761
|
2012-09-19 Michael Granger <ged@FaerieMUD.org>
|
680
762
|
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
763
|
+
o * .hgtags:
|
764
|
+
| Added tag v0.1.0 for changeset 3027c0e32c9a
|
765
|
+
| [7615c18e3f34]
|
766
|
+
|
|
767
|
+
o * .hgsigs:
|
768
|
+
| Added signature for changeset 34b213a4b895
|
769
|
+
| [3027c0e32c9a] [v0.1.0]
|
770
|
+
|
|
771
|
+
o * History.rdoc, lib/laika/groundcontrol.rb,
|
772
|
+
| spec/laika/groundcontrol/job_spec.rb:
|
773
|
+
| Bump the minor version, update history.
|
774
|
+
| [34b213a4b895]
|
775
|
+
|
|
776
|
+
o * bin/gcworkerd, lib/laika/groundcontrol/task.rb,
|
777
|
+
| lib/laika/groundcontrol/worker.rb:
|
778
|
+
| Adding beginnings of worker throttling.
|
779
|
+
| [399117e719ba]
|
780
|
+
|
|
781
|
+
o * .rvm.gems, Rakefile:
|
782
|
+
| Updating dependencies
|
783
|
+
| [9ea265531f5c]
|
784
|
+
|
|
703
785
|
2012-09-06 Michael Granger <ged@FaerieMUD.org>
|
704
786
|
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
787
|
+
o * .hgtags:
|
788
|
+
| Added tag v0.0.1 for changeset 82d1fc26369f
|
789
|
+
| [c438bca87c28]
|
790
|
+
|
|
791
|
+
o * .hgsigs:
|
792
|
+
| Added signature for changeset ea9a4eb4ef02
|
793
|
+
| [82d1fc26369f] [v0.0.1]
|
794
|
+
|
|
795
|
+
o * Manifest.txt, bin/groundcontrol:
|
796
|
+
| Remove the bin/groundcontrol stub.
|
797
|
+
| [ea9a4eb4ef02]
|
798
|
+
|
|
717
799
|
2012-08-20 Michael Granger <ged@FaerieMUD.org>
|
718
800
|
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
801
|
+
o * bin/gcworkerd:
|
802
|
+
| Use the configured path to the config file, not the one from ARGV
|
803
|
+
| [2e635ab669f0]
|
804
|
+
|
|
805
|
+
o * bin/gcworkerd:
|
806
|
+
| Configure gcworkerd via command-line options instead of the config
|
807
|
+
| file
|
808
|
+
| [797bd5264597]
|
809
|
+
|
|
810
|
+
o * bin/gcworkerd:
|
811
|
+
| Fix gem binary invocation.
|
812
|
+
| [e113c95b9f39]
|
813
|
+
|
|
814
|
+
o * lib/laika/groundcontrol.rb, lib/laika/groundcontrol/task.rb:
|
815
|
+
| Documentation update/fixes
|
816
|
+
| [e169ebcecff7]
|
817
|
+
|
|
736
818
|
2012-08-18 Michael Granger <ged@FaerieMUD.org>
|
737
819
|
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
820
|
+
o * .rvm.gems, Rakefile:
|
821
|
+
| Bump laika-base dependency
|
822
|
+
| [a66a334650d2]
|
823
|
+
|
|
824
|
+
o * lib/laika/groundcontrol/tasks/sshscript.rb:
|
825
|
+
| Turn off ssh protocol debugging in sshscript task
|
826
|
+
| [a7a23ebb2927]
|
827
|
+
|
|
746
828
|
2012-08-17 Michael Granger <ged@FaerieMUD.org>
|
747
829
|
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
830
|
+
o * README.rdoc:
|
831
|
+
| README fix
|
832
|
+
| [20aae4ccec08]
|
833
|
+
|
|
834
|
+
o * lib/laika/groundcontrol/tasks/ssh.rb:
|
835
|
+
| Small fixes for ssh task:
|
836
|
+
|
|
837
|
+
| - Use features
|
838
|
+
| - Use the fqdn instead of the simple hostname for the ssh command
|
839
|
+
| - Log the command shelljoined for easy testing.
|
840
|
+
| [59ce700da89b]
|
841
|
+
|
|
760
842
|
2012-08-16 Michael Granger <ged@FaerieMUD.org>
|
761
843
|
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
844
|
+
o * lib/laika/groundcontrol/queue.rb, lib/laika/groundcontrol/worker.rb:
|
845
|
+
| Logging tweaks to Queues and Workers
|
846
|
+
| [07abd8d84699]
|
847
|
+
|
|
848
|
+
o * lib/laika/groundcontrol/tasks/sshscript.rb:
|
849
|
+
| Write sshscripts to local /tmp instead of (possibly network) homedir
|
850
|
+
| [02c3cb736d43]
|
851
|
+
|
|
852
|
+
o * bin/gcworkerd:
|
853
|
+
| Fix select() to not poll in gcworkerd
|
854
|
+
| [081f8b6c55cc]
|
855
|
+
|
|
856
|
+
o * .rvm.gems, bin/gcworkerd, spec/laika/groundcontrol/queue_spec.rb,
|
857
|
+
| spec/laika/groundcontrol/task_spec.rb:
|
858
|
+
| Convert specs to use the update setup_test_database().
|
859
|
+
| [bcb8893fbd6a]
|
860
|
+
|
|
861
|
+
o * .rvm.gems, Rakefile:
|
862
|
+
| Updating dependencies.
|
863
|
+
| [a230af71e731]
|
864
|
+
|
|
865
|
+
o * lib/laika/groundcontrol/job.rb,
|
866
|
+
| spec/laika/groundcontrol/job_spec.rb:
|
867
|
+
| Explicitly serialize Job#task_options instead of relying on the
|
868
|
+
| flaky serialization plugin.
|
869
|
+
| [54c014ed337b]
|
870
|
+
|
|
871
|
+
o * lib/laika/groundcontrol/worker.rb:
|
872
|
+
| Refactor the child part of GroundControl::Worker.start into methods
|
873
|
+
| [89621596bf88]
|
874
|
+
|
|
793
875
|
2012-08-15 Michael Granger <ged@FaerieMUD.org>
|
794
876
|
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
877
|
+
o * experiments/producer-sketch.rb, lib/laika/groundcontrol.rb,
|
878
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
879
|
+
| lib/laika/groundcontrol/task.rb,
|
880
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
881
|
+
| lib/laika/groundcontrol/tasks/ssh.rb,
|
882
|
+
| lib/laika/groundcontrol/tasks/sshscript.rb,
|
883
|
+
| spec/laika/groundcontrol/queue_spec.rb,
|
884
|
+
| spec/laika/groundcontrol/task_spec.rb:
|
885
|
+
| More work on the Job and Task classes.
|
886
|
+
|
|
887
|
+
| - Simplified job/task arguments to always be a hash of options,
|
888
|
+
| renamed to task_options to reflect this.
|
889
|
+
| - Pulled some utility methods up from concrete Task classes for
|
890
|
+
| pinging remote hosts, expanding hostnames to fqdns, etc.
|
891
|
+
| - Refactored existing base task types to use the new refactored
|
892
|
+
| methods.
|
893
|
+
| [6ae7216e907e]
|
894
|
+
|
|
813
895
|
2012-08-15 Mahlon E. Smith <mahlon@laika.com>
|
814
896
|
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
897
|
+
o * bin/gcworkerd, lib/laika/groundcontrol/job.rb,
|
898
|
+
| lib/laika/groundcontrol/task.rb,
|
899
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
900
|
+
| lib/laika/groundcontrol/tasks/ssh.rb:
|
901
|
+
| Checkpoint of yesterday's work.
|
902
|
+
| [b46ef27c763e]
|
903
|
+
|
|
822
904
|
2012-08-13 Michael Granger <ged@FaerieMUD.org>
|
823
905
|
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
906
|
+
o * lib/laika/groundcontrol/tasks/sshscript.rb:
|
907
|
+
| Whitespace fixes
|
908
|
+
| [c08e4416dfd7]
|
909
|
+
|
|
828
910
|
2012-08-07 Michael Granger <ged@FaerieMUD.org>
|
829
911
|
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
912
|
+
o * .hgignore, .rvm.gems, Rakefile, lib/laika/groundcontrol/task.rb,
|
913
|
+
| spec/laika/groundcontrol/task_spec.rb,
|
914
|
+
| spec/lib/groundcontrolhelpers.rb:
|
915
|
+
| Add a spec to cover Task#on_error.
|
916
|
+
| [cfa2126c2879]
|
917
|
+
|
|
836
918
|
2012-08-06 Michael Granger <ged@FaerieMUD.org>
|
837
919
|
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
920
|
+
o * .hgignore, README.rdoc, Rakefile, bin/gcworkerd, experiments
|
921
|
+
| /producer-sketch.rb, experiments/test_script.sh,
|
922
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
923
|
+
| lib/laika/groundcontrol/task.rb,
|
924
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
925
|
+
| lib/laika/groundcontrol/tasks/ssh.rb,
|
926
|
+
| lib/laika/groundcontrol/tasks/sshscript.rb,
|
927
|
+
| lib/laika/groundcontrol/worker.rb:
|
928
|
+
| Documentation and consistency updates.
|
929
|
+
|
|
930
|
+
| - Wrote initial API docs for Task, Worker, Job, and Queue.
|
931
|
+
| - Updated the pinger side of the producer sketch, and then rewrote the
|
932
|
+
| sshscript side to use Queue#add.
|
933
|
+
| - Renamed Pinger#unavailable to #problem.
|
934
|
+
| - Consolidated SSHScript task logic to its #run method for easier
|
935
|
+
| inheritance/consistency.
|
936
|
+
| [f0a7bfc7ea6a]
|
937
|
+
|
|
938
|
+
o * bin/gcworkerd:
|
939
|
+
| Remove more debugging noise
|
940
|
+
| [aa04b9a1590b]
|
941
|
+
|
|
860
942
|
2012-08-02 Michael Granger <ged@FaerieMUD.org>
|
861
943
|
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
944
|
+
o * .rvm.gems, Manifest.txt, Rakefile, lib/laika/groundcontrol/job.rb,
|
945
|
+
| lib/laika/groundcontrol/queue.rb,
|
946
|
+
| lib/laika/groundcontrol/tasks/sshscript.rb,
|
947
|
+
| lib/laika/groundcontrol/worker.rb:
|
948
|
+
| Finish up the initial implementation of the ssh-based task classes.
|
949
|
+
| [5d9192bcfb71]
|
950
|
+
|
|
951
|
+
o * bin/gcworkerd:
|
952
|
+
| Remove the explicit debug logging from gcworkerd
|
953
|
+
| [2d52fc8a521c]
|
954
|
+
|
|
955
|
+
o * experiments/producer-sketch.rb, experiments/test_script.sh:
|
956
|
+
| Update the producer experiment to use the ssh-script task
|
957
|
+
| [80a0d6635300]
|
958
|
+
|
|
959
|
+
o * lib/laika/groundcontrol/tasks/ssh.rb:
|
960
|
+
| Use Ruby1.9 spawn instead of Open3 for the SSH task's pipe
|
961
|
+
| [d6ab8ee0d6cc]
|
962
|
+
|
|
963
|
+
o * lib/laika/groundcontrol/tasks/pinger.rb:
|
964
|
+
| Fix require in Pinger task
|
965
|
+
| [dd2170ed86d3]
|
966
|
+
|
|
967
|
+
o * experiments/ssh_system.rb:
|
968
|
+
| Adding an experiment
|
969
|
+
| [2f8a6c7173e0]
|
970
|
+
|
|
971
|
+
o * bin/gcworkerd:
|
972
|
+
| Fixed child cleanup in the gcworkerd (pair: mahlon)
|
973
|
+
| [40d2447fd704]
|
974
|
+
|
|
893
975
|
2012-08-02 Mahlon E. Smith <mahlon@laika.com>
|
894
976
|
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
977
|
+
o * experiments/producer-sketch.rb, lib/laika/groundcontrol/queue.rb,
|
978
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
979
|
+
| lib/laika/groundcontrol/tasks/ssh.rb,
|
980
|
+
| lib/laika/groundcontrol/tasks/sshscript.rb:
|
981
|
+
| Checkpoint commit of ssh GroundControl tasks.
|
982
|
+
| [dff259b79441]
|
983
|
+
|
|
902
984
|
2012-07-31 Mahlon E. Smith <mahlon@laika.com>
|
903
985
|
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
986
|
+
o * bin/gcworkerd, experiments/producer-sketch.rb,
|
987
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
988
|
+
| lib/laika/groundcontrol/task.rb,
|
989
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
990
|
+
| lib/laika/groundcontrol/worker.rb,
|
991
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
992
|
+
| spec/laika/groundcontrol/task_spec.rb:
|
993
|
+
| Small, misc updates:
|
994
|
+
|
|
995
|
+
| - Small whitespace and comment fixes.
|
996
|
+
| - Alter the producer sketch to accept a single host.
|
997
|
+
| - Remove the #on_startup API requirement for tasks -- there may not be
|
998
|
+
| any setup a task needs to perform, so it seems odd to make that
|
999
|
+
| mandatory.
|
1000
|
+
| - Small display fix for task class names.
|
1001
|
+
| - Finished up the pinger example task.
|
1002
|
+
| - Ensure jobs are destroyed/removed on script errors
|
1003
|
+
| [1ca5aaeb1ed7]
|
1004
|
+
|
|
923
1005
|
2012-07-30 Michael Granger <ged@FaerieMUD.org>
|
924
1006
|
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
1007
|
+
o * bin/gcworkerd, lib/laika/groundcontrol/worker.rb:
|
1008
|
+
| Remove spammy debugging; set application name
|
1009
|
+
| [90b8cd19faa7]
|
1010
|
+
|
|
1011
|
+
o * bin/gcworkerd, lib/laika/groundcontrol/worker.rb:
|
1012
|
+
| Fix signal-handling in gcworkerd
|
1013
|
+
| [34509c739e1b]
|
1014
|
+
|
|
1015
|
+
o * .rvm.gems, bin/gcworkerd, lib/laika/groundcontrol.rb,
|
1016
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
1017
|
+
| lib/laika/groundcontrol/task.rb,
|
1018
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
1019
|
+
| lib/laika/groundcontrol/worker.rb,
|
1020
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
1021
|
+
| spec/laika/groundcontrol/task_spec.rb:
|
1022
|
+
| Adding first whack at gcworkerd and Task class
|
1023
|
+
| [3ea444e5997d]
|
1024
|
+
|
|
943
1025
|
2012-07-27 Michael Granger <ged@FaerieMUD.org>
|
944
1026
|
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
1027
|
+
o * .rvm.gems, Rakefile, bin/gcworkerd, experiments/consumer-sketch.rb,
|
1028
|
+
| experiments/producer-sketch.rb, lib/laika/groundcontrol.rb,
|
1029
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
1030
|
+
| lib/laika/groundcontrol/task.rb,
|
1031
|
+
| lib/laika/groundcontrol/tasks/pinger.rb,
|
1032
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
1033
|
+
| spec/laika/groundcontrol/queue_spec.rb,
|
1034
|
+
| spec/laika/groundcontrol/task_spec.rb:
|
1035
|
+
| Snapshot of Thursday's work.
|
1036
|
+
| [e8da1957a10d]
|
1037
|
+
|
|
956
1038
|
2012-07-26 Michael Granger <ged@FaerieMUD.org>
|
957
1039
|
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
1040
|
+
o * .rvm.gems, Rakefile, experiments/consumer-sketch.rb, experiments
|
1041
|
+
| /producer-sketch.rb, lib/laika/groundcontrol/job.rb,
|
1042
|
+
| lib/laika/groundcontrol/queue.rb:
|
1043
|
+
| Fix queueing logic and update the experiments
|
1044
|
+
| [7a3609d96123]
|
1045
|
+
|
|
964
1046
|
2012-07-25 Michael Granger <ged@FaerieMUD.org>
|
965
1047
|
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
1048
|
+
o * .hgignore, .rvm.gems, .tm_properties, Manifest.txt,
|
1049
|
+
| experiments/.foreman, experiments/Procfile, experiments/consumer-
|
1050
|
+
| sketch.rb, experiments/producer-sketch.rb, experiments/sketch.rb,
|
1051
|
+
| lib/laika/groundcontrol.rb, lib/laika/groundcontrol/job.rb,
|
1052
|
+
| lib/laika/groundcontrol/queue.rb,
|
1053
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
1054
|
+
| spec/laika/groundcontrol/queue_spec.rb:
|
1055
|
+
| Checkpoint commit of afternoon's work (pair: mhix)
|
1056
|
+
| [501304e7ae7b]
|
1057
|
+
|
|
1058
|
+
o * experiments/sketch.rb, lib/laika/groundcontrol.rb,
|
1059
|
+
| lib/laika/groundcontrol/job.rb, lib/laika/groundcontrol/queue.rb,
|
1060
|
+
| spec/laika/groundcontrol/job_spec.rb,
|
1061
|
+
| spec/laika/groundcontrol_spec.rb,
|
1062
|
+
| spec/lib/groundcontrolconstants.rb,
|
1063
|
+
| spec/lib/groundcontrolhelpers.rb:
|
1064
|
+
| Checkpoint commit of morning's work (pair: mhix)
|
1065
|
+
| [8cea2906f4fa]
|
1066
|
+
|
|
1067
|
+
o * .pryrc:
|
1068
|
+
| Updating pryrc
|
1069
|
+
| [69a954ee8bb9]
|
1070
|
+
|
|
1071
|
+
o * .rvm.gems, .rvmrc, Rakefile:
|
1072
|
+
| Bumping laika-db dependency version
|
1073
|
+
| [f2cff3435f39]
|
1074
|
+
|
|
993
1075
|
2012-07-24 Michael Granger <ged@FaerieMUD.org>
|
994
1076
|
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1077
|
+
o * .autotest, .hgignore, .irbrc, .pryrc, History.rdoc, Manifest.txt,
|
1078
|
+
README.rdoc, Rakefile, bin/groundcontrol,
|
1079
|
+
lib/laika/groundcontrol.rb, spec/laika/groundcontrol_spec.rb,
|
1080
|
+
spec/lib/groundcontrolconstants.rb,
|
1081
|
+
spec/lib/groundcontrolhelpers.rb:
|
1082
|
+
Initial project boilerplate
|
1083
|
+
[99fbce8884cd]
|