-
Notifications
You must be signed in to change notification settings - Fork 163
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
Can't update issue on redmine 4.1.0.stable #348
Comments
let's clarify - so this works with older Redmine versions, but does not work with Redmine 4.1.0.stable. is that correct? |
Yes. That's correct. Our implementation worked with an older version of Redmine. After migrating to a new version 4.1.0.stable (no additional plugins) i came upon this problem. |
alright, can you please run all tests in this project against your own Redmine instance and see what else fails? (see redmine server URL in config files). you are welcome to explore what API changes are required to support Redmine 4.1.0.stable and submit a proposal along with a PR. |
I've created a PR: #355 |
you can change the test config to point to your local Redmine instance and then run "gradle test". |
Hi, i cannot update the issue using either fluent API or via transport. The error is "Entity may not be null". There is no entity since this response from Redmine returns a 204 no content (no body) but Apache still throws this error.
Any way to resolve this? issue.update() and t.updateObject(issue) both throw the same thing.
Error happens here:
return handler.processContent(httpResponse);
because
final String charset = HttpUtil.getCharset(entity);
is called on null entity.Originally posted by @marepop in #342 (comment)
The text was updated successfully, but these errors were encountered: