Skip to content

Commit

Permalink
feat(grpc-metadata): fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
samimusallam committed Nov 23, 2022
1 parent 764ac43 commit 69cfddb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import { GrpcJsInstrumentation } from './';
import type {GrpcClientFunc, metadataCaptureType, SendUnaryDataCallback} from './types';
import type { GrpcClientFunc, SendUnaryDataCallback } from './types';
import {
Span,
SpanStatusCode,
Expand All @@ -33,6 +33,7 @@ import { CALL_SPAN_ENDED } from './serverUtils';
import { EventEmitter } from 'events';
import { AttributeNames } from '../enums/AttributeNames';
import { SemanticAttributes } from '@opentelemetry/semantic-conventions';
import { metadataCaptureType } from '../types';

/**
* Parse a package method list and return a list of methods to patch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import type * as grpcTypes from 'grpc';
import type * as events from 'events';
import {SendUnaryDataCallback, GrpcClientFunc, metadataCaptureType} from './types';
import { SendUnaryDataCallback, GrpcClientFunc } from './types';
import { SemanticAttributes } from '@opentelemetry/semantic-conventions';
import {
context,
Expand All @@ -31,6 +31,7 @@ import {
findIndex,
} from '../utils';
import { AttributeNames } from '../enums/AttributeNames';
import { metadataCaptureType } from '../types';

/**
* This method handles the client remote call
Expand Down

0 comments on commit 69cfddb

Please sign in to comment.