We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0af206 + 0ce8ccd commit 56db175Copy full SHA for 56db175
src/implementation/Client/HTTPClient/HTTPClient.ts
@@ -99,6 +99,7 @@ export default class HTTPClient implements IClient {
99
}
100
101
102
+
103
const urlFull = url.startsWith("http") ? url : `${this.clientUrl}${url}`;
104
const agent = urlFull.startsWith("https") ? this.httpsAgent : this.httpAgent;
105
params.agent = agent;
src/implementation/Server/DaprServer.ts
@@ -99,6 +99,10 @@ export default class DaprServer {
await this.daprServer.stop();
+ async stopServer(): Promise<void> {
+ await this.daprServer.stopServer();
+ }
106
getDaprClient(): IServer {
107
return this.daprServer;
108
0 commit comments