提交 1fcda808 编写于 作者: C CyrusNajmabadi

Add comment.

上级 9611e1e8
......@@ -33,6 +33,11 @@ public static void UpdateStorageLocation(SolutionId id, string storageLocation)
{
lock (_gate)
{
// We can get null when the solution has no corresponding file location
// in the host process. This is not abnormal and can come around for
// many reasons. In that case, we simply do not store a storage location
// for this solution, indicating to all remote consumers that persistent
// storage is not available for this solution.
if (storageLocation == null)
{
_idToStorageLocation.Remove(id);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册