From bdb2b95a1d7fe837cd71e17688791d4785bb37e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Bara=C3=BAna?= Date: Wed, 1 Oct 2025 16:00:56 -0300 Subject: [PATCH] Mounter needs to susbcribe to hub connection events (#3073) --- lib/livebook/file_system/mounter.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/livebook/file_system/mounter.ex b/lib/livebook/file_system/mounter.ex index 772e26ab8..f54d9d27b 100644 --- a/lib/livebook/file_system/mounter.ex +++ b/lib/livebook/file_system/mounter.ex @@ -27,7 +27,7 @@ defmodule Livebook.FileSystem.Mounter do @impl GenServer def handle_continue(:boot, state) do - Hubs.Broadcasts.subscribe([:crud, :file_systems]) + Hubs.Broadcasts.subscribe([:crud, :file_systems, :connection]) Process.send_after(self(), :remount, state.loop_delay) {:noreply, mount_file_systems(state, Hubs.Personal.id())}