Skip to content
Snippets Groups Projects
Commit 4b03f76d authored by Michael W Spalti's avatar Michael W Spalti
Browse files

Setting responseMsToLive to zero for SubmissionRequest.

parent 04069245
Branches
Tags
No related merge requests found
......@@ -110,7 +110,7 @@ export class SubmissionRestService {
distinctUntilChanged(),
map((endpointURL: string) => new SubmissionRequest(requestId, endpointURL)),
map ((request: RestRequest) => {
request.responseMsToLive = 10 * 1000;
request.responseMsToLive = 0;
return request;
}),
tap((request: RestRequest) => this.requestService.configure(request)),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment