Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update connection string state style to Success in notification
  • Loading branch information
davidfowl authored and github-actions committed Jul 11, 2025
commit d3ea3edc40af65b31fb3d82860f6e89d01c324b9
2 changes: 1 addition & 1 deletion src/Aspire.Hosting/Orchestrator/ApplicationOrchestrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ void InitializeConnectionString(ConnectionStringResource connectionStringResourc
await PublishConnectionStringAvailableEvent(connectionStringResource, cancellationToken).ConfigureAwait(false);
await _notificationService.PublishUpdateAsync(connectionStringResource, s => s with
{
State = new(KnownResourceStates.Active, KnownResourceStateStyles.Info),
State = new(KnownResourceStates.Active, KnownResourceStateStyles.Success),
}).ConfigureAwait(false);
}, cancellationToken);
}
Expand Down
Loading