We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdfba47 commit bda3c84Copy full SHA for bda3c84
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+## v0.5.2
2
+
3
+* Add file-system APIs to JS/TS runtime to facility accessing resources, e.g.
4
+ templates for SSR (see example/colab-clicker-ssr).
5
+* Add a timeout to graceful shutdown to deal with long-lived streaming connections.
6
+* Allow short-cutting above timeout by pressing a Ctrl+C second time.
7
8
## v0.5.1
9
10
* Update SQLite from 3.46.1 to 3.48.0.
trailbase-core/src/server/mod.rs
@@ -410,7 +410,7 @@ async fn shutdown_signal() {
410
_ = sleep(Duration::from_secs(1)) => {}
411
_ = signal::ctrl_c() => {
412
println!("Got Ctrl+C. Shutting down");
413
- std::process::exit(0);
+ std::process::exit(1);
414
}
415
};
416
0 commit comments