use installed azcopy if we can't use our own (#126)

This commit is contained in:
bmc-msft
2020-10-09 12:39:12 -04:00
committed by GitHub
parent 1c5be99881
commit f43c44e55c
3 changed files with 34 additions and 11 deletions

View File

@ -1,8 +1,13 @@
from azure.cosmosdb.table.tableservice import TableService
from azure.cosmosdb.table.models import Entity
from azure.cosmosdb.table.tablebatch import TableBatch
#!/usr/bin/env python
#
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import json
from typing import Optional, Callable, Dict, List
from typing import Callable, Dict, List
from azure.cosmosdb.table.tablebatch import TableBatch
from azure.cosmosdb.table.tableservice import TableService
def migrate_task_os(table_service: TableService) -> None: