Skip to content

Commit aa3a7e1

Browse files
authored
Merge pull request #281 from cglewis/master
update ncapture
2 parents a2e9afb + 303e42e commit aa3a7e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

network_tap/ncontrol/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def on_post(self, req, resp):
7878
cmd += ' ' + payload['id'] + ' ' + payload['iters'] + ' "'
7979
cmd += payload['filter'] + '"'
8080
try:
81-
container = c.containers.run(image='cyberreboot/ncapture:v0.11.1',
81+
container = c.containers.run(image='cyberreboot/ncapture:v0.11.2',
8282
command=cmd, remove=True, detach=True, **tool_d)
8383
resp.body = "(True, 'successfully created and started filter: " + \
8484
str(payload['id']) + ' on container: ' + \
@@ -182,7 +182,7 @@ def on_get(self, req, resp):
182182
for c in containers.containers.list(all=True):
183183
# TODO: maybe find a way to not have to hard code image name
184184
if c.attrs['Config']['Image'] == \
185-
'cyberreboot/ncapture:v0.11.1':
185+
'cyberreboot/ncapture:v0.11.2':
186186
lst = {}
187187
lst['id'] = c.attrs['Id'][:12]
188188
lst['status'] = c.attrs['State']['Status']

0 commit comments

Comments
 (0)