[Bug 1190986] Re: ERROR Nonce already used

2014-08-29 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-29 Thread Greg Lutostanski
** Description changed:

+ 
+ SRU for secondary fix (branch lp:~julian-edwards/maas/nonce-fix-bug-1190986)
+ [Impact]
+  * Minimize possibility of hitting a nonce collision by using a longer nonce 
(uuid4) in both python-maas-client and commissioning scripts.
+ 
+ [Testcase]
+  * Do some api calls and make sure that the piston_nonce postgres table is 
using the larger uuid nonce for the calls
+ 
+ [Regression Potential]
+  * Minimal; replace random string of length 8 with uuidgen.
+ 
+ 
  The error below happens sometimes. (~5% of all requests fail)
  
  System: Ubuntu 12.04.2
  MAAS-version: 1.2+bzr1373+dfsg-0ubuntu1~12.04.1
  Juju-version: 0.7+bzr628+bzr631~precise1
  
  $ juju status
  2013-06-14 13:59:36,213 INFO Connecting to environment...
  2013-06-14 13:59:36,295 ERROR Cannot connect to environment: Nonce already 
used: 55941407
  Traceback (most recent call last):
-   File /usr/lib/python2.7/dist-packages/juju/providers/common/connect.py, 
line 43, in run
- client = yield self._internal_connect(share)
-   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
- result = result.throwExceptionIntoGenerator(g)
-   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
- return g.throw(self.type, self.value, self.tb)
-   File /usr/lib/python2.7/dist-packages/juju/providers/common/connect.py, 
line 59, in _internal_connect
- candidates = yield self._provider.get_zookeeper_machines()
-   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
- result = result.throwExceptionIntoGenerator(g)
-   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
- return g.throw(self.type, self.value, self.tb)
-   File 
/usr/lib/python2.7/dist-packages/juju/providers/common/findzookeepers.py, 
line 32, in find_zookeepers
- machine = yield provider.get_machine(instance_id)
-   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
- result = result.throwExceptionIntoGenerator(g)
-   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
- return g.throw(self.type, self.value, self.tb)
-   File /usr/lib/python2.7/dist-packages/juju/providers/maas/provider.py, 
line 125, in get_machines
- instances = yield self.maas_client.get_nodes(instance_ids)
-   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
545, in _runCallbacks
- current.result = callback(current.result, *args, **kw)
-   File /usr/lib/python2.7/dist-packages/juju/providers/maas/maas.py, line 
95, in _process_error
- raise ProviderError(error.response)
+   File /usr/lib/python2.7/dist-packages/juju/providers/common/connect.py, 
line 43, in run
+ client = yield self._internal_connect(share)
+   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
+ result = result.throwExceptionIntoGenerator(g)
+   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
+ return g.throw(self.type, self.value, self.tb)
+   File /usr/lib/python2.7/dist-packages/juju/providers/common/connect.py, 
line 59, in _internal_connect
+ candidates = yield self._provider.get_zookeeper_machines()
+   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
+ result = result.throwExceptionIntoGenerator(g)
+   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
+ return g.throw(self.type, self.value, self.tb)
+   File 
/usr/lib/python2.7/dist-packages/juju/providers/common/findzookeepers.py, 
line 32, in find_zookeepers
+ machine = yield provider.get_machine(instance_id)
+   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
1037, in _inlineCallbacks
+ result = result.throwExceptionIntoGenerator(g)
+   File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 
382, in throwExceptionIntoGenerator
+ return g.throw(self.type, self.value, self.tb)
+   File /usr/lib/python2.7/dist-packages/juju/providers/maas/provider.py, 
line 125, in get_machines
+ instances = yield self.maas_client.get_nodes(instance_ids)
+   File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 
545, in _runCallbacks
+ current.result = callback(current.result, *args, **kw)
+   File /usr/lib/python2.7/dist-packages/juju/providers/maas/maas.py, line 
95, in _process_error
+ raise ProviderError(error.response)
  ProviderError: Nonce already used: 55941407
  2013-06-14 13:59:36,297 ERROR Nonce already used: 55941407
  
  I think the problem is caused by the MAAS-database table piston_nonce
  In my system this table contains a hughe amount of tokens that are never 
deleted:
  maasdb=# SELECT count(id) FROM 

[Bug 1190986] Re: ERROR Nonce already used

