docker-client 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.md +3 -1
- data/Rakefile +18 -0
- data/lib/docker/error.rb +1 -0
- data/lib/docker/error/image_not_found.rb +7 -0
- data/lib/docker/resource/container.rb +10 -0
- data/lib/docker/resource/image.rb +43 -0
- data/lib/docker/version.rb +1 -1
- data/spec/cassettes/Docker_Connection/returns_a_stream.yml +171 -0
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_a_basic_request.yml +3 -12
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_get_request.yml +3 -77
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_post_request.yml +189 -0
- data/spec/cassettes/Docker_Connection/returns_status_404_for_non_existent_path.yml +2 -2
- data/spec/cassettes/Docker_Connection/sets_given_query_parameters.yml +2 -2
- data/spec/cassettes/Docker_Connection/sets_given_request_headers.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/attach/raises_an_exception_for_an_unknown_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/changes/inspects_the_container_s_filesystem_changes.yml +210 -0
- data/spec/cassettes/Docker_Resource_Container/commit/creates_a_new_image_from_the_container_s_changes.yml +199 -0
- data/spec/cassettes/Docker_Resource_Container/commit/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/create/raises_an_exception_when_called_with_invalid_options.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/create/with_many_settings.yml +3 -3
- data/spec/cassettes/Docker_Resource_Container/create/with_minimal_settings.yml +3 -3
- data/spec/cassettes/Docker_Resource_Container/kill/raises_an_exception_for_an_unknow_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/kill/the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/lists/all_running_containers.yml +7 -17
- data/spec/cassettes/Docker_Resource_Container/lists/limit_last_created_containers.yml +5 -5
- data/spec/cassettes/Docker_Resource_Container/lists/non-running_processes_too.yml +10 -85
- data/spec/cassettes/Docker_Resource_Container/lists/processes_before_a_certain_created_container.yml +303 -0
- data/spec/cassettes/Docker_Resource_Container/lists/processes_since_a_certain_created_container.yml +217 -0
- data/spec/cassettes/Docker_Resource_Container/logs/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stderr_of_a_container.yml +154 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stdout_of_a_container.yml +154 -0
- data/spec/cassettes/Docker_Resource_Container/remove/deletes_the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/remove/raises_an_exception_with_an_invalid_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/restarts/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/restarts/the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/shows/the_low_level_details.yml +315 -0
- data/spec/cassettes/Docker_Resource_Container/start/brings_a_container_into_state_running.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/start/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/stop/halts_a_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/stop/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/wait/blocks_until_the_container_stops.yml +196 -0
- data/spec/cassettes/Docker_Resource_Container/wait/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Image/history/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/history/size/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/history/step/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/list/.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/list/includes_latest_base_image.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/list/size/.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/remove/deletes_the_image.yml +192 -0
- data/spec/cassettes/Docker_Resource_Image/remove/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/Docker_Resource_Image/show/.yml +42 -0
- data/spec/cassettes/Docker_Resource_Image/show/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/Docker_Resource_Image/tag/an_image_into_a_repository.yml +30 -0
- data/spec/cassettes/Docker_Resource_Image/tag/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/test_setup/commit_container.yml +423 -0
- data/spec/cassettes/test_setup/create_container__command_/bin/sh_-c_while_true_do_echo_hello_world_sleep_1_done_.yml +33 -0
- data/spec/cassettes/test_setup/create_container_connection_post.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_attach.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_changes.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_commit.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_kill.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_lists1.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_lists2.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_logs.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_remove.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_restarts.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_shows.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_start.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_stop.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_wait.yml +3 -3
- data/spec/cassettes/test_setup/create_container_test-image.yml +33 -0
- data/spec/cassettes/test_setup/create_container_test-returns-a-stream.yml +34 -0
- data/spec/cassettes/test_setup/create_container_test-tag.yml +33 -0
- data/spec/cassettes/test_setup/delete_container.yml +3727 -0
- data/spec/cassettes/test_setup/delete_image.yml +409 -0
- data/spec/cassettes/test_setup/start_container.yml +2813 -0
- data/spec/cassettes/test_setup/wait_on_container.yml +1080 -0
- data/spec/docker/connection_spec.rb +1 -1
- data/spec/docker/resource/container_spec.rb +26 -11
- data/spec/docker/resource/image_spec.rb +104 -0
- data/spec/helpers.rb +31 -2
- metadata +55 -2
@@ -60,4 +60,1084 @@ http_interactions:
|
|
60
60
|
eyJTdGF0dXNDb2RlIjowfQ==
|
61
61
|
http_version:
|
62
62
|
recorded_at: Sat, 25 May 2013 16:05:35 GMT
|
63
|
+
- request:
|
64
|
+
method: post
|
65
|
+
uri: http://10.0.5.5:4243/containers/512c3ce5fbee/wait
|
66
|
+
body:
|
67
|
+
encoding: US-ASCII
|
68
|
+
string: ''
|
69
|
+
headers:
|
70
|
+
Content-Type:
|
71
|
+
- application/json
|
72
|
+
response:
|
73
|
+
status:
|
74
|
+
code: 200
|
75
|
+
message: !binary |-
|
76
|
+
T0s=
|
77
|
+
headers:
|
78
|
+
!binary "Q29udGVudC1UeXBl":
|
79
|
+
- !binary |-
|
80
|
+
YXBwbGljYXRpb24vanNvbg==
|
81
|
+
!binary "RGF0ZQ==":
|
82
|
+
- !binary |-
|
83
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMDo1OTo1NCBHTVQ=
|
84
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
85
|
+
- !binary |-
|
86
|
+
Y2h1bmtlZA==
|
87
|
+
body:
|
88
|
+
encoding: ASCII-8BIT
|
89
|
+
string: !binary |-
|
90
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
91
|
+
http_version:
|
92
|
+
recorded_at: Mon, 03 Jun 2013 20:59:54 GMT
|
93
|
+
- request:
|
94
|
+
method: post
|
95
|
+
uri: http://10.0.5.5:4243/containers/f28f1e3082c0/wait
|
96
|
+
body:
|
97
|
+
encoding: US-ASCII
|
98
|
+
string: ''
|
99
|
+
headers:
|
100
|
+
Content-Type:
|
101
|
+
- application/json
|
102
|
+
response:
|
103
|
+
status:
|
104
|
+
code: 200
|
105
|
+
message: !binary |-
|
106
|
+
T0s=
|
107
|
+
headers:
|
108
|
+
!binary "Q29udGVudC1UeXBl":
|
109
|
+
- !binary |-
|
110
|
+
YXBwbGljYXRpb24vanNvbg==
|
111
|
+
!binary "RGF0ZQ==":
|
112
|
+
- !binary |-
|
113
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowMDowNiBHTVQ=
|
114
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
115
|
+
- !binary |-
|
116
|
+
Y2h1bmtlZA==
|
117
|
+
body:
|
118
|
+
encoding: ASCII-8BIT
|
119
|
+
string: !binary |-
|
120
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
121
|
+
http_version:
|
122
|
+
recorded_at: Mon, 03 Jun 2013 21:00:06 GMT
|
123
|
+
- request:
|
124
|
+
method: post
|
125
|
+
uri: http://10.0.5.5:4243/containers/59397c6fcc7f/wait
|
126
|
+
body:
|
127
|
+
encoding: US-ASCII
|
128
|
+
string: ''
|
129
|
+
headers:
|
130
|
+
Content-Type:
|
131
|
+
- application/json
|
132
|
+
response:
|
133
|
+
status:
|
134
|
+
code: 200
|
135
|
+
message: !binary |-
|
136
|
+
T0s=
|
137
|
+
headers:
|
138
|
+
!binary "Q29udGVudC1UeXBl":
|
139
|
+
- !binary |-
|
140
|
+
YXBwbGljYXRpb24vanNvbg==
|
141
|
+
!binary "RGF0ZQ==":
|
142
|
+
- !binary |-
|
143
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowMDowOSBHTVQ=
|
144
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
145
|
+
- !binary |-
|
146
|
+
Y2h1bmtlZA==
|
147
|
+
body:
|
148
|
+
encoding: ASCII-8BIT
|
149
|
+
string: !binary |-
|
150
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
151
|
+
http_version:
|
152
|
+
recorded_at: Mon, 03 Jun 2013 21:00:08 GMT
|
153
|
+
- request:
|
154
|
+
method: post
|
155
|
+
uri: http://10.0.5.5:4243/containers/c428968a78b6/wait
|
156
|
+
body:
|
157
|
+
encoding: US-ASCII
|
158
|
+
string: ''
|
159
|
+
headers:
|
160
|
+
Content-Type:
|
161
|
+
- application/json
|
162
|
+
response:
|
163
|
+
status:
|
164
|
+
code: 200
|
165
|
+
message: !binary |-
|
166
|
+
T0s=
|
167
|
+
headers:
|
168
|
+
!binary "Q29udGVudC1UeXBl":
|
169
|
+
- !binary |-
|
170
|
+
YXBwbGljYXRpb24vanNvbg==
|
171
|
+
!binary "RGF0ZQ==":
|
172
|
+
- !binary |-
|
173
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowMDoxNSBHTVQ=
|
174
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
175
|
+
- !binary |-
|
176
|
+
Y2h1bmtlZA==
|
177
|
+
body:
|
178
|
+
encoding: ASCII-8BIT
|
179
|
+
string: !binary |-
|
180
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
181
|
+
http_version:
|
182
|
+
recorded_at: Mon, 03 Jun 2013 21:00:14 GMT
|
183
|
+
- request:
|
184
|
+
method: post
|
185
|
+
uri: http://10.0.5.5:4243/containers/17f43281496e/wait
|
186
|
+
body:
|
187
|
+
encoding: US-ASCII
|
188
|
+
string: ''
|
189
|
+
headers:
|
190
|
+
Content-Type:
|
191
|
+
- application/json
|
192
|
+
response:
|
193
|
+
status:
|
194
|
+
code: 200
|
195
|
+
message: !binary |-
|
196
|
+
T0s=
|
197
|
+
headers:
|
198
|
+
!binary "Q29udGVudC1UeXBl":
|
199
|
+
- !binary |-
|
200
|
+
YXBwbGljYXRpb24vanNvbg==
|
201
|
+
!binary "RGF0ZQ==":
|
202
|
+
- !binary |-
|
203
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowMDoxNyBHTVQ=
|
204
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
205
|
+
- !binary |-
|
206
|
+
Y2h1bmtlZA==
|
207
|
+
body:
|
208
|
+
encoding: ASCII-8BIT
|
209
|
+
string: !binary |-
|
210
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
211
|
+
http_version:
|
212
|
+
recorded_at: Mon, 03 Jun 2013 21:00:17 GMT
|
213
|
+
- request:
|
214
|
+
method: post
|
215
|
+
uri: http://10.0.5.5:4243/containers/cd0ad6d65741/wait
|
216
|
+
body:
|
217
|
+
encoding: US-ASCII
|
218
|
+
string: ''
|
219
|
+
headers:
|
220
|
+
Content-Type:
|
221
|
+
- application/json
|
222
|
+
response:
|
223
|
+
status:
|
224
|
+
code: 200
|
225
|
+
message: !binary |-
|
226
|
+
T0s=
|
227
|
+
headers:
|
228
|
+
!binary "Q29udGVudC1UeXBl":
|
229
|
+
- !binary |-
|
230
|
+
YXBwbGljYXRpb24vanNvbg==
|
231
|
+
!binary "RGF0ZQ==":
|
232
|
+
- !binary |-
|
233
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDoxOSBHTVQ=
|
234
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
235
|
+
- !binary |-
|
236
|
+
Y2h1bmtlZA==
|
237
|
+
body:
|
238
|
+
encoding: ASCII-8BIT
|
239
|
+
string: !binary |-
|
240
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
241
|
+
http_version:
|
242
|
+
recorded_at: Mon, 03 Jun 2013 21:04:19 GMT
|
243
|
+
- request:
|
244
|
+
method: post
|
245
|
+
uri: http://10.0.5.5:4243/containers/55d7e2344dd3/wait
|
246
|
+
body:
|
247
|
+
encoding: US-ASCII
|
248
|
+
string: ''
|
249
|
+
headers:
|
250
|
+
Content-Type:
|
251
|
+
- application/json
|
252
|
+
response:
|
253
|
+
status:
|
254
|
+
code: 200
|
255
|
+
message: !binary |-
|
256
|
+
T0s=
|
257
|
+
headers:
|
258
|
+
!binary "Q29udGVudC1UeXBl":
|
259
|
+
- !binary |-
|
260
|
+
YXBwbGljYXRpb24vanNvbg==
|
261
|
+
!binary "RGF0ZQ==":
|
262
|
+
- !binary |-
|
263
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDoyMiBHTVQ=
|
264
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
265
|
+
- !binary |-
|
266
|
+
Y2h1bmtlZA==
|
267
|
+
body:
|
268
|
+
encoding: ASCII-8BIT
|
269
|
+
string: !binary |-
|
270
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
271
|
+
http_version:
|
272
|
+
recorded_at: Mon, 03 Jun 2013 21:04:21 GMT
|
273
|
+
- request:
|
274
|
+
method: post
|
275
|
+
uri: http://10.0.5.5:4243/containers/003acb404098/wait
|
276
|
+
body:
|
277
|
+
encoding: US-ASCII
|
278
|
+
string: ''
|
279
|
+
headers:
|
280
|
+
Content-Type:
|
281
|
+
- application/json
|
282
|
+
response:
|
283
|
+
status:
|
284
|
+
code: 200
|
285
|
+
message: !binary |-
|
286
|
+
T0s=
|
287
|
+
headers:
|
288
|
+
!binary "Q29udGVudC1UeXBl":
|
289
|
+
- !binary |-
|
290
|
+
YXBwbGljYXRpb24vanNvbg==
|
291
|
+
!binary "RGF0ZQ==":
|
292
|
+
- !binary |-
|
293
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDozMiBHTVQ=
|
294
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
295
|
+
- !binary |-
|
296
|
+
Y2h1bmtlZA==
|
297
|
+
body:
|
298
|
+
encoding: ASCII-8BIT
|
299
|
+
string: !binary |-
|
300
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
301
|
+
http_version:
|
302
|
+
recorded_at: Mon, 03 Jun 2013 21:04:32 GMT
|
303
|
+
- request:
|
304
|
+
method: post
|
305
|
+
uri: http://10.0.5.5:4243/containers/ee4d3a14d3c6/wait
|
306
|
+
body:
|
307
|
+
encoding: US-ASCII
|
308
|
+
string: ''
|
309
|
+
headers:
|
310
|
+
Content-Type:
|
311
|
+
- application/json
|
312
|
+
response:
|
313
|
+
status:
|
314
|
+
code: 200
|
315
|
+
message: !binary |-
|
316
|
+
T0s=
|
317
|
+
headers:
|
318
|
+
!binary "Q29udGVudC1UeXBl":
|
319
|
+
- !binary |-
|
320
|
+
YXBwbGljYXRpb24vanNvbg==
|
321
|
+
!binary "RGF0ZQ==":
|
322
|
+
- !binary |-
|
323
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDo0NSBHTVQ=
|
324
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
325
|
+
- !binary |-
|
326
|
+
Y2h1bmtlZA==
|
327
|
+
body:
|
328
|
+
encoding: ASCII-8BIT
|
329
|
+
string: !binary |-
|
330
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
331
|
+
http_version:
|
332
|
+
recorded_at: Mon, 03 Jun 2013 21:04:45 GMT
|
333
|
+
- request:
|
334
|
+
method: post
|
335
|
+
uri: http://10.0.5.5:4243/containers/286af8bb0142/wait
|
336
|
+
body:
|
337
|
+
encoding: US-ASCII
|
338
|
+
string: ''
|
339
|
+
headers:
|
340
|
+
Content-Type:
|
341
|
+
- application/json
|
342
|
+
response:
|
343
|
+
status:
|
344
|
+
code: 200
|
345
|
+
message: !binary |-
|
346
|
+
T0s=
|
347
|
+
headers:
|
348
|
+
!binary "Q29udGVudC1UeXBl":
|
349
|
+
- !binary |-
|
350
|
+
YXBwbGljYXRpb24vanNvbg==
|
351
|
+
!binary "RGF0ZQ==":
|
352
|
+
- !binary |-
|
353
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDo0OCBHTVQ=
|
354
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
355
|
+
- !binary |-
|
356
|
+
Y2h1bmtlZA==
|
357
|
+
body:
|
358
|
+
encoding: ASCII-8BIT
|
359
|
+
string: !binary |-
|
360
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
361
|
+
http_version:
|
362
|
+
recorded_at: Mon, 03 Jun 2013 21:04:48 GMT
|
363
|
+
- request:
|
364
|
+
method: post
|
365
|
+
uri: http://10.0.5.5:4243/containers/b8acff256552/wait
|
366
|
+
body:
|
367
|
+
encoding: US-ASCII
|
368
|
+
string: ''
|
369
|
+
headers:
|
370
|
+
Content-Type:
|
371
|
+
- application/json
|
372
|
+
response:
|
373
|
+
status:
|
374
|
+
code: 200
|
375
|
+
message: !binary |-
|
376
|
+
T0s=
|
377
|
+
headers:
|
378
|
+
!binary "Q29udGVudC1UeXBl":
|
379
|
+
- !binary |-
|
380
|
+
YXBwbGljYXRpb24vanNvbg==
|
381
|
+
!binary "RGF0ZQ==":
|
382
|
+
- !binary |-
|
383
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNjoyNCBHTVQ=
|
384
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
385
|
+
- !binary |-
|
386
|
+
Y2h1bmtlZA==
|
387
|
+
body:
|
388
|
+
encoding: ASCII-8BIT
|
389
|
+
string: !binary |-
|
390
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
391
|
+
http_version:
|
392
|
+
recorded_at: Mon, 03 Jun 2013 21:06:24 GMT
|
393
|
+
- request:
|
394
|
+
method: post
|
395
|
+
uri: http://10.0.5.5:4243/containers/093fe0394dd6/wait
|
396
|
+
body:
|
397
|
+
encoding: US-ASCII
|
398
|
+
string: ''
|
399
|
+
headers:
|
400
|
+
Content-Type:
|
401
|
+
- application/json
|
402
|
+
response:
|
403
|
+
status:
|
404
|
+
code: 200
|
405
|
+
message: !binary |-
|
406
|
+
T0s=
|
407
|
+
headers:
|
408
|
+
!binary "Q29udGVudC1UeXBl":
|
409
|
+
- !binary |-
|
410
|
+
YXBwbGljYXRpb24vanNvbg==
|
411
|
+
!binary "RGF0ZQ==":
|
412
|
+
- !binary |-
|
413
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowOTozOSBHTVQ=
|
414
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
415
|
+
- !binary |-
|
416
|
+
Y2h1bmtlZA==
|
417
|
+
body:
|
418
|
+
encoding: ASCII-8BIT
|
419
|
+
string: !binary |-
|
420
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
421
|
+
http_version:
|
422
|
+
recorded_at: Mon, 03 Jun 2013 21:09:39 GMT
|
423
|
+
- request:
|
424
|
+
method: post
|
425
|
+
uri: http://10.0.5.5:4243/containers/ec87272f088a/wait
|
426
|
+
body:
|
427
|
+
encoding: US-ASCII
|
428
|
+
string: ''
|
429
|
+
headers:
|
430
|
+
Content-Type:
|
431
|
+
- application/json
|
432
|
+
response:
|
433
|
+
status:
|
434
|
+
code: 200
|
435
|
+
message: !binary |-
|
436
|
+
T0s=
|
437
|
+
headers:
|
438
|
+
!binary "Q29udGVudC1UeXBl":
|
439
|
+
- !binary |-
|
440
|
+
YXBwbGljYXRpb24vanNvbg==
|
441
|
+
!binary "RGF0ZQ==":
|
442
|
+
- !binary |-
|
443
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowOTo0MCBHTVQ=
|
444
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
445
|
+
- !binary |-
|
446
|
+
Y2h1bmtlZA==
|
447
|
+
body:
|
448
|
+
encoding: ASCII-8BIT
|
449
|
+
string: !binary |-
|
450
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
451
|
+
http_version:
|
452
|
+
recorded_at: Mon, 03 Jun 2013 21:09:40 GMT
|
453
|
+
- request:
|
454
|
+
method: post
|
455
|
+
uri: http://10.0.5.5:4243/containers/8b353ded3343/wait
|
456
|
+
body:
|
457
|
+
encoding: US-ASCII
|
458
|
+
string: ''
|
459
|
+
headers:
|
460
|
+
Content-Type:
|
461
|
+
- application/json
|
462
|
+
response:
|
463
|
+
status:
|
464
|
+
code: 200
|
465
|
+
message: !binary |-
|
466
|
+
T0s=
|
467
|
+
headers:
|
468
|
+
!binary "Q29udGVudC1UeXBl":
|
469
|
+
- !binary |-
|
470
|
+
YXBwbGljYXRpb24vanNvbg==
|
471
|
+
!binary "RGF0ZQ==":
|
472
|
+
- !binary |-
|
473
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowOTo1NSBHTVQ=
|
474
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
475
|
+
- !binary |-
|
476
|
+
Y2h1bmtlZA==
|
477
|
+
body:
|
478
|
+
encoding: ASCII-8BIT
|
479
|
+
string: !binary |-
|
480
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
481
|
+
http_version:
|
482
|
+
recorded_at: Mon, 03 Jun 2013 21:09:55 GMT
|
483
|
+
- request:
|
484
|
+
method: post
|
485
|
+
uri: http://10.0.5.5:4243/containers/249a77b7cd10/wait
|
486
|
+
body:
|
487
|
+
encoding: US-ASCII
|
488
|
+
string: ''
|
489
|
+
headers:
|
490
|
+
Content-Type:
|
491
|
+
- application/json
|
492
|
+
response:
|
493
|
+
status:
|
494
|
+
code: 200
|
495
|
+
message: !binary |-
|
496
|
+
T0s=
|
497
|
+
headers:
|
498
|
+
!binary "Q29udGVudC1UeXBl":
|
499
|
+
- !binary |-
|
500
|
+
YXBwbGljYXRpb24vanNvbg==
|
501
|
+
!binary "RGF0ZQ==":
|
502
|
+
- !binary |-
|
503
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToxMDowNCBHTVQ=
|
504
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
505
|
+
- !binary |-
|
506
|
+
Y2h1bmtlZA==
|
507
|
+
body:
|
508
|
+
encoding: ASCII-8BIT
|
509
|
+
string: !binary |-
|
510
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
511
|
+
http_version:
|
512
|
+
recorded_at: Mon, 03 Jun 2013 21:10:04 GMT
|
513
|
+
- request:
|
514
|
+
method: post
|
515
|
+
uri: http://10.0.5.5:4243/containers/7913afb1999e/wait
|
516
|
+
body:
|
517
|
+
encoding: US-ASCII
|
518
|
+
string: ''
|
519
|
+
headers:
|
520
|
+
Content-Type:
|
521
|
+
- application/json
|
522
|
+
response:
|
523
|
+
status:
|
524
|
+
code: 200
|
525
|
+
message: !binary |-
|
526
|
+
T0s=
|
527
|
+
headers:
|
528
|
+
!binary "Q29udGVudC1UeXBl":
|
529
|
+
- !binary |-
|
530
|
+
YXBwbGljYXRpb24vanNvbg==
|
531
|
+
!binary "RGF0ZQ==":
|
532
|
+
- !binary |-
|
533
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToxMDowNSBHTVQ=
|
534
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
535
|
+
- !binary |-
|
536
|
+
Y2h1bmtlZA==
|
537
|
+
body:
|
538
|
+
encoding: ASCII-8BIT
|
539
|
+
string: !binary |-
|
540
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
541
|
+
http_version:
|
542
|
+
recorded_at: Mon, 03 Jun 2013 21:10:05 GMT
|
543
|
+
- request:
|
544
|
+
method: post
|
545
|
+
uri: http://10.0.5.5:4243/containers/4fb29a135ce7/wait
|
546
|
+
body:
|
547
|
+
encoding: US-ASCII
|
548
|
+
string: ''
|
549
|
+
headers:
|
550
|
+
Content-Type:
|
551
|
+
- application/json
|
552
|
+
response:
|
553
|
+
status:
|
554
|
+
code: 200
|
555
|
+
message: !binary |-
|
556
|
+
T0s=
|
557
|
+
headers:
|
558
|
+
!binary "Q29udGVudC1UeXBl":
|
559
|
+
- !binary |-
|
560
|
+
YXBwbGljYXRpb24vanNvbg==
|
561
|
+
!binary "RGF0ZQ==":
|
562
|
+
- !binary |-
|
563
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMToxOSBHTVQ=
|
564
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
565
|
+
- !binary |-
|
566
|
+
Y2h1bmtlZA==
|
567
|
+
body:
|
568
|
+
encoding: ASCII-8BIT
|
569
|
+
string: !binary |-
|
570
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
571
|
+
http_version:
|
572
|
+
recorded_at: Mon, 03 Jun 2013 21:21:19 GMT
|
573
|
+
- request:
|
574
|
+
method: post
|
575
|
+
uri: http://10.0.5.5:4243/containers/5cda854c7f2b/wait
|
576
|
+
body:
|
577
|
+
encoding: US-ASCII
|
578
|
+
string: ''
|
579
|
+
headers:
|
580
|
+
Content-Type:
|
581
|
+
- application/json
|
582
|
+
response:
|
583
|
+
status:
|
584
|
+
code: 200
|
585
|
+
message: !binary |-
|
586
|
+
T0s=
|
587
|
+
headers:
|
588
|
+
!binary "Q29udGVudC1UeXBl":
|
589
|
+
- !binary |-
|
590
|
+
YXBwbGljYXRpb24vanNvbg==
|
591
|
+
!binary "RGF0ZQ==":
|
592
|
+
- !binary |-
|
593
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMToyMSBHTVQ=
|
594
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
595
|
+
- !binary |-
|
596
|
+
Y2h1bmtlZA==
|
597
|
+
body:
|
598
|
+
encoding: ASCII-8BIT
|
599
|
+
string: !binary |-
|
600
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
601
|
+
http_version:
|
602
|
+
recorded_at: Mon, 03 Jun 2013 21:21:21 GMT
|
603
|
+
- request:
|
604
|
+
method: post
|
605
|
+
uri: http://10.0.5.5:4243/containers/ec3ca1865f3a/wait
|
606
|
+
body:
|
607
|
+
encoding: US-ASCII
|
608
|
+
string: ''
|
609
|
+
headers:
|
610
|
+
Content-Type:
|
611
|
+
- application/json
|
612
|
+
response:
|
613
|
+
status:
|
614
|
+
code: 200
|
615
|
+
message: !binary |-
|
616
|
+
T0s=
|
617
|
+
headers:
|
618
|
+
!binary "Q29udGVudC1UeXBl":
|
619
|
+
- !binary |-
|
620
|
+
YXBwbGljYXRpb24vanNvbg==
|
621
|
+
!binary "RGF0ZQ==":
|
622
|
+
- !binary |-
|
623
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMTozOCBHTVQ=
|
624
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
625
|
+
- !binary |-
|
626
|
+
Y2h1bmtlZA==
|
627
|
+
body:
|
628
|
+
encoding: ASCII-8BIT
|
629
|
+
string: !binary |-
|
630
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
631
|
+
http_version:
|
632
|
+
recorded_at: Mon, 03 Jun 2013 21:21:38 GMT
|
633
|
+
- request:
|
634
|
+
method: post
|
635
|
+
uri: http://10.0.5.5:4243/containers/2da45de592e1/wait
|
636
|
+
body:
|
637
|
+
encoding: US-ASCII
|
638
|
+
string: ''
|
639
|
+
headers:
|
640
|
+
Content-Type:
|
641
|
+
- application/json
|
642
|
+
response:
|
643
|
+
status:
|
644
|
+
code: 200
|
645
|
+
message: !binary |-
|
646
|
+
T0s=
|
647
|
+
headers:
|
648
|
+
!binary "Q29udGVudC1UeXBl":
|
649
|
+
- !binary |-
|
650
|
+
YXBwbGljYXRpb24vanNvbg==
|
651
|
+
!binary "RGF0ZQ==":
|
652
|
+
- !binary |-
|
653
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMTo1MyBHTVQ=
|
654
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
655
|
+
- !binary |-
|
656
|
+
Y2h1bmtlZA==
|
657
|
+
body:
|
658
|
+
encoding: ASCII-8BIT
|
659
|
+
string: !binary |-
|
660
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
661
|
+
http_version:
|
662
|
+
recorded_at: Mon, 03 Jun 2013 21:21:53 GMT
|
663
|
+
- request:
|
664
|
+
method: post
|
665
|
+
uri: http://10.0.5.5:4243/containers/9255ab6e2053/wait
|
666
|
+
body:
|
667
|
+
encoding: US-ASCII
|
668
|
+
string: ''
|
669
|
+
headers:
|
670
|
+
Content-Type:
|
671
|
+
- application/json
|
672
|
+
response:
|
673
|
+
status:
|
674
|
+
code: 200
|
675
|
+
message: !binary |-
|
676
|
+
T0s=
|
677
|
+
headers:
|
678
|
+
!binary "Q29udGVudC1UeXBl":
|
679
|
+
- !binary |-
|
680
|
+
YXBwbGljYXRpb24vanNvbg==
|
681
|
+
!binary "RGF0ZQ==":
|
682
|
+
- !binary |-
|
683
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMTo1NiBHTVQ=
|
684
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
685
|
+
- !binary |-
|
686
|
+
Y2h1bmtlZA==
|
687
|
+
body:
|
688
|
+
encoding: ASCII-8BIT
|
689
|
+
string: !binary |-
|
690
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
691
|
+
http_version:
|
692
|
+
recorded_at: Mon, 03 Jun 2013 21:21:56 GMT
|
693
|
+
- request:
|
694
|
+
method: post
|
695
|
+
uri: http://10.0.5.5:4243/containers/028844c8efcd/wait
|
696
|
+
body:
|
697
|
+
encoding: US-ASCII
|
698
|
+
string: ''
|
699
|
+
headers:
|
700
|
+
Content-Type:
|
701
|
+
- application/json
|
702
|
+
response:
|
703
|
+
status:
|
704
|
+
code: 200
|
705
|
+
message: !binary |-
|
706
|
+
T0s=
|
707
|
+
headers:
|
708
|
+
!binary "Q29udGVudC1UeXBl":
|
709
|
+
- !binary |-
|
710
|
+
YXBwbGljYXRpb24vanNvbg==
|
711
|
+
!binary "RGF0ZQ==":
|
712
|
+
- !binary |-
|
713
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNToxMyBHTVQ=
|
714
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
715
|
+
- !binary |-
|
716
|
+
Y2h1bmtlZA==
|
717
|
+
body:
|
718
|
+
encoding: ASCII-8BIT
|
719
|
+
string: !binary |-
|
720
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
721
|
+
http_version:
|
722
|
+
recorded_at: Mon, 03 Jun 2013 21:25:13 GMT
|
723
|
+
- request:
|
724
|
+
method: post
|
725
|
+
uri: http://10.0.5.5:4243/containers/d6d46b79024e/wait
|
726
|
+
body:
|
727
|
+
encoding: US-ASCII
|
728
|
+
string: ''
|
729
|
+
headers:
|
730
|
+
Content-Type:
|
731
|
+
- application/json
|
732
|
+
response:
|
733
|
+
status:
|
734
|
+
code: 200
|
735
|
+
message: !binary |-
|
736
|
+
T0s=
|
737
|
+
headers:
|
738
|
+
!binary "Q29udGVudC1UeXBl":
|
739
|
+
- !binary |-
|
740
|
+
YXBwbGljYXRpb24vanNvbg==
|
741
|
+
!binary "RGF0ZQ==":
|
742
|
+
- !binary |-
|
743
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNToxNiBHTVQ=
|
744
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
745
|
+
- !binary |-
|
746
|
+
Y2h1bmtlZA==
|
747
|
+
body:
|
748
|
+
encoding: ASCII-8BIT
|
749
|
+
string: !binary |-
|
750
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
751
|
+
http_version:
|
752
|
+
recorded_at: Mon, 03 Jun 2013 21:25:16 GMT
|
753
|
+
- request:
|
754
|
+
method: post
|
755
|
+
uri: http://10.0.5.5:4243/containers/7f0f7e0baedc/wait
|
756
|
+
body:
|
757
|
+
encoding: US-ASCII
|
758
|
+
string: ''
|
759
|
+
headers:
|
760
|
+
Content-Type:
|
761
|
+
- application/json
|
762
|
+
response:
|
763
|
+
status:
|
764
|
+
code: 200
|
765
|
+
message: !binary |-
|
766
|
+
T0s=
|
767
|
+
headers:
|
768
|
+
!binary "Q29udGVudC1UeXBl":
|
769
|
+
- !binary |-
|
770
|
+
YXBwbGljYXRpb24vanNvbg==
|
771
|
+
!binary "RGF0ZQ==":
|
772
|
+
- !binary |-
|
773
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNTozMiBHTVQ=
|
774
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
775
|
+
- !binary |-
|
776
|
+
Y2h1bmtlZA==
|
777
|
+
body:
|
778
|
+
encoding: ASCII-8BIT
|
779
|
+
string: !binary |-
|
780
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
781
|
+
http_version:
|
782
|
+
recorded_at: Mon, 03 Jun 2013 21:25:32 GMT
|
783
|
+
- request:
|
784
|
+
method: post
|
785
|
+
uri: http://10.0.5.5:4243/containers/e0a0df374739/wait
|
786
|
+
body:
|
787
|
+
encoding: US-ASCII
|
788
|
+
string: ''
|
789
|
+
headers:
|
790
|
+
Content-Type:
|
791
|
+
- application/json
|
792
|
+
response:
|
793
|
+
status:
|
794
|
+
code: 200
|
795
|
+
message: !binary |-
|
796
|
+
T0s=
|
797
|
+
headers:
|
798
|
+
!binary "Q29udGVudC1UeXBl":
|
799
|
+
- !binary |-
|
800
|
+
YXBwbGljYXRpb24vanNvbg==
|
801
|
+
!binary "RGF0ZQ==":
|
802
|
+
- !binary |-
|
803
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNTo0NCBHTVQ=
|
804
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
805
|
+
- !binary |-
|
806
|
+
Y2h1bmtlZA==
|
807
|
+
body:
|
808
|
+
encoding: ASCII-8BIT
|
809
|
+
string: !binary |-
|
810
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
811
|
+
http_version:
|
812
|
+
recorded_at: Mon, 03 Jun 2013 21:25:44 GMT
|
813
|
+
- request:
|
814
|
+
method: post
|
815
|
+
uri: http://10.0.5.5:4243/containers/c0ee7f9ab39a/wait
|
816
|
+
body:
|
817
|
+
encoding: US-ASCII
|
818
|
+
string: ''
|
819
|
+
headers:
|
820
|
+
Content-Type:
|
821
|
+
- application/json
|
822
|
+
response:
|
823
|
+
status:
|
824
|
+
code: 200
|
825
|
+
message: !binary |-
|
826
|
+
T0s=
|
827
|
+
headers:
|
828
|
+
!binary "Q29udGVudC1UeXBl":
|
829
|
+
- !binary |-
|
830
|
+
YXBwbGljYXRpb24vanNvbg==
|
831
|
+
!binary "RGF0ZQ==":
|
832
|
+
- !binary |-
|
833
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNTo0NiBHTVQ=
|
834
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
835
|
+
- !binary |-
|
836
|
+
Y2h1bmtlZA==
|
837
|
+
body:
|
838
|
+
encoding: ASCII-8BIT
|
839
|
+
string: !binary |-
|
840
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
841
|
+
http_version:
|
842
|
+
recorded_at: Mon, 03 Jun 2013 21:25:46 GMT
|
843
|
+
- request:
|
844
|
+
method: post
|
845
|
+
uri: http://10.0.5.5:4243/containers/efc1661a7b42/wait
|
846
|
+
body:
|
847
|
+
encoding: US-ASCII
|
848
|
+
string: ''
|
849
|
+
headers:
|
850
|
+
Content-Type:
|
851
|
+
- application/json
|
852
|
+
response:
|
853
|
+
status:
|
854
|
+
code: 200
|
855
|
+
message: !binary |-
|
856
|
+
T0s=
|
857
|
+
headers:
|
858
|
+
!binary "Q29udGVudC1UeXBl":
|
859
|
+
- !binary |-
|
860
|
+
YXBwbGljYXRpb24vanNvbg==
|
861
|
+
!binary "RGF0ZQ==":
|
862
|
+
- !binary |-
|
863
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNjo1MSBHTVQ=
|
864
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
865
|
+
- !binary |-
|
866
|
+
Y2h1bmtlZA==
|
867
|
+
body:
|
868
|
+
encoding: ASCII-8BIT
|
869
|
+
string: !binary |-
|
870
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
871
|
+
http_version:
|
872
|
+
recorded_at: Mon, 03 Jun 2013 21:26:50 GMT
|
873
|
+
- request:
|
874
|
+
method: post
|
875
|
+
uri: http://10.0.5.5:4243/containers/1c460cabb1ab/wait
|
876
|
+
body:
|
877
|
+
encoding: US-ASCII
|
878
|
+
string: ''
|
879
|
+
headers:
|
880
|
+
Content-Type:
|
881
|
+
- application/json
|
882
|
+
response:
|
883
|
+
status:
|
884
|
+
code: 200
|
885
|
+
message: !binary |-
|
886
|
+
T0s=
|
887
|
+
headers:
|
888
|
+
!binary "Q29udGVudC1UeXBl":
|
889
|
+
- !binary |-
|
890
|
+
YXBwbGljYXRpb24vanNvbg==
|
891
|
+
!binary "RGF0ZQ==":
|
892
|
+
- !binary |-
|
893
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNjo1MyBHTVQ=
|
894
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
895
|
+
- !binary |-
|
896
|
+
Y2h1bmtlZA==
|
897
|
+
body:
|
898
|
+
encoding: ASCII-8BIT
|
899
|
+
string: !binary |-
|
900
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
901
|
+
http_version:
|
902
|
+
recorded_at: Mon, 03 Jun 2013 21:26:53 GMT
|
903
|
+
- request:
|
904
|
+
method: post
|
905
|
+
uri: http://10.0.5.5:4243/containers/30417829f9d5/wait
|
906
|
+
body:
|
907
|
+
encoding: US-ASCII
|
908
|
+
string: ''
|
909
|
+
headers:
|
910
|
+
Content-Type:
|
911
|
+
- application/json
|
912
|
+
response:
|
913
|
+
status:
|
914
|
+
code: 200
|
915
|
+
message: !binary |-
|
916
|
+
T0s=
|
917
|
+
headers:
|
918
|
+
!binary "Q29udGVudC1UeXBl":
|
919
|
+
- !binary |-
|
920
|
+
YXBwbGljYXRpb24vanNvbg==
|
921
|
+
!binary "RGF0ZQ==":
|
922
|
+
- !binary |-
|
923
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNzozMCBHTVQ=
|
924
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
925
|
+
- !binary |-
|
926
|
+
Y2h1bmtlZA==
|
927
|
+
body:
|
928
|
+
encoding: ASCII-8BIT
|
929
|
+
string: !binary |-
|
930
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
931
|
+
http_version:
|
932
|
+
recorded_at: Mon, 03 Jun 2013 21:27:30 GMT
|
933
|
+
- request:
|
934
|
+
method: post
|
935
|
+
uri: http://10.0.5.5:4243/containers/dba4b0ef108f/wait
|
936
|
+
body:
|
937
|
+
encoding: US-ASCII
|
938
|
+
string: ''
|
939
|
+
headers:
|
940
|
+
Content-Type:
|
941
|
+
- application/json
|
942
|
+
response:
|
943
|
+
status:
|
944
|
+
code: 200
|
945
|
+
message: !binary |-
|
946
|
+
T0s=
|
947
|
+
headers:
|
948
|
+
!binary "Q29udGVudC1UeXBl":
|
949
|
+
- !binary |-
|
950
|
+
YXBwbGljYXRpb24vanNvbg==
|
951
|
+
!binary "RGF0ZQ==":
|
952
|
+
- !binary |-
|
953
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNzozOSBHTVQ=
|
954
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
955
|
+
- !binary |-
|
956
|
+
Y2h1bmtlZA==
|
957
|
+
body:
|
958
|
+
encoding: ASCII-8BIT
|
959
|
+
string: !binary |-
|
960
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
961
|
+
http_version:
|
962
|
+
recorded_at: Mon, 03 Jun 2013 21:27:39 GMT
|
963
|
+
- request:
|
964
|
+
method: post
|
965
|
+
uri: http://10.0.5.5:4243/containers/be7774cf7e5f/wait
|
966
|
+
body:
|
967
|
+
encoding: US-ASCII
|
968
|
+
string: ''
|
969
|
+
headers:
|
970
|
+
Content-Type:
|
971
|
+
- application/json
|
972
|
+
response:
|
973
|
+
status:
|
974
|
+
code: 200
|
975
|
+
message: !binary |-
|
976
|
+
T0s=
|
977
|
+
headers:
|
978
|
+
!binary "Q29udGVudC1UeXBl":
|
979
|
+
- !binary |-
|
980
|
+
YXBwbGljYXRpb24vanNvbg==
|
981
|
+
!binary "RGF0ZQ==":
|
982
|
+
- !binary |-
|
983
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNzo0MSBHTVQ=
|
984
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
985
|
+
- !binary |-
|
986
|
+
Y2h1bmtlZA==
|
987
|
+
body:
|
988
|
+
encoding: ASCII-8BIT
|
989
|
+
string: !binary |-
|
990
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
991
|
+
http_version:
|
992
|
+
recorded_at: Mon, 03 Jun 2013 21:27:41 GMT
|
993
|
+
- request:
|
994
|
+
method: post
|
995
|
+
uri: http://10.0.5.5:4243/containers/c918270027e3/wait
|
996
|
+
body:
|
997
|
+
encoding: US-ASCII
|
998
|
+
string: ''
|
999
|
+
headers:
|
1000
|
+
Content-Type:
|
1001
|
+
- application/json
|
1002
|
+
response:
|
1003
|
+
status:
|
1004
|
+
code: 200
|
1005
|
+
message: !binary |-
|
1006
|
+
T0s=
|
1007
|
+
headers:
|
1008
|
+
!binary "Q29udGVudC1UeXBl":
|
1009
|
+
- !binary |-
|
1010
|
+
YXBwbGljYXRpb24vanNvbg==
|
1011
|
+
!binary "RGF0ZQ==":
|
1012
|
+
- !binary |-
|
1013
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzozMiBHTVQ=
|
1014
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1015
|
+
- !binary |-
|
1016
|
+
Y2h1bmtlZA==
|
1017
|
+
body:
|
1018
|
+
encoding: ASCII-8BIT
|
1019
|
+
string: !binary |-
|
1020
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
1021
|
+
http_version:
|
1022
|
+
recorded_at: Mon, 03 Jun 2013 21:37:32 GMT
|
1023
|
+
- request:
|
1024
|
+
method: post
|
1025
|
+
uri: http://10.0.5.5:4243/containers/054430dc097d/wait
|
1026
|
+
body:
|
1027
|
+
encoding: US-ASCII
|
1028
|
+
string: ''
|
1029
|
+
headers:
|
1030
|
+
Content-Type:
|
1031
|
+
- application/json
|
1032
|
+
response:
|
1033
|
+
status:
|
1034
|
+
code: 200
|
1035
|
+
message: !binary |-
|
1036
|
+
T0s=
|
1037
|
+
headers:
|
1038
|
+
!binary "Q29udGVudC1UeXBl":
|
1039
|
+
- !binary |-
|
1040
|
+
YXBwbGljYXRpb24vanNvbg==
|
1041
|
+
!binary "RGF0ZQ==":
|
1042
|
+
- !binary |-
|
1043
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo0MyBHTVQ=
|
1044
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1045
|
+
- !binary |-
|
1046
|
+
Y2h1bmtlZA==
|
1047
|
+
body:
|
1048
|
+
encoding: ASCII-8BIT
|
1049
|
+
string: !binary |-
|
1050
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
1051
|
+
http_version:
|
1052
|
+
recorded_at: Mon, 03 Jun 2013 21:37:43 GMT
|
1053
|
+
- request:
|
1054
|
+
method: post
|
1055
|
+
uri: http://10.0.5.5:4243/containers/7fe249af9595/wait
|
1056
|
+
body:
|
1057
|
+
encoding: US-ASCII
|
1058
|
+
string: ''
|
1059
|
+
headers:
|
1060
|
+
Content-Type:
|
1061
|
+
- application/json
|
1062
|
+
response:
|
1063
|
+
status:
|
1064
|
+
code: 200
|
1065
|
+
message: !binary |-
|
1066
|
+
T0s=
|
1067
|
+
headers:
|
1068
|
+
!binary "Q29udGVudC1UeXBl":
|
1069
|
+
- !binary |-
|
1070
|
+
YXBwbGljYXRpb24vanNvbg==
|
1071
|
+
!binary "RGF0ZQ==":
|
1072
|
+
- !binary |-
|
1073
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo0NSBHTVQ=
|
1074
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1075
|
+
- !binary |-
|
1076
|
+
Y2h1bmtlZA==
|
1077
|
+
body:
|
1078
|
+
encoding: ASCII-8BIT
|
1079
|
+
string: !binary |-
|
1080
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
1081
|
+
http_version:
|
1082
|
+
recorded_at: Mon, 03 Jun 2013 21:37:45 GMT
|
1083
|
+
- request:
|
1084
|
+
method: post
|
1085
|
+
uri: http://10.0.5.5:4243/containers/7ae604530e7b/wait
|
1086
|
+
body:
|
1087
|
+
encoding: US-ASCII
|
1088
|
+
string: ''
|
1089
|
+
headers:
|
1090
|
+
Content-Type:
|
1091
|
+
- application/json
|
1092
|
+
response:
|
1093
|
+
status:
|
1094
|
+
code: 200
|
1095
|
+
message: !binary |-
|
1096
|
+
T0s=
|
1097
|
+
headers:
|
1098
|
+
!binary "Q29udGVudC1UeXBl":
|
1099
|
+
- !binary |-
|
1100
|
+
YXBwbGljYXRpb24vanNvbg==
|
1101
|
+
!binary "RGF0ZQ==":
|
1102
|
+
- !binary |-
|
1103
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1OSBHTVQ=
|
1104
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1105
|
+
- !binary |-
|
1106
|
+
Y2h1bmtlZA==
|
1107
|
+
body:
|
1108
|
+
encoding: ASCII-8BIT
|
1109
|
+
string: !binary |-
|
1110
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
1111
|
+
http_version:
|
1112
|
+
recorded_at: Mon, 03 Jun 2013 21:37:59 GMT
|
1113
|
+
- request:
|
1114
|
+
method: post
|
1115
|
+
uri: http://10.0.5.5:4243/containers/a376c65b71c3/wait
|
1116
|
+
body:
|
1117
|
+
encoding: US-ASCII
|
1118
|
+
string: ''
|
1119
|
+
headers:
|
1120
|
+
Content-Type:
|
1121
|
+
- application/json
|
1122
|
+
response:
|
1123
|
+
status:
|
1124
|
+
code: 200
|
1125
|
+
message: !binary |-
|
1126
|
+
T0s=
|
1127
|
+
headers:
|
1128
|
+
!binary "Q29udGVudC1UeXBl":
|
1129
|
+
- !binary |-
|
1130
|
+
YXBwbGljYXRpb24vanNvbg==
|
1131
|
+
!binary "RGF0ZQ==":
|
1132
|
+
- !binary |-
|
1133
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMSBHTVQ=
|
1134
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1135
|
+
- !binary |-
|
1136
|
+
Y2h1bmtlZA==
|
1137
|
+
body:
|
1138
|
+
encoding: ASCII-8BIT
|
1139
|
+
string: !binary |-
|
1140
|
+
eyJTdGF0dXNDb2RlIjowfQ==
|
1141
|
+
http_version:
|
1142
|
+
recorded_at: Mon, 03 Jun 2013 21:38:01 GMT
|
63
1143
|
recorded_with: VCR 2.5.0
|