Skip to content

Commit

Permalink
fix: avoid exiting on env create failure
Browse files Browse the repository at this point in the history
  • Loading branch information
claywd committed Oct 17, 2023
1 parent ef499df commit 37b729f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func main() {
log.Infof("adding default environments for cluster %s", importedCluster.ClusterName)
err := environments.CreateDefaultEnvironments(importedCluster)
if err != nil {
log.Fatalf("Error creating default environments %s", err.Error())
log.Infof("Error creating default environments %s", err.Error())
}
}()
}
Expand Down

0 comments on commit 37b729f

Please sign in to comment.