Skip to content

Commit 22862a6

Browse files
committed
Fix file system type migration (#2269)
1 parent 3c7bfcf commit 22862a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/livebook/migration.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ defmodule Livebook.Migration do
166166
Map.get_lazy(file, :file_system_type, fn ->
167167
case file.file_system_id do
168168
"local" -> "local"
169-
"s3-" <> _ -> "s3"
169+
_ -> "s3"
170170
end
171171
end)
172172

0 commit comments

Comments
 (0)