A focused Docker Compose management web application.
0
fork

Configure Feed

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

fix: clear log buffer when project restarts

Brooke 6339aef1 17ac2c3e

+3
+3
packages/node/src/core/logs.rs
··· 99 99 } 100 100 101 101 debug!("Received event indicating project is running, restarting logs stream..."); 102 + 103 + // Clear buffer to avoid sending old logs 104 + buffer.write().await.clear(); 102 105 } 103 106 }); 104 107