Skip to content

Commit

Permalink
[eph] update uuid imports
Browse files Browse the repository at this point in the history
  • Loading branch information
chradek authored and mikeharder committed May 27, 2020
1 parent 1f87af6 commit b67e5ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

import uuid from "uuid/v4";
import { v4 as uuid } from "uuid";
import { CheckpointInfo } from "./checkpointInfo";
import { CheckpointManager } from "./checkpointManager";
import { LeaseManager } from "./leaseManager";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

import uuid from "uuid/v4";
import { v4 as uuid } from "uuid";
import {
TokenProvider,
EventHubRuntimeInformation,
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-processor-host/src/hostContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT License.

import os from "os";
import uuid from "uuid/v4";
import { v4 as uuid } from "uuid";
import {
EventHubClient,
EventPosition,
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-processor-host/test/eph.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import chai from "chai";
import os from "os";
import uuid from "uuid/v4";
import { v4 as uuid } from "uuid";
import chaiAsPromised from "chai-as-promised";
chai.use(chaiAsPromised);
import chaiString from "chai-string";
Expand Down

0 comments on commit b67e5ae

Please sign in to comment.