Closed
Bug 584548
Opened 14 years ago
Closed 14 years ago
Change Product and component for the Webdev Project form
Categories
(Infrastructure & Operations Graveyard :: WebOps: Other, task)
Infrastructure & Operations Graveyard
WebOps: Other
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: skeen.bugzilla, Assigned: fox2mike)
References
()
Details
change Product to: Mozilla.org
change Component to: WebDev
This is low risk as it is a config file change only.
IT can you change the config files in stage (https://intranet.mozilla.org/stage-webtools) and production (https://intranet.mozilla.org/webtools)
The file is located at application/config/workermgmt.php
Please change the 'Webdev_Project' section within the $config['bug_defaults'] array as shown in this diff excerpt.
$config['bug_defaults'] = array(
...
'Webdev_Project' => array(
- 'product' => 'Core',
- 'component' => 'Tracking',
+ 'product' => 'Mozilla.org',
+ 'component' => 'WebDev',
'version' => 'unspecified',
'cc' => array('morgamic@gmail.com'),
'assigned_to' => 'malexis@mozilla.com'
Just let me know if you have any questons
Assignee: skeen.bugzilla → server-ops
Component: Other → Server Operations: Web Content Push
Product: Websites → mozilla.org
QA Contact: other → mrz
Comment 2•14 years ago
|
||
(In reply to comment #1)
> + 'product' => 'Mozilla.org',
> + 'component' => 'WebDev',
No, this is wrong. Products and components are case-sensitive.
Product should be 'mozilla.org'; component should be 'Webdev'.
thx :reed,
proper diff is
$config['bug_defaults'] = array(
...
'Webdev_Project' => array(
- 'product' => 'Core',
- 'component' => 'Tracking',
+ 'product' => 'mozilla.org',
+ 'component' => 'WebDev',
'version' => 'unspecified',
'cc' => array('morgamic@gmail.com'),
'assigned_to' => 'malexis@mozilla.com'
wishing comments had edit (and bugzilla was case-insensitive ) :(
the for real, proper diff is...
$config['bug_defaults'] = array(
...
'Webdev_Project' => array(
- 'product' => 'Core',
- 'component' => 'Tracking',
+ 'product' => 'mozilla.org',
+ 'component' => 'Webdev',
'version' => 'unspecified',
'cc' => array('morgamic@gmail.com'),
'assigned_to' => 'malexis@mozilla.com'
Updated•14 years ago
|
Status: ASSIGNED → NEW
Assignee | ||
Updated•14 years ago
|
Assignee: server-ops → shyam
Assignee | ||
Comment 5•14 years ago
|
||
Done.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 6•14 years ago
|
||
Hey Shyam,
We have the wrong version for component and it broke the page and throws up this error when clicking submit:
Uh oh! Something went wrong...
* There was an error communicating with the Bugzilla server for Bug "Webdev Project": There is no version named 'unspecified' in the 'mozilla.org' product., code[51]
Need to change to:
'version' => 'other',
Marking this critical since we've got some folks actively using this form now and need back up ASAP.
Thanks,
Mike
Severity: normal → critical
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Assignee | ||
Comment 7•14 years ago
|
||
Heh, I thought this was tested. If not, please test or ask QA for help *before* we take things live, I'm sure they'll be glad to look things over.
Also, when you need something done during daytime PDT and I'm not around (usually, I'm not) re-assign the bug back to server-ops, otherwise it'll just sit till I get back to it (during my morning).
Assignee | ||
Comment 8•14 years ago
|
||
(In reply to comment #6)
> Need to change to:
>
> 'version' => 'other',
Done, on stage and prod.
Status: REOPENED → RESOLVED
Closed: 14 years ago → 14 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Component: Server Operations: Web Operations → WebOps: Other
Product: mozilla.org → Infrastructure & Operations
Updated•6 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•