Shifted closing of pool connections better

This commit is contained in:
Amos Ng 2020-06-12 00:55:09 +08:00
parent 25cfc53674
commit 5dbe29c8e9
No known key found for this signature in database
GPG key ID: 89086414F634D123

View file

@ -185,8 +185,8 @@ fun getServer(cache: DiskLruCache, serverSettings: ServerSettings, clientSetting
editor.abort()
}
mdResponse.close()
}
mdResponse.close()
respondWithImage(tee, contentLength, contentType, lastModified)
} else {
editor?.abort()
@ -194,7 +194,7 @@ fun getServer(cache: DiskLruCache, serverSettings: ServerSettings, clientSetting
if (LOGGER.isTraceEnabled) {
LOGGER.trace("Request for $sanitizedUri is being served")
}
mdResponse.close()
respondWithImage(mdResponse.body.stream, contentLength, contentType, lastModified)
}
}