You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #785, we began printing the entire URL path when an error occurs, where previously we had only printed a symbolic representation such as https://mysite.com/project/{project_id}/customers instead of https://mysite.com/project/123/customers.
The cases where the full URL is not safe to print should be very rare, and the full URL is only printed on failure, but nevertheless some developers may benefit from a boolean mask_url=true or similar, to prevent the path from being printed.
In absence of a toggle of some sort, developers should override the method and print only a symbolic or obfuscated URL upon failure. (Docstring and the respective docs have been updated with this guidance.)
The text was updated successfully, but these errors were encountered:
aaronsteers
changed the title
[Feature]: Option to obfuscate URL path if any part is sensitive
Feature: Option to obfuscate URL path if any part is sensitive
Jul 22, 2022
This has been marked as stale because it is unassigned, and has not had recent activity. It will be closed after 21 days if no further activity occurs. If this should never go stale, please add the evergreen label, or request that it be added.
This has been marked as stale because it is unassigned, and has not had recent activity. It will be closed after 21 days if no further activity occurs. If this should never go stale, please add the evergreen label, or request that it be added.
Feature scope
Taps (catalog, state, stream maps, etc.)
Description
In #785, we began printing the entire URL path when an error occurs, where previously we had only printed a symbolic representation such as
https://mysite.com/project/{project_id}/customers
instead ofhttps://mysite.com/project/123/customers
.The cases where the full URL is not safe to print should be very rare, and the full URL is only printed on failure, but nevertheless some developers may benefit from a boolean
mask_url=true
or similar, to prevent the path from being printed.In absence of a toggle of some sort, developers should override the method and print only a symbolic or obfuscated URL upon failure. (Docstring and the respective docs have been updated with this guidance.)
The text was updated successfully, but these errors were encountered: