ML - Updating sqlmlutil to fix R package management (#11432)

Updating sqlmlutil to fix R package management
This commit is contained in:
Leila Lali
2020-08-12 14:29:07 -07:00
committed by GitHub
parent 6e306461d7
commit 053a2c7446
3 changed files with 21 additions and 11 deletions

View File

@@ -35,14 +35,14 @@ export class Config {
}
/**
* Returns the config value of required python packages
* Returns the config value of required python packages. The order of the packages is based on the order they should install
*/
public get requiredSqlPythonPackages(): PackageConfigModel[] {
return this._configValues.sqlPackageManagement.requiredPythonPackages;
}
/**
* Returns the config value of required r packages
* Returns the config value of required r packages. The order of the packages is based on the order they should install
*/
public get requiredSqlRPackages(): PackageConfigModel[] {
return this._configValues.sqlPackageManagement.requiredRPackages;