Fix file system change from S3 to local (#1377)

This commit is contained in:
Alexandre de Souza 2022-09-01 13:25:42 -03:00 committed by GitHub
parent 31c6f7adf7
commit bea5d0bb76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ defmodule Livebook.Settings do
{fs_id, storage_to_fs(raw_fs)}
end)
[{:local, Livebook.Config.local_filesystem()} | restored_file_systems]
[{"local", Livebook.Config.local_filesystem()} | restored_file_systems]
end
@doc """

View file

@ -1,7 +1,7 @@
defmodule Livebook.MixProject do
use Mix.Project
@elixir_requirement "~> 1.14-rc.0"
@elixir_requirement "~> 1.14-rc.1"
@version "0.6.3"
@description "Interactive and collaborative code notebooks - made with Phoenix LiveView"