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
I found the issue in logsteamcity-server.log on the build server.
java.io.IOException: Attempted read from closed stream.
at msteamsnotifications.MsTeamsNotificationImpl.postViaWebHook(MsTeamsNotificationImpl.java:184)
Microsoft made a change that broke things for many people.
The change in the Webhook is documented here: MicrosoftDocs/msteams-docs#7830
The text was updated successfully, but these errors were encountered:
The closed stream error happens because we get a 400 from the server and then try to read the results back twice, once as an error message and again as content. The stream can only be read once.
I found the issue in logsteamcity-server.log on the build server.
java.io.IOException: Attempted read from closed stream.
at msteamsnotifications.MsTeamsNotificationImpl.postViaWebHook(MsTeamsNotificationImpl.java:184)
Microsoft made a change that broke things for many people.
The change in the Webhook is documented here: MicrosoftDocs/msteams-docs#7830
The text was updated successfully, but these errors were encountered: