You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Console.WriteLine($"Dynamicfile key: {dynamicFile.Key} and Dynamicfile value: {dynamicFile.Value} and New time: {newTime}");
58
60
if(dynamicFile.Value<newTime)
59
61
{
60
-
Console.WriteLine($"No update to dynamic in {millisecondsToWait*1000} seconds. Setting Dynamic to false and removing from dynamicFiles.");
62
+
Console.WriteLine($"No update to dynamic in {(dynamicFile.Value-currentTime)*1000} seconds. Setting Dynamic to false and removing from dynamicFiles.");
61
63
// TODO: Consider that we can technically queue the update to Dynamic in metadata, remove it from "dynamicFiles" and then receive an update in the meantime. Very unlikely, but possible. And does it matter?
62
-
SetDynamicToFalse(dynamicFile.Key);
64
+
SetDynamicToFalse(dynamicFile.Key);
63
65
dynamicFiles.TryRemove(dynamicFile);
64
66
}
65
67
}
66
-
Thread.Sleep(2000);// TODO: We don't really have to sleep here, it's just to make prints more managable.
// TODO: (Lock might have fixed this) Following error can still occur despite queue: The process cannot access the file because it is being used by another process
0 commit comments