2014-08-28 Thread Aaron Bentley
** Changed in: juju-core
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: juju (Ubuntu Saucy)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: juju (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-21 Thread Ian Booth
** Changed in: juju-core
 Assignee: (unassigned) = Ian Booth (wallyworld)

** Changed in: juju-core
   Status: Triaged = In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-21 Thread Ian Booth
** Changed in: juju-core
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread David Britton
Got another instance maybe?   maas package version:
1.6.1+bzr2548-0ubuntu1~ppa1


ERROR 2014-08-19 20:01:18,871 maasserver  
Exception: 'Nonce already used: 48723931' 
ERROR 2014-08-19 20:01:18,871 maasserver Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/django/core/handlers/base.py, line 
112, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
  File /usr/lib/python2.7/dist-packages/django/views/decorators/vary.py, line 
19, in inner_func
response = func(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/piston/resource.py, line 128, in 
__call__
actor, anonymous = self.authenticate(request, rm)
  File /usr/lib/python2.7/dist-packages/maasserver/api_support.py, line 67, 
in authenticate
RestrictedResource, self).authenticate(request, rm)
  File /usr/lib/python2.7/dist-packages/piston/resource.py, line 103, in 
authenticate
if not authenticator.is_authenticated(request):
  File /usr/lib/python2.7/dist-packages/maasserver/api_auth.py, line 60, in 
is_authenticated
raise OAuthUnauthorized(error)
OAuthUnauthorized: 'Nonce already used: 48723931'

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread David Britton
comment #9 was while running juju bootstrap -v

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread Greg Lutostanski
Since it was hit while running juju I'm inclined to believe that it is
because
http://bazaar.launchpad.net/~juju/gomaasapi/trunk/view/head:/oauth.go is
still using the old nonce generation method ([0-9]{8} rather than uuid)
which is much more collision prone.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread Andres Rodriguez
** Also affects: juju-core
   Importance: Undecided
   Status: New

** Also affects: juju (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread Andres Rodriguez
https://code.launchpad.net/~lutostag/gomaasapi/fix_nonce_generation/+merge/231638

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-20 Thread Ian Booth
** Changed in: juju-core
Milestone: None = 1.21-alpha1

** Changed in: juju-core
Milestone: 1.21-alpha1 = 1.20.6

** Changed in: juju-core
   Importance: Undecided = High

** Changed in: juju-core
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-08-19 Thread Julian Edwards
** Changed in: maas/1.6
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-30 Thread Julian Edwards
** Changed in: maas/1.5
   Status: Fix Committed = Fix Released

** Changed in: maas/trunk
Milestone: 1.6.1 = None

** Changed in: maas/trunk
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread Julian Edwards
** Also affects: maas/1.5
   Importance: Undecided
   Status: New

** Also affects: maas/1.6
   Importance: Undecided
   Status: New

** Also affects: maas/trunk
   Importance: High
 Assignee: Raphaël Badin (rvb)
   Status: Fix Released

** Changed in: maas/trunk
 Assignee: Raphaël Badin (rvb) = (unassigned)

** Changed in: maas/trunk
   Status: Fix Released = In Progress

** Changed in: maas/trunk
Milestone: 14.04 = 1.6.1

** Changed in: maas/1.6
Milestone: None = 1.6.0

** Changed in: maas/1.5
Milestone: None = 1.5.4

** Changed in: maas/1.5
   Status: New = In Progress

** Changed in: maas/1.6
   Status: New = In Progress

** Changed in: maas/1.6
 Assignee: (unassigned) = Julian Edwards (julian-edwards)

** Changed in: maas/1.5
 Assignee: (unassigned) = Julian Edwards (julian-edwards)

** Changed in: maas/1.5
   Importance: Undecided = High

** Changed in: maas/1.6
   Importance: Undecided = High

** Changed in: maas/trunk
 Assignee: (unassigned) = Julian Edwards (julian-edwards)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread Launchpad Bug Tracker
** Branch linked: lp:~julian-edwards/maas/nonce-fix-bug-1190986

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread MaaS Lander
** Changed in: maas/trunk
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread Launchpad Bug Tracker
** Branch linked: lp:~julian-edwards/maas/1.6-nonce-fix-bug-1190986

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread Launchpad Bug Tracker
** Branch linked: lp:~julian-edwards/maas/1.5

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-14 Thread MaaS Lander
** Changed in: maas/1.5
   Status: In Progress = Fix Committed

** Changed in: maas/1.6
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~lutostag/maas/trunk+nonce-generation-fix

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-07-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~lutostag/maas/1.5+nonce-generation-fix

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-04-16 Thread Julian Edwards
** Changed in: maas
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-01-16 Thread Raphaël Badin
If you're using a earlier version of MAAS that doesn't contain the fix yet, 
it's easy to reproduce the fix: 
Save the script from http://paste.ubuntu.com/6762313/ into nonces_cleanup.py 
and then run it using cron, every 5 minutes:
cat nonces_cleanup.py | sudo maas shell

Note that the cleanup will not happen the first time you run the script,
only the second time (and all the other times after that);  Read the
script if you want to know why ;).

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2014-01-15 Thread Julian Edwards
** Changed in: maas
Milestone: None = 14.04

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2013-10-17 Thread James Page
** Changed in: maas (Ubuntu Saucy)
   Status: New = Triaged

** Changed in: maas (Ubuntu Saucy)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1190986] Re: ERROR Nonce already used

2013-10-16 Thread James Page
** Also affects: maas (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: maas (Ubuntu Saucy)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to maas in Ubuntu.
https://bugs.launchpad.net/bugs/1190986

Title:
  ERROR Nonce already used

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1190986/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs