-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
Below code block works on v2.2.1 but gives exception on v2.3.0
exe = llclient.exec_create(container=containerId, cmd=cmd)['Id']
exe_start= llclient.exec_start(exec_id=exe, detach=False, tty=False, stream=True, socket=False)
Exception on v2.3.0:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "__init__.py", line 67, in run
exe_start= llclient.exec_start(exec_id=exe, detach=False, tty=False, stream=True, socket=False)
File "/Library/Python/2.7/site-packages/docker/utils/decorators.py", line 35, in wrapper
return f(self, *args, **kwargs)
File "/Library/Python/2.7/site-packages/docker/utils/decorators.py", line 19, in wrapped
'Resource ID was not provided'
NullResource: Resource ID was not provided