Skip to content

Commit

Permalink
fix: do not depend on index.ts from fallback code (#1201)
Browse files Browse the repository at this point in the history
Otherwise, `fallback.ts` will pull the whole gRPC code which it is not supposed to do.
  • Loading branch information
alexander-fenster committed Mar 4, 2022
1 parent df8eaf9 commit 5c7ca41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fallback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import * as fallbackProto from './fallbackProto';
import * as fallbackRest from './fallbackRest';
import {isNodeJS} from './featureDetection';
import {generateServiceStub} from './fallbackServiceStub';
import {StreamType} from '.';
import {StreamType} from './streamingCalls/streaming';
import * as objectHash from 'object-hash';

export {FallbackServiceError};
Expand Down

0 comments on commit 5c7ca41

Please sign in to comment.