From a48b1684d4ad9367c9d18487cca09d6f9c495cf3 Mon Sep 17 00:00:00 2001 From: Thorarinn Sigurdsson Date: Thu, 20 May 2021 22:16:48 +0200 Subject: [PATCH] chore: fix typo This was left in by accident as part of manual testing of a failure case. --- core/src/enterprise/buffered-event-stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/enterprise/buffered-event-stream.ts b/core/src/enterprise/buffered-event-stream.ts index 0bdfdbbb23..6bfad357ec 100644 --- a/core/src/enterprise/buffered-event-stream.ts +++ b/core/src/enterprise/buffered-event-stream.ts @@ -265,7 +265,7 @@ export class BufferedEventStream { this.log.silly(`Flushing ${description} to GE /${path}`) // Need to cast so the compiler doesn't complain that the two returns from the map // aren't equivalent. Shouldn't matter in this case since we're not collecting the return value. - return this.enterpriseApi.post(`${path}-foo`, { + return this.enterpriseApi.post(path, { body: data, retry: true, retryDescription: `Flushing ${description}`,