Fix leftover comment about async I/O

This commit is contained in:
Heikki Linnakangas
2021-05-18 20:47:35 +03:00
parent 9ba7bc2695
commit 66bced0f36

View File

@@ -211,8 +211,8 @@ fn start_pageserver(conf: &PageServerConf) -> Result<()> {
page_cache::init(conf);
// GetPage@LSN requests are served by another thread. (It uses async I/O,
// but the code in page_service sets up it own thread pool for that)
// Spawn a thread to listen for connections. It will spawn further threads
// for each connection.
let conf_copy = conf.clone();
let page_server_thread = thread::Builder::new()
.name("Page Service thread".into())