-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Output going to stderr #15
Comments
@anne-jones there are two ways to determine if the purge was successful:
Hopefully this helps? |
@anne-jones this is the correct behavior — the CLI — like many other tools — only outputs data that is meant to be piped to other applications to STDOUT, and we use STDERR for all other (e.g. informational) output. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm doing a purge invalidate command in a python script using subprocess and getting the results with communicate().
The issue is that the output is being sent to stderr and I'm not sure the best way to tell when the purge has succeeded or failed. I found this comment on an akamai forum where another user was having the same problem, but it's been almost a year and no one ever answered.
Can anyone help with this? Thanks!
The text was updated successfully, but these errors were encountered: