modified blob storage container for sample data

This commit is contained in:
Fabrizio Ruocco 2021-06-09 14:26:54 +02:00 коммит произвёл GitHub
Родитель e0187cc96d
Коммит 6010b9783e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -13,7 +13,7 @@ $storage_connection_string = az storage account show-connection-string -n $stora
# Deploy Sample Data
If($config.deploy_sample_data){
$blob_sour = "https://conversationalinsights.blob.core.windows.net/conversationkm-raw"
$blob_sour = "https://csciblob.blob.core.windows.net/conversationkm-raw"
$blob_dest = 'https://' + $storage_account + '.blob.core.windows.net/' + $telemetry_raw_data_container
az storage copy -s $blob_sour -d $blob_dest --recursive
@ -34,4 +34,4 @@ If($config.deploy_sample_data){
az storage entity insert --connection-string $storage_connection_string --entity PartitionKey=$PartitionKey RowKey=$RowKey Timestamp=$Timestamp userSurveyRating=$userSurveyRating wizardSurveyTaskSuccessful=$wizardSurveyTaskSuccessful --if-exists replace --table-name $table_sample_data
}
}
}