For now? I'm experimenting on an old concept.
1

Configure Feed

Select the types of activity you want to include in your feed.

fix: Session weren't added to the removal queue.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 9, 2026, 10:05 PM +0200) 40ebd256 bfffc195

+10 -1
+10 -1
lumina/backend/src/lumina_server/data.gleam
··· 136 136 process.sleep(session_janitor_delay) 137 137 } 138 138 } 139 + witness.this(logging.Info, "Session janitor check ended.", []) 139 140 } 140 - Error(_) -> process.sleep(session_janitor_delay) 141 + Error(_) -> { 142 + witness.this( 143 + logging.Info, 144 + "Session janitor found no sessions yet. Waiting longer before next check.", 145 + [], 146 + ) 147 + process.sleep(session_janitor_delay) 148 + } 141 149 } 142 150 143 151 process.sleep(session_janitor_delay) ··· 159 167 session_id: String, 160 168 csrf_token: String, 161 169 ) { 170 + use _ <- result.try(queue.push(session_store.cleanup_queue, session_id)) 162 171 table.insert_new( 163 172 session_store.table, 164 173 session_id,