diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-19 15:27:16 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-19 15:27:16 +0200 |
commit | ba7aafe4d6aad34fe510989f8c49ea670278ba0b (patch) | |
tree | 151f40d92b5647ec9e6a0144df66689a45175029 /plugins | |
parent | 2d0bd5acd12a76e12d1fda9d8f2b2a5170298a50 (diff) |
Documentation cleanup
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index a97f1c0..a1529bc 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -356,7 +356,7 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context) std::lock_guard<std::mutex> socket_lock{socket->getMutex()}; - socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now + socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now. Subsequent requests are cancelled because connection is already closed by server. if (!socket->is_open()) { //std::cout << "FCGI: Opening new socket" << std::endl; |