Skip to content

Commit

Permalink
Merge pull request #208 from SainsburyWellcomeCentre/state-recovery
Browse files Browse the repository at this point in the history
Delete state recovery temp files after recovery
  • Loading branch information
glopesdev authored Feb 9, 2024
2 parents 5f47837 + d7c129b commit 54f18c4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Aeon.Acquisition/StateRecovery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ public static TState Deserialize(string name)
{
return new TState();
}
finally
{
File.Delete(fileName);
}
}
}
}

0 comments on commit 54f18c4

Please sign in to comment.