We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a specific reason behind silently supressing an error and returning a string instead of a parsed object as shown below?
https://github.com/apocas/docker-modem/blob/master/lib/modem.js#L199-L203
Modem.prototype.buildRequest = function(options, context, data, callback) { .... req.on('response', function(res) { ... try { json = JSON.parse(chunks); } catch (e) { json = chunks; } ... })
I had a bunch of stopped containers and docker.listContainers({all: true}, ... ) broke silently.
docker.listContainers({all: true}, ... )
If there's no reason, then I would like to submit a patch.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a specific reason behind silently supressing an error and returning a string instead of a parsed object as shown below?
https://github.com/apocas/docker-modem/blob/master/lib/modem.js#L199-L203
I had a bunch of stopped containers and
docker.listContainers({all: true}, ... )
broke silently.If there's no reason, then I would like to submit a patch.
The text was updated successfully, but these errors were encountered: