Skip to content

Commit

Permalink
fixing lint complains #2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewstanovsky committed May 3, 2023
1 parent b3cb60f commit f35b715
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function createProducer(
replicationFactor?: number,
maxBatchSize?: number,
sslCACertFilePath?: string,
eventHubConnString?: string,
eventHubConnString?: string,
): IProducer {
let producer: IProducer;

Expand All @@ -39,7 +39,7 @@ export function createProducer(
replicationFactor,
maxMessageSize: MaxKafkaMessageSize,
sslCACertFilePath,
eventHubConnString,
eventHubConnString,
});

producer.on("error", (error, errorData: IContextErrorData) => {
Expand Down

0 comments on commit f35b715

Please sign in to comment.