Skip to content

Commit

Permalink
Fix wrong reference when updating direct mirrors (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
winromulus authored Jan 9, 2022
1 parent c1f3e0f commit be1ac65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private async Task HandleUpsert(TResource resource, WatchEventType eventType, Ca
ReflectorProperties sourceProperties;
if (!_propertiesCache.TryGetValue(sourceRef, out var sourceProps))
{
var source = await TryResourceGet(resourceRef);
var source = await TryResourceGet(sourceRef);
if (source is null)
{
Logger.LogWarning("Could not update {id} - Source {sourceId} could not be found.",
Expand Down

0 comments on commit be1ac65

Please sign in to comment.