-
Notifications
You must be signed in to change notification settings - Fork 11
[DMS-884] .Net 10 migration #775
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
base: main
Are you sure you want to change the base?
Changes from all commits
bb6bf27
31805c9
a629d26
b2d38e6
7a6cdf3
4fc42c4
570b97f
1256497
1e07b98
2d87d38
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0.12-alpine3.21@sha256:accc7352721d44ef62 | |
|
|
||
| LABEL maintainer="Ed-Fi Alliance, LLC and Contributors <[email protected]>" | ||
|
|
||
| RUN apk --no-cache add postgresql16-client=~16 | ||
| RUN apk --no-cache add postgresql16-client | ||
|
|
||
| FROM runtimebase AS setup | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -105,7 +105,7 @@ public async Task<ClientCreateResult> CreateClientAsync( | |||||
| } | ||||||
|
|
||||||
| logger.LogError( | ||||||
| $"Error while creating the client: {clientId}. CreateClientAndRetrieveClientIdAsync returned empty string with no exception." | ||||||
| "Error while creating the client. CreateClientAndRetrieveClientIdAsync returned empty string with no exception." | ||||||
|
||||||
| "Error while creating the client. CreateClientAndRetrieveClientIdAsync returned empty string with no exception." | |
| $"Error while creating the client '{clientId}'. CreateClientAndRetrieveClientIdAsync returned empty string with no exception." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed it because nothing would satisfy the github-advanced-security bot in my attempts to sanitize the input.
Copilot
AI
Dec 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error message no longer includes the specific scope name that was not found, making debugging more difficult. Consider keeping the scope variable in the message.
| logger.LogError("Specified scope not found"); | |
| logger.LogError("Specified scope not found: {Scope}", scope); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed it because nothing would satisfy the github-advanced-security bot in my attempts to sanitize the input.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
github advanced security bot made me remove this.