From b3d08440dcc48ee8349ca78f7c653c3eaf6825b2 Mon Sep 17 00:00:00 2001 From: Christian Luksch Date: Wed, 8 Sep 2021 09:21:45 +0200 Subject: [PATCH] delayed rootEntries query as temporary fix for #39 --- RELEASE_NOTES.md | 5 ++++- src/Aardvark.Service/aardfs/FileSystem.fs | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 204e823f..78d1cf80 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +### 5.1.8 +- workaround for blocking startup caused by slow network drives (#39) + ### 5.1.7 - added animateForwardAndLocation to deprecated animation code (used in Dibit and PRo3D) with corrected final interation. All other deprecated animations do not reach their target. @@ -18,7 +21,7 @@ - updated Aardvark.Rendering (breaking changes) ### 5.1.1 - - updated packages +- updated packages ### 5.1.0 - updated to FSharp.Data.Adaptive 1.1 and base 5.1 track \ No newline at end of file diff --git a/src/Aardvark.Service/aardfs/FileSystem.fs b/src/Aardvark.Service/aardfs/FileSystem.fs index 4f210d6d..d997e09f 100644 --- a/src/Aardvark.Service/aardfs/FileSystem.fs +++ b/src/Aardvark.Service/aardfs/FileSystem.fs @@ -158,7 +158,7 @@ type FileSystem private(rootPath : Option) = | None -> None - let rootEntries = + let rootEntries() = DriveInfo.GetDrives() |> Array.toList |> List.choose (fun di -> @@ -217,7 +217,7 @@ type FileSystem private(rootPath : Option) = { success = true fullPath = "/" - entries = rootEntries + entries = rootEntries() } | _,Some localPath ->