@@ -122,7 +122,7 @@ func BootstrapEnv(appconf *config.AppConfig) error {
122
122
log .Infof ("Setting Up Unity UI from Marketplace" )
123
123
err = installUnityUi (store , appconf )
124
124
if err != nil {
125
- log .WithError (err ).Error ("Error installing unity-ui " )
125
+ log .WithError (err ).Error ("Error installing unity-portal " )
126
126
err = store .AddToAudit (application .Bootstrap_Unsuccessful , "test" )
127
127
if err != nil {
128
128
log .WithError (err ).Error ("Problem writing to auditlog" )
@@ -447,10 +447,10 @@ func installHealthStatusLambda(store database.Datastore, appConfig *config.AppCo
447
447
448
448
func installUnityUi (store database.Datastore , appConfig * config.AppConfig ) error {
449
449
450
- // Find the marketplace item for the unity-ui
450
+ // Find the marketplace item for the unity-portal
451
451
var name , version string
452
452
for _ , item := range appConfig .MarketplaceItems {
453
- if item .Name == "unity-ui " {
453
+ if item .Name == "unity-portal " {
454
454
name = item .Name
455
455
version = item .Version
456
456
break
@@ -462,8 +462,8 @@ func installUnityUi(store database.Datastore, appConfig *config.AppConfig) error
462
462
463
463
// If the item wasn't found, log an error and return
464
464
if name == "" || version == "" {
465
- log .Error ("unity-ui not found in MarketplaceItems" )
466
- return fmt .Errorf ("unity-ui not found in MarketplaceItems" )
465
+ log .Error ("unity-portal not found in MarketplaceItems" )
466
+ return fmt .Errorf ("unity-portal not found in MarketplaceItems" )
467
467
}
468
468
469
469
installParams := types.ApplicationInstallParams {
0 commit comments