fix: always report resource

This commit is contained in:
Jose Diaz-Gonzalez
2021-02-01 19:57:22 -05:00
parent cc2f054e6a
commit 12e2686e3f

View File

@@ -106,6 +106,16 @@ func PropertyGet(pluginName string, appName string, property string) string {
func PropertyGetAll(pluginName string, appName string) (map[string]string, error) {
properties := make(map[string]string)
pluginAppConfigRoot := getPluginAppPropertyPath(pluginName, appName)
fi, err := os.Stat(pluginAppConfigRoot)
if err != nil {
return properties, nil
}
if !fi.IsDir() {
return properties, errors.New("Specified property path is not a directory")
}
files, err := ioutil.ReadDir(pluginAppConfigRoot)
if err != nil {
return properties, err