We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3dd16b commit 24a5e05Copy full SHA for 24a5e05
src/Servy.Manager/ViewModels/MainViewModel.cs
@@ -881,7 +881,7 @@ private async Task RefreshAllServicesAsync()
881
var allServicesDict = allServicesList.ToDictionary(s => s.Name, StringComparer.OrdinalIgnoreCase);
882
883
// 3. Fetch all Repository DTOs in bulk
884
- var allDtosList = await _serviceRepository.GetAllAsync(false, token);
+ var allDtosList = await _serviceRepository.GetAllAsync(true, token);
885
var allDtosDict = allDtosList.ToDictionary(d => d.Name, StringComparer.OrdinalIgnoreCase);
886
887
// 4. Process in parallel using the semaphore
0 commit comments