Skip to content

Commit

Permalink
feat: use writeSync slogSender
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Feb 13, 2024
1 parent 8154efc commit f07453f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/telemetry/src/flight-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,6 @@ export const makeSlogSenderFromBuffer = ({ writeCircBuf }) => {
* @type {import('./index.js').MakeSlogSender}
*/
export const makeSlogSender = async opts => {
const { writeCircBuf } = await makeMemoryMappedCircularBuffer(opts);
const { writeCircBuf } = await makeSimpleCircularBuffer(opts);
return makeSlogSenderFromBuffer({ writeCircBuf });
};

0 comments on commit f07453f

Please sign in to comment.