Fixing change of named parameter in makeCluster (#259)

Parameter name looks to have changed. Fixing. There are still some issues that I will open a separate ticket for.
This commit is contained in:
Chris Auld 2018-04-30 09:40:57 -07:00 коммит произвёл Brian
Родитель 9dfa59925d
Коммит b6fbcda5a9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -20,7 +20,7 @@ setCredentials("credentials.json")
generateClusterConfig("cluster-caret.json")
# Creating an Azure parallel backend
cluster <- makeCluster(clusterSetting = "cluster-caret.json")
cluster <- makeCluster(cluster = "cluster-caret.json")
# Register your Azure parallel backend to the foreach implementation
registerDoAzureParallel(cluster)