Projects
Wiki     Timeline     Roadmap     Browse Source     View Tickets     New Ticket     Search

Ticket #158 (closed Defect: Duplicate)

Opened 3 years ago

Last modified 3 years ago

Quota wrong in PROPFIND Depth:1

Reported by: wsanchez@… Owned by: cdaboo@…
Priority: 2: Expected Milestone: CalendarServer-1.0
Component: Calendar Server Severity: Other
Keywords: Cc:

Description

11/16/06 11:47 AM Cyrus Daboo:

Edited summary of Jabber IM with David:

This is the result of a propfind with depth 1 on /calendars/users/

<response xmlns="DAV:"><href>/calendars/users/bob/</href><propstat><prop><quota-
                      ^
<?xml version="1.0"?>
<response xmlns="DAV:">
  <href>/calendars/users/bob/</href>
  <propstat>
    <prop>
      <quota-available-bytes>104857600</quota-available-bytes>
      <quota-used-bytes>0</quota-used-bytes>
      <getetag>"F42B5B-108-45526E13"</getetag>
      <resourcetype>
        <collection/>
      </resourcetype>
      <displayname>bob</displayname>
    </prop>
    <status>HTTP/1.1 200 OK</status>
  </propstat>
</response>

This is the result of a propfind with depth 0 on /calendars/users/bob/

<response xmlns="DAV:"><href>/calendars/users/bob/</href><propstat><prop><quota-
                      ^
<?xml version="1.0"?>
<response xmlns="DAV:">
  <href>/calendars/users/bob/</href>
  <propstat>
    <prop>
      <quota-available-bytes>104848783</quota-available-bytes>
      <quota-used-bytes>8817</quota-used-bytes>
      <getetag>"F42B5B-108-45526E13"</getetag>
      <resourcetype>
        <collection/>
      </resourcetype>
      <displayname>bob</displayname>
    </prop>
    <status>HTTP/1.1 200 OK</status>
  </propstat>
</response>

Why is quota-used-bytes different? There should be no difference.

Change History

Changed 3 years ago by cdaboo@…

  • status changed from new to closed
  • resolution set to duplicate

Duplicate of #83.

Note: See TracTickets for help on using tickets.