# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 94
      def list(path)
        return nil if skip_organizations?(path)
        fix_exceptions do
          result = real_store.list(path[2..-1])
          if using_default?(path)
            result ||= []
            get_default(path).keys.each do |value|
              result << value if !result.include?(value)
            end
          end
          result
        end
      end