Dev Estimate: 1
Test Estimate: 1
The current breakLease API is this:
public void breakLease(String container, String blob, String leaseId)
However, according to http://msdn.microsoft.com/en-us/library/windowsazure/ee691972,
x-ms-lease-action: <acquire | renew | release | break>
...
Break:
... the request is not required to specify a matching lease ID.
... the response indicates the interval in seconds until a new lease may be acquired.
This means that
- The
leaseId parameter should be removed
- The function should return an object that includes a
LeaseTime property.
Dev Estimate: 1
Test Estimate: 1
The current
breakLeaseAPI is this:However, according to http://msdn.microsoft.com/en-us/library/windowsazure/ee691972,
This means that
leaseIdparameter should be removedLeaseTimeproperty.