resolveVolumeFiles: async()

in lib/volumeConfigurationResolver.js [78:91]


    resolveVolumeFiles: async (object) => {
      let paths = null;
      try {
        paths = await identifyPaths(provider, object);
      } catch(parseError) {
        throw parseError;
      }
      const names = Object.getOwnPropertyNames(paths);
      for (let i = 0; i < names.length; i++) {
        const p = names[i];
        const volumeValue = paths[p];
        objectPath.set(object, p, volumeValue);
      }
    },