Closed
Bug 553869
Opened 15 years ago
Closed 8 years ago
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Categories
(Toolkit :: Add-ons Manager, defect)
Toolkit
Add-ons Manager
Tracking
()
RESOLVED
FIXED
mozilla57
Tracking | Status | |
---|---|---|
firefox57 | --- | fixed |
People
(Reporter: Unfocused, Assigned: leni1, Mentored)
References
Details
(Whiteboard: [lang=js][good first bug])
Attachments
(1 file, 4 obsolete files)
In XPIProvider, when there is an error checking for updates, the onUpdateFinished event is fired with the error parameter set to constants defined in UpdateChecker. It should be using error codes defined in AddonManager, so that all providers can use them. Furthermore, consumers should not need to import UpdateChecker.jsm just to get the relevant error constants.
Comment 1•15 years ago
|
||
Does that also have a perf impact?
Reporter | ||
Comment 2•15 years ago
|
||
No perf impact - JSMs are cached, so importing it doesn't cost us anything, other than it being annoying. This is solely an API design issue.
Flags: in-testsuite-
Flags: in-litmus-
Comment 3•11 years ago
|
||
What's needed is:
1) make sure there are no inconsistencies between the error codes listed in UpdateChecker and those in AddonManager
2) make sure AddonManager has the definitive declarations for all the error codes
3) Require AddonManager.jsm in any other modules that refer to the error codes
4) Convert all uses of UpdateChecker.{error-code-name} to AddonManager.{error-code-name}
5) remove the declarations from UpdateChecker
It's possible there are add-ons that use the UpdateChecker.{error-code-name} declarations, so this may require add-on compatibility follow-up.
Mentor: irving
Whiteboard: [rewrite] → [lang=js][good first bug]
Updated•10 years ago
|
Mentor: irving
Updated•9 years ago
|
Mentor: dtownsend
Assignee | ||
Comment 4•8 years ago
|
||
Hello. Interested in working on this bug. Would like to know what files I would have to modify/create in order to submit a first patch. Thanks.
Flags: needinfo?(dtownsend)
Updated•8 years ago
|
Mentor: dtownsend → rhelmer
Comment 5•8 years ago
|
||
rhelmer is going to mentor this.
Flags: needinfo?(dtownsend) → needinfo?(rhelmer)
Comment 6•8 years ago
|
||
(In reply to Leni Kadali from comment #4)
> Hello. Interested in working on this bug. Would like to know what files I
> would have to modify/create in order to submit a first patch. Thanks.
Hi! I believe comment 3 is still a useful starting point.
Specifically you'd want to move the error codes from here:
http://searchfox.org/mozilla-central/rev/714606a8145636d93b116943d3a65a6a49d2acf8/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm#784-796
Into this JSM instead: http://searchfox.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManager.jsm
You'll need to modify any callers to use `AddonManager.{ERROR_CODE}` rather than `AddonUpdateChecker.{ERROR_CODE}`, you can either search in your local hg clone or search this way: http://searchfox.org/mozilla-central/search?q=symbol:%23ERROR_DOWNLOAD_ERROR&redirect=false
Thanks! Let me know if you need anything, happy to help.
Flags: needinfo?(rhelmer) → needinfo?(lenikmutungi)
Assignee | ||
Comment 7•8 years ago
|
||
Moved the error codes from AddonUpdateChecker.jsm to AddonManager.jsm
Modified callers to use `AddonManager.{ERROR_CODE}` rather than `AddonUpdateChecker.{ERROR_CODE}`
Hopefully if this passes review, I can push to MozReview
changed toolkit/mozapps/extensions/AddonManager.jsm
changed toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm
changed toolkit/mozapps/extensions/test/browser/browser_updatessl.js
Assignee | ||
Comment 8•8 years ago
|
||
Comment on attachment 8880298 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
I got this error submitting the patch:
abort: REST error on PUT to https://bugzilla.mozilla.org/rest/bug/553869: You tried to change the Assignee field from nobody@mozilla.org to lenikmutungi@gmail.com , but only the assignee of the bug, or a user with the required permissions may change that field. If you are attempting to confirm an unconfirmed bug or edit the fields of a bug, find out how to get the necessary permissions.
If it's alright, may I be assigned the bug? :)
Flags: needinfo?(lenikmutungi) → needinfo?(rhelmer)
Assignee | ||
Comment 9•8 years ago
|
||
Comment on attachment 8880298 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
I got this error submitting the patch:
abort: REST error on PUT to https://bugzilla.mozilla.org/rest/bug/553869: You tried to change the Assignee field from nobody@mozilla.org to lenikmutungi@gmail.com , but only the assignee of the bug, or a user with the required permissions may change that field. If you are attempting to confirm an unconfirmed bug or edit the fields of a bug, find out how to get the necessary permissions.
If it's alright, may I be assigned the bug? :)
Attachment #8880298 -
Flags: review?(rhelmer)
Assignee | ||
Comment 10•8 years ago
|
||
> 5) remove the declarations from UpdateChecker
By the way, what does this bit mean? Does it mean I remove the `this.AddonUpdateChecker` code?
Flags: needinfo?(rhelmer)
Comment 11•8 years ago
|
||
(In reply to Leni Kadali from comment #9)
> Comment on attachment 8880298 [details] [diff] [review]
> XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
>
> I got this error submitting the patch:
> abort: REST error on PUT to https://bugzilla.mozilla.org/rest/bug/553869:
> You tried to change the Assignee field from nobody@mozilla.org to
> lenikmutungi@gmail.com , but only the assignee of the bug, or a user with
> the required permissions may change that field. If you are attempting to
> confirm an unconfirmed bug or edit the fields of a bug, find out how to get
> the necessary permissions.
>
> If it's alright, may I be assigned the bug? :)
Ah yes it does mean that - I've assigned you now, sorry for not doing it before!
Assignee: nobody → lenikmutungi
Comment 12•8 years ago
|
||
Comment on attachment 8880298 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Review of attachment 8880298 [details] [diff] [review]:
-----------------------------------------------------------------
Overall this looks good, needs a few changes before we can land it. Thanks for working on this!
::: toolkit/mozapps/extensions/AddonManager.jsm
@@ +3372,5 @@
> // The addon did not have the expected ID
> ["ERROR_INCORRECT_ID", -7],
> ]),
>
> + // These must be kept in sync with AddonManager
This comment can be removed now.
@@ +3385,5 @@
> + // The update information was not correctly signed or there was an SSL error.
> + ERROR_SECURITY_ERROR: -5,
> + // The update was cancelled
> + ERROR_CANCELLED: -6,
> +
Please remove this stray whitespace.
::: toolkit/mozapps/extensions/test/browser/browser_updatessl.js
@@ +2,5 @@
> * http://creativecommons.org/publicdomain/zero/1.0/
> */
>
> var tempScope = {};
> +Components.utils.import("resource://gre/modules/addons/AddonManager.jsm", tempScope);
`AddonUpdateChecker.jsm` still needs to be imported so please revert this line.
@@ +86,5 @@
> message = "Should have seen the right result for an update check from " +
> mainURL;
> }
>
> + AddonManager.checkForUpdates("addon1@tests.mozilla.org",
This one is a function that is still in `AddonUpdateChecker` so please revert this line :)
Attachment #8880298 -
Flags: review?(rhelmer)
Comment 13•8 years ago
|
||
(In reply to Leni Kadali from comment #10)
> > 5) remove the declarations from UpdateChecker
> By the way, what does this bit mean? Does it mean I remove the
> `this.AddonUpdateChecker` code?
The error codes such as `ERROR_TIMEOUT` and the comments (the bit that has been moved to `AddonManager`) should be removed, since they won't be used anymore.
Assignee | ||
Comment 14•8 years ago
|
||
Moved the error codes from AddonUpdateChecker.jsm to AddonManager.jsm
Modified callers to use `AddonManager.{ERROR_CODE}` rather than `AddonUpdateChecker.{ERROR_CODE}`
Removed the error codes e.g. `ERROR_TIMEOUT` and the corresponding comments from AddonUpdateChecker.jsm
changed toolkit/mozapps/extensions/AddonManager.jsm
changed toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm
changed toolkit/mozapps/extensions/test/browser/browser_updatessl.js
Attachment #8880739 -
Flags: review?(rhelmer)
Assignee | ||
Updated•8 years ago
|
Attachment #8880298 -
Attachment is obsolete: true
Assignee | ||
Comment 15•8 years ago
|
||
Comment on attachment 8880739 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
I wonder if I should revert this line
`const DOWNLOAD_ERROR = AddonManager.ERROR_DOWNLOAD_ERROR;`
to `const DOWNLOAD_ERROR = AddonUpdateChecker.ERROR_DOWNLOAD_ERROR;`
or this isn't covered by the need of AddonUpdateChecker.jsm?
Flags: needinfo?(rhelmer)
Comment 16•8 years ago
|
||
(In reply to Leni Kadali from comment #15)
> Comment on attachment 8880739 [details] [diff] [review]
> XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
>
> I wonder if I should revert this line
> `const DOWNLOAD_ERROR = AddonManager.ERROR_DOWNLOAD_ERROR;`
> to `const DOWNLOAD_ERROR = AddonUpdateChecker.ERROR_DOWNLOAD_ERROR;`
> or this isn't covered by the need of AddonUpdateChecker.jsm?
I don't think this will work since you've now moved all these constants to AddonManager.
Have you tested this manually, or run any automated tests? I can help with that if not.
Flags: needinfo?(rhelmer)
Comment 17•8 years ago
|
||
Comment on attachment 8880739 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Sorry for the delay! Was traveling and then attending a lot of meetings this week so haven't been at the computer much.
This looks good to me, I'd like to make sure this passes automated tests. I can go ahead and push this patch to our "try server" which will do this.
Attachment #8880739 -
Flags: review?(rhelmer) → review+
Comment 18•8 years ago
|
||
Try run:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=24e414f719ad5d3499352fc1725133b9b537c7ef
needinfo'ing myself so I don't forget to come back around and check.
Flags: needinfo?(rhelmer)
Assignee | ||
Comment 19•8 years ago
|
||
(In reply to Robert Helmer [:rhelmer] from comment #17)
> Comment on attachment 8880739 [details] [diff] [review]
> XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
>
> Sorry for the delay! Was traveling and then attending a lot of meetings this
> week so haven't been at the computer much.
>
> This looks good to me, I'd like to make sure this passes automated tests. I
> can go ahead and push this patch to our "try server" which will do this.
I look forward to the results :). Thanks!
Comment 20•8 years ago
|
||
Comment on attachment 8880739 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Looks like the toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js test is failing: https://treeherder.mozilla.org/#/jobs?repo=try&revision=24e414f719ad5d3499352fc1725133b9b537c7ef&selectedJob=111043879
Are you able to do a local build? You should be able to reproduce the failure with:
./mach test toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
If not let me know and I can take a look. Thanks!
Flags: needinfo?(rhelmer) → needinfo?(lenikmutungi)
Attachment #8880739 -
Flags: review+
Assignee | ||
Comment 21•8 years ago
|
||
(In reply to Robert Helmer [:rhelmer] from comment #20)
> Comment on attachment 8880739 [details] [diff] [review]
> XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
>
> Looks like the toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
> test is failing:
> https://treeherder.mozilla.org/#/
> jobs?repo=try&revision=24e414f719ad5d3499352fc1725133b9b537c7ef&selectedJob=1
> 11043879
>
> Are you able to do a local build? You should be able to reproduce the
> failure with:
>
> ./mach test toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
>
> If not let me know and I can take a look. Thanks!
By local build, do you mean rebuilding Firefox. If that's the case, yes I have a local copy of the source code, so I can try and see.
Flags: needinfo?(lenikmutungi) → needinfo?(rhelmer)
Comment 22•8 years ago
|
||
(In reply to Leni Kadali from comment #21)
> (In reply to Robert Helmer [:rhelmer] from comment #20)
> > Comment on attachment 8880739 [details] [diff] [review]
> > XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
> >
> > Looks like the toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
> > test is failing:
> > https://treeherder.mozilla.org/#/
> > jobs?repo=try&revision=24e414f719ad5d3499352fc1725133b9b537c7ef&selectedJob=1
> > 11043879
> >
> > Are you able to do a local build? You should be able to reproduce the
> > failure with:
> >
> > ./mach test toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
> >
> > If not let me know and I can take a look. Thanks!
>
> By local build, do you mean rebuilding Firefox. If that's the case, yes I
> have a local copy of the source code, so I can try and see.
Yes, that is correct.
Flags: needinfo?(rhelmer)
Assignee | ||
Comment 23•8 years ago
|
||
Ran the test and got the following output.
0:10.77 TEST_STATUS: Thread-2 FAIL -3 == "undefined"
/home/user/src/mozilla-central/obj-x86_64-pc-linux-gnu/_tests/xpcshell/toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js:null:183
0:10.77 LOG: Thread-2 INFO exiting test
0:10.77 LOG: Thread-2 ERROR Unexpected exception 2147500036
undefined
0:10.77 LOG: Thread-2 INFO exiting test
0:10.79 LOG: Thread-2 INFO "CONSOLE_MESSAGE: (info) 1499453592748 addons.update-checker WARN onUpdateCheckComplete failed to parse update manifest: [Exception... "Missing updates property for urn:mozilla:extension:test_bug378216_15@tests.mozilla.org" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://gre/modules/addons/AddonUpdateChecker.jsm :: parseRDFManifest :: line 369" data: no] Stack trace: parseRDFManifest()@resource://gre/modules/addons/AddonUpdateChecker.jsm:369 < parser()@resource://gre/modules/addons/AddonUpdateChecker.jsm:645 < onLoad()@resource://gre/modules/addons/AddonUpdateChecker.jsm:655 < UpdateParser/<()@resource://gre/modules/addons/AddonUpdateChecker.jsm:580 < _do_main()@/home/user/src/mozilla-central/testing/xpcshell/head.js:222 < _execute_test()@/home/user/src/mozilla-central/testing/xpcshell/head.js:550 < -e:1"
0:10.90 LOG: Thread-2 INFO <<<<<<<
0:10.90 LOG: MainThread INFO INFO | Result summary:
0:10.90 LOG: MainThread INFO INFO | Passed: 0
0:10.90 LOG: MainThread INFO INFO | Failed: 2
0:10.90 LOG: MainThread INFO INFO | Todo: 0
0:10.90 LOG: MainThread INFO INFO | Retried: 0
0:10.90 SUITE_END: MainThread
Summary
=======
Ran 100 tests (2 parents, 98 subtests)
Expected results: 96
Unexpected results: 4 (FAIL: 4)
Unexpected Results
==================
xpcshell-unpack.ini:toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
--------------------------------------------------------------------------------
FAIL [Parent]
xpcshell.ini:toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
-------------------------------------------------------------------------
FAIL [Parent]
Tests were run in parallel. Try running with --sequential to make sure the failures were not caused by this.
What do you think is causing the error?
Flags: needinfo?(rhelmer)
Comment 24•8 years ago
|
||
(In reply to Leni Kadali from comment #23)
> Ran the test and got the following output.
>
> 0:10.77 TEST_STATUS: Thread-2 FAIL -3 == "undefined"
> /home/user/src/mozilla-central/obj-x86_64-pc-linux-gnu/_tests/xpcshell/
> toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js:null:183
> 0:10.77 LOG: Thread-2 INFO exiting test
> 0:10.77 LOG: Thread-2 ERROR Unexpected exception 2147500036
> undefined
> 0:10.77 LOG: Thread-2 INFO exiting test
> 0:10.79 LOG: Thread-2 INFO "CONSOLE_MESSAGE: (info) 1499453592748
> addons.update-checker WARN onUpdateCheckComplete failed to parse update
> manifest: [Exception... "Missing updates property for
> urn:mozilla:extension:test_bug378216_15@tests.mozilla.org" nsresult:
> "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame ::
> resource://gre/modules/addons/AddonUpdateChecker.jsm :: parseRDFManifest ::
> line 369" data: no] Stack trace:
> parseRDFManifest()@resource://gre/modules/addons/AddonUpdateChecker.jsm:369
> < parser()@resource://gre/modules/addons/AddonUpdateChecker.jsm:645 <
> onLoad()@resource://gre/modules/addons/AddonUpdateChecker.jsm:655 <
> UpdateParser/<()@resource://gre/modules/addons/AddonUpdateChecker.jsm:580 <
> _do_main()@/home/user/src/mozilla-central/testing/xpcshell/head.js:222 <
> _execute_test()@/home/user/src/mozilla-central/testing/xpcshell/head.js:550
> < -e:1"
> 0:10.90 LOG: Thread-2 INFO <<<<<<<
> 0:10.90 LOG: MainThread INFO INFO | Result summary:
> 0:10.90 LOG: MainThread INFO INFO | Passed: 0
> 0:10.90 LOG: MainThread INFO INFO | Failed: 2
> 0:10.90 LOG: MainThread INFO INFO | Todo: 0
> 0:10.90 LOG: MainThread INFO INFO | Retried: 0
> 0:10.90 SUITE_END: MainThread
> Summary
> =======
>
> Ran 100 tests (2 parents, 98 subtests)
> Expected results: 96
> Unexpected results: 4 (FAIL: 4)
>
> Unexpected Results
> ==================
>
> xpcshell-unpack.ini:toolkit/mozapps/extensions/test/xpcshell/
> test_updatecheck.js
> -----------------------------------------------------------------------------
> ---
> FAIL [Parent]
> xpcshell.ini:toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
> -------------------------------------------------------------------------
> FAIL [Parent]
> Tests were run in parallel. Try running with --sequential to make sure the
> failures were not caused by this.
>
> What do you think is causing the error?
If you take a look at test_updatecheck.js on line 183, it's still using `AddonUpdateChecker.ERROR_PARSE_ERROR` - this needs to be changed to `AddonManager` per your other changes. Hope that helps!
Flags: needinfo?(rhelmer) → needinfo?(lenikmutungi)
Assignee | ||
Comment 25•8 years ago
|
||
Moved the error codes from AddonUpdateChecker.jsm to AddonManager.jsm
Modified callers to use `AddonManager.{ERROR_CODE}` rather than `AddonUpdateChecker.{ERROR_CODE}`
Removed the error codes e.g. `ERROR_TIMEOUT` and the corresponding comments from AddonUpdateChecker.jsm
Updated test_updatecheck.js to use `AddonManager.ERROR_PARSE_ERROR` from `AddonUpdateChecker.ERROR_PARSE_ERROR`
changed toolkit/mozapps/extensions/AddonManager.jsm
changed toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm
changed toolkit/mozapps/extensions/test/browser/browser_updatessl.js
changed toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
Attachment #8886273 -
Flags: review?(rhelmer)
Assignee | ||
Updated•8 years ago
|
Attachment #8880739 -
Attachment is obsolete: true
Assignee | ||
Comment 26•8 years ago
|
||
Comment on attachment 8886273 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Tests pass. Hopefully passes through on Try :-)
Flags: needinfo?(lenikmutungi)
Assignee | ||
Comment 27•8 years ago
|
||
Hi! If you're not a position to push to Try, could you guide me on how to do it? :-)
Flags: needinfo?(rhelmer)
Comment 28•8 years ago
|
||
(In reply to Leni Kadali from comment #27)
> Hi! If you're not a position to push to Try, could you guide me on how to do
> it? :-)
I think you need "level 1" access to use try:
https://www.mozilla.org/en-US/about/governance/policies/commit/access-policy/
I went ahead and pushed this now, sorry for the delay (had some trouble with my try access, now resolved):
https://treeherder.mozilla.org/#/jobs?repo=try&revision=812b9fc2bbd35b1ecab14e74bfb83cde96ae90f4
Flags: needinfo?(rhelmer)
Comment 29•8 years ago
|
||
Comment on attachment 8886273 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Tests look good! There's just a tiny lint failure, you can test this locally with: `./mach lint toolkit/mozapps/extensions/AddonManager.jsm`
You can see this in the try run here:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=812b9fc2bbd35b1ecab14e74bfb83cde96ae90f4&selectedJob=116748180
Flags: needinfo?(lenikmutungi)
Attachment #8886273 -
Flags: review?(rhelmer)
Assignee | ||
Comment 30•8 years ago
|
||
Moved the error codes from AddonUpdateChecker.jsm to AddonManager.jsm
Modified callers to use `AddonManager.{ERROR_CODE}` rather than `AddonUpdateChecker.{ERROR_CODE}`
Removed the error codes e.g. `ERROR_TIMEOUT` and the corresponding comments from AddonUpdateChecker.jsm
Updated test_updatecheck.js to use `AddonManager.ERROR_PARSE_ERROR` from `AddonUpdateChecker.ERROR_PARSE_ERROR`
Removed the whitespaces detected by `./mach lint toolkit/mozapps/extensions/AddonManager.jsm`
Should pass on Try.
changed toolkit/mozapps/extensions/AddonManager.jsm
changed toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm
changed toolkit/mozapps/extensions/test/browser/browser_updatessl.js
changed toolkit/mozapps/extensions/test/xpcshell/test_updatecheck.js
Attachment #8889855 -
Flags: review?(rhelmer)
Assignee | ||
Updated•8 years ago
|
Attachment #8886273 -
Attachment is obsolete: true
Assignee | ||
Comment 31•8 years ago
|
||
Comment on attachment 8889855 [details] [diff] [review]
XPIProvider's onUpdateFinished uses error codes not defined in AddonManager
Should be good to go :-)
Flags: needinfo?(lenikmutungi)
Assignee | ||
Updated•8 years ago
|
Status: NEW → ASSIGNED
Comment 32•8 years ago
|
||
Now I am having another problem w/ running try locally (build system) - I am going to move this review over to mozreview so we can use the try integration and autoland etc.
Comment hidden (mozreview-request) |
Updated•8 years ago
|
Attachment #8889855 -
Flags: review?(rhelmer)
Updated•8 years ago
|
Attachment #8889855 -
Attachment is obsolete: true
Comment hidden (mozreview-request) |
Comment 35•8 years ago
|
||
mozreview-review |
Comment on attachment 8890910 [details]
Bug 553869 - move error codes constants from UpdateChecker to AddonManager p=lenikmutungi@gmail.com
https://reviewboard.mozilla.org/r/162118/#review171272
Attachment #8890910 -
Flags: review?(rhelmer) → review+
Comment 36•8 years ago
|
||
Pushed by rhelmer@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/3e13ecea8235
move error codes constants from UpdateChecker to AddonManager r=rhelmer p=lenikmutungi@gmail.com
Comment 37•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox57:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla57
Comment 38•8 years ago
|
||
Looks like this landed successfully in mozilla-central and should be in a Nightly build soon.
Thanks for your contribution Leni Kadali!
Comment 39•8 years ago
|
||
Thank you for the patch, Leni! \o/ Your contribution has been added to our recognition wiki: https://wiki.mozilla.org/Add-ons/Contribute/Recognition#August_2017
Welcome onboard! I hope to see you around. :)
Assignee | ||
Comment 40•8 years ago
|
||
(In reply to Robert Helmer [:rhelmer] from comment #38)
> Looks like this landed successfully in mozilla-central and should be in a
> Nightly build soon.
>
> Thanks for your contribution Leni Kadali!
You're most welcome Robert. And thanks for taking the time to mentor me :-)
(In reply to Caitlin Neiman (http://pronoun.is/she) from comment #39)
> Thank you for the patch, Leni! \o/ Your contribution has been added to our
> recognition wiki:
> https://wiki.mozilla.org/Add-ons/Contribute/Recognition#August_2017
>
> Welcome onboard! I hope to see you around. :)
Thanks Caitlin! :D
You need to log in
before you can comment on or make changes to this bug.
Description
•