-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
File storage extension - invalid file name characters must be encoded #3148
Comments
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
Pinging code owners for extension/storage/filestorage: @djaglowski. See Adding Labels via Comments if you do not have permissions to add labels yourself. |
The https://golang.org/pkg/net/url/#QueryEscape function specifically is not a good fit, as it puts percent characters |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
Here's the PR to fix this issue: |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
…ames (open-telemetry#20896) Fixes open-telemetry#3148 This change was initially created to only fix open-telemetry#20731 by replacing the slash `/` characters in component names with a tilde `~`. After that, we decided that it is a breaking change, and so it's better to fix other characters as well in a single breaking change.
…placeUnsafeCharacters` (#30755) **Description:** Moves the feature gate `extension.filestorage.replaceUnsafeCharacters` to Beta stage, which means it is now enabled by default. This is according to the schedule for this feature gate described in the File Storage extension's [README](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/v0.92.0/extension/storage/filestorage/README.md#extensionfilestoragereplaceunsafecharacters). **Link to tracking Issue:** - #3148 **Testing:** Updated tests to not require enabling of the feature gate. **Documentation:** Updated version in which feature gate was moved to Beta.
…placeUnsafeCharacters` (open-telemetry#30755) **Description:** Moves the feature gate `extension.filestorage.replaceUnsafeCharacters` to Beta stage, which means it is now enabled by default. This is according to the schedule for this feature gate described in the File Storage extension's [README](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/v0.92.0/extension/storage/filestorage/README.md#extensionfilestoragereplaceunsafecharacters). **Link to tracking Issue:** - open-telemetry#3148 **Testing:** Updated tests to not require enabling of the feature gate. **Documentation:** Updated version in which feature gate was moved to Beta.
**Description:** Moves the feature gate `extension.filestorage.replaceUnsafeCharacters` to Stable stage, which means it cannot be disabled. This is according to the schedule for this feature gate described in the File Storage extension's [README](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/v0.97.0/extension/storage/filestorage/README.md#extensionfilestoragereplaceunsafecharacters). **Link to tracking Issue:** - #3148 **Testing:** No changes. **Documentation:** Updated version in which feature gate was moved to Beta.
Originally posted by @tigrannajaryan in #3087 (comment)
The text was updated successfully, but these errors were encountered: