Compare commits
No commits in common. "c11c68d6d752b509ac15a97d58b9262424320ea7" and "e86ad03b1e78381fb20f73405d8b8788e1c1c28b" have entirely different histories.
c11c68d6d7
...
e86ad03b1e
@ -191,7 +191,6 @@ public class JobBoss : GlobalBase
|
|||||||
string newJobFilePath = Path.Join(TrangaSettings.jobsFolderPath, $"{job.id}.json");
|
string newJobFilePath = Path.Join(TrangaSettings.jobsFolderPath, $"{job.id}.json");
|
||||||
string oldFilePath = Path.Join(TrangaSettings.jobsFolderPath, oldFile);
|
string oldFilePath = Path.Join(TrangaSettings.jobsFolderPath, oldFile);
|
||||||
|
|
||||||
//Delete old file
|
|
||||||
if (File.Exists(oldFilePath))
|
if (File.Exists(oldFilePath))
|
||||||
{
|
{
|
||||||
Log($"Deleting Job-file {oldFilePath}");
|
Log($"Deleting Job-file {oldFilePath}");
|
||||||
@ -207,15 +206,11 @@ public class JobBoss : GlobalBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Export job (in new file) if it is still in our jobs list
|
Log($"Exporting Job {newJobFilePath}");
|
||||||
if (GetJobById(job.id) is not null)
|
string jobStr = JsonConvert.SerializeObject(job, Formatting.Indented);
|
||||||
{
|
while(IsFileInUse(newJobFilePath))
|
||||||
Log($"Exporting Job {newJobFilePath}");
|
Thread.Sleep(10);
|
||||||
string jobStr = JsonConvert.SerializeObject(job, Formatting.Indented);
|
File.WriteAllText(newJobFilePath, jobStr);
|
||||||
while(IsFileInUse(newJobFilePath))
|
|
||||||
Thread.Sleep(10);
|
|
||||||
File.WriteAllText(newJobFilePath, jobStr);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateAllJobFiles()
|
private void UpdateAllJobFiles()
|
||||||
|
Loading…
Reference in New Issue
Block a user