File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix proxy exception. #73
6+
57## 0.34.0
68
79- Support custom UX details/summary for MCP tools. #67
Original file line number Diff line number Diff line change 1313 (System/setProperty " http.proxyHost" (.getHost url))
1414 (let [port (.getPort url)]
1515 (when (not= -1 port)
16- (System/setProperty " http.proxyPort" (.getPort url)))))
16+ (System/setProperty " http.proxyPort" (str ( .getPort url) )))))
1717 (when-let [^URL url (try (some-> (not-empty (config/get-env " HTTPS_PROXY" ))
1818 (URL. ))
1919 (catch Exception _ nil ))]
2020 (System/setProperty " https.proxyHost" (.getHost url))
2121 (let [port (.getPort url)]
2222 (when (not= -1 port)
23- (System/setProperty " https.proxyPort" (.getPort url))))))
23+ (System/setProperty " https.proxyPort" (str ( .getPort url) ))))))
You can’t perform that action at this time.
0 commit comments