[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-13 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntuone-client - 3.0.1-0ubuntu1.0.1

---
ubuntuone-client (3.0.1-0ubuntu1.0.1) precise-proposed; urgency=low

  * New upstream release.
- Don't ignore test failures in from main tests suite. (LP: #993574)
- Avoid multiple parallel GetDelta commands on same volume. (LP: #883252)
- Fix small memory leak in folder enabled check. (LP: #981255)
- Don't start syncdaemon with u1sdtool -q if not running. (LP: #907479)
- Avoid having Upload execute before Makefile command. (LP: #978903)
  * debian/watch:
- Update watch file to use stable-3-0 series for downloads now
 -- Rodney Dawes rodney.da...@ubuntu.com   Wed, 06 Jun 2012 14:08:37 -0400

** Changed in: ubuntuone-client (Ubuntu Precise)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-07 Thread Rick McBride
set verification-done, same testing as above.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/ubuntuone-client

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-06 Thread Marc Deslauriers
NACK.

ubuntuone-client was updated in precise-updates for the security issue
in bug 882062.

This SRU needs to be updated to include the security fix.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-06 Thread Rick McBride
Tested by restarting syncdaemon with and without changes to volumes
between. Observed none of the unwanted operation described in

[Test Case]
Without this fix, excessive GetDelta calls for the same Volume ID will appear 
in the syncdaemon.log under ~/.cache/ubuntuone/log/. With the fix, after
restarting syncdaemon, whenever a GetDelta call is made for a volume, it will 
occur only once for each volume.

However, holding off on setting verification-done due to NACK from
mdeslaur.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-05 Thread Brian Murray
Hello Guillermo, or anyone else affected,

Accepted ubuntuone-client into precise-proposed. The package will build
now and be available in a few hours. Please test and give feedback here.
See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you in advance!

** Changed in: ubuntuone-client (Ubuntu Precise)
   Status: New = Fix Committed

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-06-01 Thread Rodney Dawes
** Description changed:

  Sycndaemon is executing GetDelta requests on the same volume in parallel, 
when it should only execute 1.
  On solution is to add a path_lock based on volume path or id to queue the 
GetDetla's for the same volume and only execute one at a time (following 
GetDeltas will not be executed as one is already queued/running)
+ 
+ [Test Case]
+ Without this fix, excessive GetDelta calls for the same Volume ID will appear 
in the syncdaemon.log under ~/.cache/ubuntuone/log/. With the fix, after
+ restarting syncdaemon, whenever a GetDelta call is made for a volume, it will 
occur only once for each volume.
+ 
+ [Regression Potential]
+ Minimal.

** Description changed:

  Sycndaemon is executing GetDelta requests on the same volume in parallel, 
when it should only execute 1.
  On solution is to add a path_lock based on volume path or id to queue the 
GetDetla's for the same volume and only execute one at a time (following 
GetDeltas will not be executed as one is already queued/running)
  
  [Test Case]
  Without this fix, excessive GetDelta calls for the same Volume ID will appear 
in the syncdaemon.log under ~/.cache/ubuntuone/log/. With the fix, after
  restarting syncdaemon, whenever a GetDelta call is made for a volume, it will 
occur only once for each volume.
  
  [Regression Potential]
- Minimal.
+ Minimal. New unit test included.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-28 Thread Clint Byrum
Hello! This bug is attached to an upload in the queue for precise-
proposed. However, it does not contain the requisite fields for the SRU
team to process the upload. Please add them per the process outlined
here. To be more succinct, make sure the bug description lists these
fields: Impact, Dev Fix, Stable Fix, Regression Potential, Test case.

https://wiki.ubuntu.com/StableReleaseUpdates#Procedure

The upload will likely not be looked at by the SRU team until these
fields are present.

Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-25 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntuone-client - 3.0.1-0ubuntu1.1

---
ubuntuone-client (3.0.1-0ubuntu1.1) quantal; urgency=low

  * New upstream release.
- Don't ignore test failures in from main tests suite. (LP: #993574)
- Avoid multiple parallel GetDelta commands on same volume. (LP: #883252)
- Fix small memory leak in folder enabled check. (LP: #981255)
- Don't start syncdaemon with u1sdtool -q if not running. (LP: #907479)
- Avoid having Upload execute before Makefile command. (LP: #978903)
  * debian/watch:
- Update watch file to use stable-3-0 series for downloads now
 -- Rodney Dawes rodney.da...@ubuntu.com   Tue, 22 May 2012 13:33:55 -0400

** Changed in: ubuntuone-client (Ubuntu Quantal)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-25 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/ubuntuone-client

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-18 Thread Rodney Dawes
** Changed in: ubuntuone-client/stable-3-0
Milestone: None = 3.0.1

** Changed in: ubuntuone-client/stable-3-0
   Status: Fix Committed = Fix Released

** Changed in: ubuntuone-client/trunk
   Status: Fix Committed = Fix Released

** Also affects: ubuntuone-client (Ubuntu Quantal)
   Importance: Medium
   Status: Confirmed

** Also affects: ubuntuone-client (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: ubuntuone-client (Ubuntu Quantal)
Milestone: ubuntu-12.04.1 = None

** Changed in: ubuntuone-client (Ubuntu Precise)
Milestone: None = precise-updates

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-17 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-client/stable-3-0
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-16 Thread Joshua Hoover
** Tags added: u1-sru

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~dobey/ubuntuone-client/fix-getdelta-3-0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-15 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-client/trunk
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-09 Thread Joshua Hoover
** Also affects: ubuntuone-client (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: ubuntuone-client (Ubuntu)
   Status: New = Confirmed

** Changed in: ubuntuone-client
   Status: Confirmed = Triaged

** Changed in: ubuntuone-client (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ubuntuone-client (Ubuntu)
Milestone: None = ubuntu-12.04.1

** Changed in: ubuntuone-client
 Assignee: (unassigned) = Facundo Batista (facundo)

** Also affects: ubuntuone-client/stable-3-0
   Importance: Undecided
   Status: New

** Also affects: ubuntuone-client/trunk
   Importance: High
 Assignee: Facundo Batista (facundo)
   Status: Triaged

** Changed in: ubuntuone-client/stable-3-0
   Status: New = Triaged

** Changed in: ubuntuone-client/stable-3-0
   Importance: Undecided = High

** Changed in: ubuntuone-client/stable-3-0
 Assignee: (unassigned) = Facundo Batista (facundo)

** Tags added: u1-12.04.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-09 Thread Launchpad Bug Tracker
** Branch linked: lp:~facundo/ubuntuone-client/fix-getdelta-repetition

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883252] Re: Syncdaemon executes multiple GetDelta commands in parallel on the same volume

2012-05-09 Thread Leo Arias
** Tags added: foundations+

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883252

Title:
  Syncdaemon executes multiple GetDelta commands in parallel on the same
  volume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/883252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs