#411: don't emit messages about what kind of logging is being done
--------------------------------------+------------------------
Reporter: tflink | Owner: tflink
Type: defect | Status: new
Priority: major | Milestone: Fedora 20
Component: Blocker bug tracker page | Version:
Keywords: | Blocked By:
Blocking: |
--------------------------------------+------------------------
= bug description =
On every sync, a "using X logging" message is emitted, sending an email
from production. This makes it more difficult to determine when there's a
problem during sync.
Change it so that message is only emitted if debug is enabled.
--
Ticket URL: <https://fedorahosted.org/fedora-qa/ticket/411>
Fedora QA <http://fedorahosted.org/fedora-qa>
Fedora Quality Assurance
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-tflink.rhcloud.com/r/47/
-----------------------------------------------------------
Review request for blockerbugs.
Bugs: 411
https://fedorahosted.org/fedora-qa/ticket/411
Repository: blockerbugs
Description
-------
This is a simple change to get rid of the cron noise on sync in production so that it's easier to see and detect issues. The messages are changed from print statements to debug log messages.
Diffs
-----
blockerbugs/__init__.py e8283612c785459fc461d223dc6908187d2ab3f1
Diff: http://reviewboard-tflink.rhcloud.com/r/47/diff/
Testing
-------
I've done testing in my local env but the change itself is trivial and shouldn't cause problems
Thanks,
Tim Flink
#443: Update repoinfo.conf - Add branch
-------------------------+------------------------
Reporter: ausil | Owner:
Type: task | Status: new
Priority: critical | Milestone: Hot issues
Component: production | Keywords:
Blocked By: | Blocking:
-------------------------+------------------------
We have branched for f20 per
https://fedoraproject.org/wiki/Mass_Branching_SOP i am filling a ticket
{{{
Update AutoQA repoinfo.conf
The AutoQA project maintains a config file (repoinfo.conf) that describes
available package repositories and their inheritance. In order to have
automated testing of Branched package builds, the repoinfo.conf file needs
to be updated. Please file an autoqa ticket to modify the repoinfo.conf
file to include pointers to the new release
}}}
--
Ticket URL: <https://fedorahosted.org/autoqa/ticket/443>
AutoQA <http://autoqa.fedorahosted.org>
Automated QA project
#316: Indicate bugs that are needinfo
---------------------------------------+---------------------
Reporter: adamwill | Owner: mkrizek
Type: enhancement | Status: new
Priority: minor | Milestone:
Component: Blocker bug tracker page | Version:
Resolution: | Keywords:
Blocked By: | Blocking:
---------------------------------------+---------------------
Comment (by tflink):
When I do a sync against F19, I get the following TB:
{{{
[bug.py:90] 2013-08-20 13:14:25 DEBUG Bug 909473 missing attribute
'flags' - doing refresh()
Traceback (most recent call last):
File "run_cli.py", line 5, in <module>
exit = cli.main()
File "/home/tflink/code/blockerbugs/blockerbugs/cli.py", line 218, in
main
sync_bugs(fullsync=options.full, docheck=options.check)
File "/home/tflink/code/blockerbugs/blockerbugs/cli.py", line 161, in
sync_bugs
sync.update_active(full_sync=fullsync)
File "/home/tflink/code/blockerbugs/blockerbugs/util/bug_sync.py", line
165, in update_active
self.update_milestone(milestone, 'FreezeException', last_sync_time)
File "/home/tflink/code/blockerbugs/blockerbugs/util/bug_sync.py", line
99, in update_milestone
newbuginfo = self.extract_information(newbug, tracker_type)
File "/home/tflink/code/blockerbugs/blockerbugs/util/bug_sync.py", line
64, in extract_information
needinfo = bug.get_flags('needinfo')[0] if bug.flags else False
TypeError: 'NoneType' object has no attribute '__getitem__'
}}}
--
Ticket URL: <https://fedorahosted.org/fedora-qa/ticket/316#comment:3>
Fedora QA <http://fedorahosted.org/fedora-qa>
Fedora Quality Assurance
#392: ReSTful API
--------------------------------------+-------------------------
Reporter: islamgulov | Owner: islamgulov
Type: enhancement | Status: new
Priority: major | Milestone: Fedora 20
Component: Blocker bug tracker page | Version:
Keywords: | Blocked By:
Blocking: |
--------------------------------------+-------------------------
= problem =
At the moment, Blocker bug tracker app has not API.
= analysis =
API is defined as RESTful HTTP service.
API support JSON data serialization request and response formats.
`application/json` in the Content-Type header required in the request.
Time is specified as an ISO 8601 dateTime (2011-01-24T17:08Z).
List operations return all items at a time (no paging).
Endpoints:
1) Lists bugs associated with a milestone.
GET /api/v<api version>/miletstone/<rel_num>/<version>/bug?type=type&
To filter the list of bugs, you can specify the following optional URI
parameters:
- type=type& - Filters the list of bugs by type.
List bugs response fields:
- bzid: Bugzilla bug id
- url
- summary
- status
- component
- active
- type
Possible values for the bug type attribute include: 'proposed_blocker',
'proposed_fe', 'accepted_blocker', 'accepted_fe', 'rejected_blocker',
'rejected_fe'.
2) Lists updates associated with a milestone.
GET /api/v<api
version>/miletstone/<rel_num>/<version>/update?bugtype=bugtype&
Parameters:
- bugtype=bugtype& - Filters the list of update by type of bugs.
List updates response fields:
- title
- url
- karma
- stable_karma
- status
- pending
- bugs:
- bzid
- type
- release
- milestones:
- version
3) Lists spins associated with a milestone.
GET /api/v<api version>/miletstone/<rel_num>/<version>/spin/
List spins response fields:
- id
- name
- state
- url
- date_requested
- date_created
- spin_type
- updates:
- title
- status
- url
- succeeds:
- id
- milestone
--
Ticket URL: <https://fedorahosted.org/fedora-qa/ticket/392>
Fedora QA <http://fedorahosted.org/fedora-qa>
Fedora Quality Assurance
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-tflink.rhcloud.com/r/38/
-----------------------------------------------------------
Review request for blockerbugs.
Repository: blockerbugs
Description
-------
commit e08c8ee1085bb0beb71b4a5c98c9d2e2497773cb
Author: Martin Krizek <mkrizek(a)redhat.com>
Date: Mon Jul 15 11:28:09 2013 +0200
Use fake login only in DEV environment
commit 8f175a28ae43b764e52435d174d73e2dc384bd6b
Author: Martin Krizek <mkrizek(a)redhat.com>
Date: Thu Jul 4 11:14:40 2013 +0200
Add developer login
This patch allows a fake login when DEV or TEST is set so we don't
access FAS server each time we log in.
TODO this will be merged with changes made in other review request dealing with fas-openid migrations.
Diffs
-----
blockerbugs/util/login.py PRE-CREATION
blockerbugs/templates/layout.html 8dc6deacd5e7a71757ed2564fb224b3cd92bfad5
blockerbugs/controllers/users.py 6f89a0b29143a9c09fcf25d97d875a01b9955fa4
blockerbugs/controllers/main.py a8082121576015a86c31bc76ebc17e982062a08b
blockerbugs/__init__.py 798fc6ecd562d1e13fbba26f804f74e6da670120
Diff: http://reviewboard-tflink.rhcloud.com/r/38/diff/
Testing
-------
Thanks,
Martin Krizek