Skip to content
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

Display HTTP status code on error to address issue #36 #51

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// Minor Version
// Revision
//
[assembly: AssemblyVersion("2.0.6")]
[assembly: AssemblyFileVersion("2.0.6")]
[assembly: AssemblyVersion("2.0.7")]
[assembly: AssemblyFileVersion("2.0.7")]
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SharpSCCM Release Notes

### Version 2.0.7 (January 31, 2024)
##### Changes
- Fixed issue 36

### Version 2.0.6 (January 31, 2024)
##### Changes
- Fixed issue 35
Expand Down
2 changes: 1 addition & 1 deletion lib/AdminService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static string TriggerAdminServiceQuery(string managementPoint, string sit
break;
default:
// Handle other HTTP errors
fail = $"An error message was received from the API. Please try again";
fail = $"[!] Received {response.StatusCode.GetHashCode()} ({response.StatusCode}) status code from: {request.RequestUri}";
break;
}

Expand Down
Loading