You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2019/08/20 15:26:09 UTC

[GitHub] [openwhisk-wskdeploy] mrutkows commented on a change in pull request #1054: Honor WSK_CONFIG_FILE if variable is set

mrutkows commented on a change in pull request #1054: Honor WSK_CONFIG_FILE if variable is set
URL: https://github.com/apache/openwhisk-wskdeploy/pull/1054#discussion_r315755456
 
 

 ##########
 File path: cmd/root.go
 ##########
 @@ -102,21 +102,32 @@ func init() {
 func initConfig() {
 	userHome := utils.GetHomeDirectory()
 	defaultPath := path.Join(userHome, whisk.DEFAULT_LOCAL_CONFIG)
-	if utils.Flags.CfgFile != "" {
 
-		// Read the file as a wskprops file, to check if it is valid.
-		_, err := whisk.ReadProps(utils.Flags.CfgFile)
-		if err != nil {
-			utils.Flags.CfgFile = defaultPath
-			warn := wski18n.T(wski18n.ID_WARN_CONFIG_INVALID_X_path_X,
-				map[string]interface{}{
-					wski18n.KEY_PATH: utils.Flags.CfgFile})
-			wskprint.PrintOpenWhiskWarning(warn)
+    // Precedence order for reading the configuration file should be:
+    // 1. --config 
+    // 2. ENV variable WSK_CONFIG_FILE
+    // 3. Default $HOME/.wskprops
+	cfgFiles := []string{
+		utils.Flags.CfgFile,
+		os.Getenv("WSK_CONFIG_FILE"),
+        defaultPath,
+	 }
+
+	for _, cfgFile := range cfgFiles {
 
 Review comment:
   If indeed there are 3 discrete places we look for a valid config. file (and each should have a single entry/key and associated value), then using an array to loop upon with a break stmt. seems overkill.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services