From a3b16b8a37439d44b55090c432cec6d4b923a2c8 Mon Sep 17 00:00:00 2001 From: Karl-Philipp Wulfert Date: Tue, 2 Apr 2019 18:03:21 +0200 Subject: [PATCH] refactor: adjust to changed dependency --- src/connectorClient.ts | 4 ++-- src/copy.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/connectorClient.ts b/src/connectorClient.ts index 42da9427..0acc8475 100644 --- a/src/connectorClient.ts +++ b/src/connectorClient.ts @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 StApps + * Copyright (C) 2018, 2019 StApps * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, version 3. @@ -12,6 +12,7 @@ * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ +import {asyncPool} from '@krlwlfrt/async-pool'; import { SCBulkResponse, SCBulkRoute, @@ -22,7 +23,6 @@ import { SCThingUpdateResponse, SCThingUpdateRoute, } from '@openstapps/core'; -import {asyncPool} from 'async-pool-native/dist/async-pool'; import * as moment from 'moment'; import {Bulk} from './bulk'; import {Client} from './client'; diff --git a/src/copy.ts b/src/copy.ts index 30bba652..6b5a7813 100644 --- a/src/copy.ts +++ b/src/copy.ts @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 StApps + * Copyright (C) 2018, 2019 StApps * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, version 3. @@ -12,8 +12,8 @@ * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ +import {asyncPool} from '@krlwlfrt/async-pool'; import {SCSearchRequest, SCThingType} from '@openstapps/core'; -import {asyncPool} from 'async-pool-native/dist/async-pool'; import {Bar} from 'cli-progress'; import {Client} from './client'; import {ConnectorClient} from './connectorClient';