From 63e444d1dc49e7e8317e844309b846366e6eb506 Mon Sep 17 00:00:00 2001 From: ManhNTX Date: Sun, 28 Aug 2022 23:29:24 +0700 Subject: [PATCH] TF-867 add adr --- .../0015-fix-some-case-iso-late-notwork.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docs/adr/0015-fix-some-case-iso-late-notwork.md diff --git a/docs/adr/0015-fix-some-case-iso-late-notwork.md b/docs/adr/0015-fix-some-case-iso-late-notwork.md new file mode 100644 index 000000000..550ff1890 --- /dev/null +++ b/docs/adr/0015-fix-some-case-iso-late-notwork.md @@ -0,0 +1,21 @@ +# 15. Fix some case isolate notwork (#867) + +Date: 2022-08-28 + +## Status + +- Issue: Fix some case isolate notwork + +## Context + +- Root cause: When you make a request through this client, it opens a connection to the HTTP server, +and may maintain the connection after the request completes. The HttpClient cannot be sent through +a SendPort of IsoLate when it has open connections. + +## Decision + +- Make a new HttpClient to send through the compute function. + +## Consequences + +- isolate working like normal \ No newline at end of file