yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #37107
[Bug 1487350] [NEW] wrong execption msg of param backlog check
Public bug reported:
in file nova/wsgi.py, Line 128
Line128 if backlog < 1:
129 raise exception.InvalidInput(
130 reason='The backlog must be more than 1')
I think it wrong for variable reason='The backlog must be more than 1', because the condition is [if backlog < 1:]
I think Line130 it should change from 'The backlog must be more than 1'
to 'The backlog must be more than 0'
** Affects: nova
Importance: Undecided
Assignee: liyuanyuan (liyuanyuan-fnst)
Status: New
** Changed in: nova
Assignee: (unassigned) => liyuanyuan (liyuanyuan-fnst)
** Description changed:
in file nova/wsgi.py, Line 128
Line128 if backlog < 1:
- 129 raise exception.InvalidInput(
- 130 reason='The backlog must be more than 1')
+ 129 raise exception.InvalidInput(
+ 130 reason='The backlog must be more than 1')
I think it wrong for variable reason='The backlog must be more than 1', because the condition is [if backlog < 1:]
I think Line130 it should change from 'The backlog must be more than 1'
- to or 'The backlog must be more than 0'
+ to 'The backlog must be more than 0'
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1487350
Title:
wrong execption msg of param backlog check
Status in OpenStack Compute (nova):
New
Bug description:
in file nova/wsgi.py, Line 128
Line128 if backlog < 1:
129 raise exception.InvalidInput(
130 reason='The backlog must be more than 1')
I think it wrong for variable reason='The backlog must be more than 1', because the condition is [if backlog < 1:]
I think Line130 it should change from 'The backlog must be more than
1' to 'The backlog must be more than 0'
To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1487350/+subscriptions
Follow ups