Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
This was left in by accident as part of manual testing of a
failure case.
  • Loading branch information
thsig committed May 20, 2021
1 parent 93ecf06 commit a48b168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/enterprise/buffered-event-stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<any>(`${path}-foo`, {
return this.enterpriseApi.post<any>(path, {
body: data,
retry: true,
retryDescription: `Flushing ${description}`,
Expand Down

0 comments on commit a48b168

Please sign in to comment.