This repository has been archived by the owner on Feb 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 166
PostFormat<> calls without a decoder #48
Comments
dan-turner
pushed a commit
to SingularityIT/TeamCitySharp
that referenced
this issue
Sep 15, 2014
… is not needed Fixes stack72#48
Friendly tip for next time @frs3, if you'd implemented the fix yourself 5 months ago it would have been fixed for me just now :). I also wouldn't have had to go digging through github issues for existing bug report when I found it too. |
dan-turner
pushed a commit
to SingularityIT/TeamCitySharp
that referenced
this issue
Sep 15, 2014
… is not needed Fixes stack72#48
dan-turner
pushed a commit
to SingularityIT/TeamCitySharp
that referenced
this issue
Sep 15, 2014
… is not needed Fixes stack72#48
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are several PostFormat<> class that have an empty decoder, which causes an exception. e.g.
_caller.PostFormat(rawXml, HttpContentTypes.TextPlain, string.Empty, "/app/rest/buildTypes/{0}/steps", locator);
Fix:
_caller.PostFormat(rawXml, HttpContentTypes.ApplicationXml, "/app/rest/buildTypes/{0}/steps", locator);
The text was updated successfully, but these errors were encountered: