mark
mark copied to clipboard
Early exit when deleting Label
What happened?
When deleting labels, the application ends immediately with a 2024-08-26 16:24:38.278 FATAL EOF
message which interrupts any subsequent operations when globing files.
What did you expect to happen?
Application can delete labels without errors.
How can we reproduce the behavior you experienced?
- Create a page with some labels
- Remove the label for the mark down
- Update the page
- Error is generated
Further Information (please complete the following information)
- Mark Version (
mark --version
): 10.0.1 - Mark Parameters: n/a
- Confluence Hosting: Cloud
- Confluence Version: Confluence 1000.0.0-cd144b5a79d5
- Environment specific Information: running locally
Logs or other output
Please provide logs, other kind of output here.
Additional context
Deleting labels returns a 204 (No-Content) but the underlying library seems to assume that all requests will have a content and tries to parse it.
The PR to fix the issue in the underlying library https://github.com/kovetskiy/gopencils/pull/3
@kovetskiy