Граф коммитов

90 Коммитов

Автор SHA1 Сообщение Дата
Gregory Szorc 0ef27f30cd Bug 1392886 - Enable sparse extension in Docker images; r=mshal
This needs to be globally enabled to support sparse checkouts
and accessing repos using sparse checkouts.

Having the extension enabled should no-op unless sparse checkouts
are being used. i.e. it should be harmless to globally enable.

MozReview-Commit-ID: AKNUOXfYQPx

--HG--
extra : rebase_source : d32b8a89c56c39923d7b0cd61583c2828a29a872
2017-08-22 20:44:57 -07:00
Wander Lairson Costa 2f3d031392 Bug 1391806: Move valgrind task to its own docker image. r=ted
bug 1382280 tripled the size of desktop-build image because of
installation of debug symbols. It is only used for valgrind, so let's
move valgrind task to use its own image.

MozReview-Commit-ID: 16St7dDj8tr

--HG--
rename : taskcluster/docker/desktop-build/Dockerfile => taskcluster/docker/valgrind-build/Dockerfile
extra : rebase_source : cc66813cab430d906643fbadf63c661e14784f6f
2017-08-21 08:50:08 -03:00
Gregory Szorc 02d1cf283b Bug 1391789 - Improve cache coherence via run-task integration; r=dustin
Today, cache names are mostly static and are brittle as a result.

In theory, when a backwards incompatible change is performed on
something that touches a cache, the cache name needs to be changed
to ensure tasks running the old code don't see cached data from the
new task. (Alternatively, all code is forward compatible, but that is
hard to implement in practice.)

For many things, the process works as planned. However, not everyone
knows that cache names need changed. And, it isn't always obvious
that some things require fresh caches. When mistakes are made, tasks
break intermittently due to cache wonkiness.

One area where we get into trouble is with UID and GID mismatch.
Task A will use a Docker image where our standard "worker" user/group
is UID/GID 1000:1000. Then Task B will use UID/GID 500:500. (This is
common when mixing Debian and RedHel based distros.) If they use the
same cache, then Task B needs to chown/chmod all files in the cache
or there could be a permissions problem. This is exactly why
run-task recursively chowns certain paths before dropping root
privileges.

Permissions setting in run-task solves permissions problems. But
it doesn't solve content incompatibility problems. For that, you
need to change cache names, not use caches, or blow away content
when incompatibilities are detected.

This commit starts the process of adding a little bit more coherence
to our caching story.

There are two main features in this commit:

1) Cache names tied to run-task content
2) Cache validation in run-task

Taskgraph now detects when a task is using caches with run-task. When
caches and run-task are both being used, the cache name is adjusted to
contain a hash of run-task's content. When run-task changes, the cache
name changes. So, changing run-task ensures that all caches from that point
forward are "clean." This frees run-task and any functionality related
to run-task (such as maintaining version control checkouts) from
having to maintain backwards or forwards compatibility with any other
version of run-task. This does mean that any changes to run-task
effectively wipe out caches. But changes to run-task tend to be
seldom, so this should be acceptable.

The second part of this change is code in run-task to record per-cache
properties and validate whether a populated cache is appropriate for
use. To enable this, taskgraph passes a list of cache paths via an
environment variable. For each cache path, run-task looks for a
well-defined file containing a list of "requirements." Right now,
that list is simply a version string. But other features will be
worked into it. If the cache is empty, we simply write out a new
requirements file and are done. If the file exists, we compare
requirements and fail fast if there is a mismatch. If the cache
has content but not this special file, then we abort (because this
should never happen).

The "requirements" validation isn't very useful now because the only
entry comes from run-task's source code and modifying run-task will
change the hash and cause a new cache to be used. The implementation
at this point is more demonstrating the concept than doing anything
terribly useful with it.

MozReview-Commit-ID: HtpXIc7OD1k

--HG--
extra : rebase_source : 2424696b1fde59f20152617a6ebb2afe14b94678
2017-08-18 14:07:03 -07:00
Gregory Szorc 303f662591 Bug 1391789 - Extract permission setting to own functions; r=dustin
I must have been in a closure mood when I wrote this code. The
main function is getting a bit heavyweight. So let's extract
these closures to make things less dense.

MozReview-Commit-ID: 4p5yKB1tTxn

--HG--
extra : rebase_source : 3c3e0b352da6290043013aa36c783e21e01460ba
extra : source : 053f0b0b48635c6a87aefe15ad73f361f0f64f79
2017-08-17 17:06:16 -07:00
Tom Prince b9905248e2 Bug 1384210 - Add comm-central checkout support to taskcluster's run-task; r=gps
MozReview-Commit-ID: LxjYLdzmNO3

--HG--
extra : source : bdad4ba95b6da5bd63db5f3edd8f70dfb6711ed3
2017-07-25 10:17:03 -06:00
Gregory Szorc daa2f0b603 Bug 1389715 - Upgrade to Mercurial 4.3.1; r=ted
This is pretty straightforward: we just update some version numbers
and hashes.

The tooltool artifacts were produced and uploaded by me, just like
the last ones. I have some patches to establish a proper toolchain
task to build Mercurial. But it is a bit of a rabbit hole due to the
chicken-and-egg problem of Mercurial needing to be in Docker images.
Preserving the existing install mechanism is the simplest path
forward. Plus we need this patch so we can uplift so earlier releases
get a secure Mercurial in their Docker images.

color and pager are enabled by default in 4.2. So remove configuration
options for them that add no value.

MozReview-Commit-ID: 9pkHX044kV8

--HG--
extra : rebase_source : 4b66f05787bc1b46e1e4db2a47439f3d046becf5
2017-08-14 19:03:33 -07:00
Gregory Szorc 07cf2acabf Bug 1389715 - Remove the illusion we support running Mercurial with Python 2.6; r=ted
The comment removed by this commit invited the potential for badness.
Mercurial 4.3 drops support for Python 2.6 anyway. So let's remove
any indication we support running Mercurial with Python 2.6.

MozReview-Commit-ID: 40K10s95FLg

--HG--
extra : rebase_source : 52251ff6d1e4877b1cd5dcbf4eb75c875cffa452
2017-08-14 19:02:06 -07:00
Gregory Szorc d9f61d15da Bug 1389715 - Remove legacy Ubuntu 12.04 desktop-test image; r=jmaher
AFAICT there are no more in-tree references to this image. That
should mean we can nuke it. So do that.

MozReview-Commit-ID: 9LUGjt46ZCi

--HG--
extra : rebase_source : caa9e8f3e355710542794efb7f6f92c2ef43ef0a
2017-08-14 16:04:18 -07:00
Nick Alexander 0100ff2b4a Bug 1383973 - Introduce single build script for `run: using: mozharness`. r=dustin
The old process ran "before" and "after" steps as root.  The
mozharness script doesn't run as root, which required some small
changes to not run Sonatype Nexus as root.  Everything else is a
straight-forward move of the scripts out of the `android-gradle-build`
image and into `taskcluster/scripts`.

MozReview-Commit-ID: CqnNI33OKmb

--HG--
rename : taskcluster/docker/android-gradle-build/bin/after.sh => taskcluster/scripts/builder/build-android-dependencies/after.sh
rename : taskcluster/docker/android-gradle-build/bin/before.sh => taskcluster/scripts/builder/build-android-dependencies/before.sh
rename : taskcluster/docker/android-gradle-build/bin/repackage-jdk-centos.sh => taskcluster/scripts/builder/build-android-dependencies/repackage-jdk-centos.sh
extra : rebase_source : f94e6b9b780f96038c60d3825039a0f94add0404
2017-08-02 16:41:15 -07:00
Nick Alexander 9d2b3f404c Bug 1383973 - "Rebase" android-gradle-build back onto desktop-build. r=dustin
We really want the Android build image to inherit from desktop-build,
but that isn't possible with the current `docker-image: in-tree:`
support.  Therefore, way back in the mists of time, I culted
android-gradle-build from desktop-build.  This moves it back (mostly)
in line with desktop-build, which has advanced.

MozReview-Commit-ID: 6GmuxHjhAbv

--HG--
extra : rebase_source : 265937bc9ba3bc4c18756b6c675100a62929bafe
2017-08-11 15:14:55 -07:00
Mike Hommey 47bc56acc7 Bug 1389398 - Remove remaining clang entries in windows tooltool manifests. r=gps
Since the buildbot-based Windows builds using releng.manifest are busted
anyways, there is no reason to keep clang entries in there. Which makes
those manifests identical to clang.manifest, so remote the latter.

--HG--
extra : rebase_source : eef7eca4bafc4e348eadc04d6da2bd17ea20deea
2017-08-11 16:16:32 +09:00
Wander Lairson Costa ce276a0927 Bug 1382280 part 2: Install debug information. r=ted
valgrind test will try to load debug information for the modules present
in a stack trace. If it fails to do it, we endup with a stack trace with
only memory addresses.

We install debuginfo for all installed packages and look for all libs
in the system common locations, and try to install the corresponding
debug information package.

These are acomplished with debuginfo-install yum utility script.

MozReview-Commit-ID: 76mHOUKKJud
2017-08-10 13:42:12 -03:00
Wander Lairson Costa 285b4dbffb Bug 1382280 part 1: Upgrade valgrind r=ted
Bug 1338651 was backed out because when building a newer image, there
was a valgrind leak report that couldn't resolve symbols. Further
investigation showed the valgrind package installed had symbols stripped.

We upgrade valgrind version and build it from source with symbols.

We had to build inside the docker image because we need to run
"make install". Using "make dist" to generate a tar ball will also run
"make docs", and it is hard to make it work because of the outdated
texlive package present in CentOS 6.

We also apply a patch [1] to valgrind correctly generate symbols
for unloaded objects.

[1] https://bugs.kde.org/show_bug.cgi?id=79362#c62

MozReview-Commit-ID: 2IhuJY28Ke3
2017-08-10 13:42:11 -03:00
Mihai Tabara be620a47e0 Bug 1385134 - Fix funsize import error. r=aki
MozReview-Commit-ID: KneS74WhVwR
2017-08-05 01:15:09 +01:00
Mike Hommey 0dd063a9dd Bug 1386589 - Remove the linux64 tooltool manifests that look the same as releng.manifest. r=gps 2017-08-04 06:07:43 +09:00
Simon Fraser 9eace26439 bug 1385946 Final update to funsize docker images r=catlee
MozReview-Commit-ID: 39geOuOeco3

--HG--
extra : rebase_source : 861b790a36c90b467141413f9f93815f89ac7f4d
2017-08-01 22:23:50 +01:00
Simon Fraser be0a8a2ff2 bug 1385946 Update funsize to enable both sha1 and sha384 signing formats a=catlee DONTBUILD 2017-08-01 14:59:25 +01:00
Nick Alexander 727570c6d9 Bug 1384695 - Fetch Android Gradle dependencies from jcenter and maven.google.com. r=sebastian
I took the time to change jcentral (which is just wrong) to jcenter,
which is the tag used in the nexus.xml.

Order matters!  Gradle resolves dependencies in the order given.  That
is, jcenter is preferred to google.

MozReview-Commit-ID: CcWBukhiHa4

--HG--
extra : rebase_source : 73a3b3f013d9154ff3f5732593ba9fbe2b75d1f0
2017-07-26 12:03:45 -07:00
Nick Alexander 6e4a13fad8 Bug 1376306 - Bootstrap and upload java_home.tar.xz; bump Java to 1.8. r=dustin,sebastian
MozReview-Commit-ID: 3EOsrOp924f

--HG--
rename : taskcluster/scripts/misc/repackage-jdk-centos.sh => taskcluster/docker/android-gradle-build/bin/repackage-jdk-centos.sh
extra : rebase_source : 308d03828a78036076f6cdb68587be6694ac49ae
2017-07-25 20:43:14 -07:00
Nick Alexander fcb4a0775e Bug 1255227 - Part 2: Bootstrap and upload android-sdk-linux.tar.xz. r=dustin,sebastian
Before this patch, we used the Gradle sdk-manager-plugin to download
and install Android SDKs and other dependencies.  This plugin is now
deprecated; the main dependency downloading functionality has been
incorporated into the Android-Gradle build plugin.  Unfortunately,
it's been incorporated into newer versions that in turn require newer
toolchains than we currently support, so we can't use the new
functionality immediately.

Rather than replace sdk-manager-plugin with equivalent Gradle-based
functionality, this ticket uses recently added bootstrap functionality
to bootstrap the Android SDK during the dependencies task.  It then
_uses_ that SDK to run the dependency fetching task, _produces_ an
android-sdk-linux.tar.xz, and then _uploads_ the new artifact as a
private artifact, ready to be pushed into tooltool.  This avoids
engineers building this critical part of the toolchain locally
themselves, and will also feed into ongoing work to push toolchain
artifacts into build jobs in Task Cluster.


MozReview-Commit-ID: B6FC0ugaCef

--HG--
extra : rebase_source : 782719438a464b8021db58be398be9d5afb3b543
2017-07-19 15:45:31 -07:00
Wes Kocher 178a6d6c81 Backed out changeset bdad4ba95b6d (bug 1384210) for android mda3 crashes in test_peerConnection_captureStream_canvas_webgl.html a=backout
MozReview-Commit-ID: 7ymXkiY0dvi

--HG--
extra : rebase_source : 4fcdc90794cc41e798219da436c4a40cb414c36f
2017-07-27 18:44:06 -07:00
Tom Prince b43eafa130 Bug 1384210 - Add comm-central checkout support to taskcluster's run-task; r=gps
MozReview-Commit-ID: LxjYLdzmNO3

--HG--
extra : rebase_source : febd7be321ca1acb9193c4893e3a122d6d3a8d58
2017-07-25 10:17:03 -06:00
Mike Hommey b34d63fa5b Bug 1384744 - Remove mozmake and rustc from the build-clang-cl tooltool manifest. r=gps
The manifest is only used for windows clang-cl toolchain jobs, and
building clang-cl doesn't use make or rustc.

--HG--
extra : rebase_source : 2209098306461cac9c2145d8d9a0f2ea096b1f08
2017-07-27 08:09:34 +09:00
Ralph Giles 093c3bc1d3 Bug 1384363 - Add the fuzzing tooltool manifest to the rust update list. r=mshal
MozReview-Commit-ID: Hv0bjfBvKfW
2017-07-26 16:34:36 -07:00
Wes Kocher d38cfb4ca4 Backed out changeset 11724cc8e834 (bug 1384363) for typos in the tooltool manifest a=backout
MozReview-Commit-ID: 4BomumQyls
2017-07-26 15:10:42 -07:00
Ralph Giles cae386b85a Bug 1384363 - Add the fuzzing tooltool manifest to the rust update list. r=mshal
MozReview-Commit-ID: Hv0bjfBvKfW

--HG--
extra : rebase_source : 086bdea971436d42ccb632d4fab42c497f554446
2017-07-25 17:41:58 -07:00
Nick Alexander e3e9c413f0 Bug 1382774 - Configure android-gradle-dependencies to use jcenter instead of central. r=sebastian
The nexus.xml included in this patch is the result of starting Nexus
and manually adding the jcenter proxy repository using the Nexus web
administration interface (all in a Docker container).  I know of no
way to do this configuration incrementally without the web interface.
The diff between new and the default generated configuration is a
single new <repository>..</repository> element.

MozReview-Commit-ID: 2Bg5qX41pHB

--HG--
extra : rebase_source : c945acabcedd98439a0ca0e26251bab1a41de197
extra : source : 9b794a7fc266da1ae81afd795f91e72d04bbc992
2017-07-18 17:59:57 -07:00
Mark Banner 4289d8c198 Bug 1380956 - Build the node_modules directory for ESLint on the docker image for the worker, rather than downloading it each time. r=ahal
MozReview-Commit-ID: B8QowXzWRlU

--HG--
rename : tools/lint/eslint/update => tools/lint/eslint/update.sh
extra : rebase_source : f2039d741295405100df389fa3b6be73647514f5
2017-07-14 11:19:07 +01:00
Mark Banner 29eaca2240 Bug 1379119 - Add a builder to run the unit tests for eslint-plugin-mozilla. r=ahal
MozReview-Commit-ID: 5QsxUsvJz8O

--HG--
extra : rebase_source : fbfcb5f83e519903c58e587ed1b82cbb3cb1878f
2017-07-10 15:27:00 +01:00
Ralph Giles 01e432a445 Bug 1377137 - Repack upstream rust for mingw32 targets. r=mshal
Add a new tooltool package for x86_64-unknown-linux-gnu hosts
with the i686-pc-windows-msvc and i686-pc-windows-gnu standard
libraries for the benefit of the cross-mingw builds.

Add the mingw32 releng.manifest to the update list for
new tooltool packages.

MozReview-Commit-ID: KkYPfAojFU

--HG--
extra : rebase_source : 917f463517c5c222e883363438e1fa2ec0ffa6cf
2017-06-30 14:57:29 -07:00
Wes Kocher 62d8e4f4fa Backed out changeset f8a62747c51c (bug 1338651) for valgrind issues a=backout 2017-06-30 14:45:26 -07:00
Wander Lairson Costa c0abc737f5 Bug 1338651: Change docker image home dir to /build. r=dustin,mshal a=hopefullyavoidingmergebustagelater
Using /home/worker is the build directory has a 30% talos performance
loss, because test machines has a /home mount directory.

MozReview-Commit-ID: zehcGJrUQX

--HG--
extra : source : feedcde68c2a54da210f03eb287ab5c862fc982b
extra : intermediate-source : 485d1af7805ad9fa0e701c3571fc1291fbfc6850
2017-06-29 15:45:01 -07:00
Andrew Halberstadt af86c88b2f Bug 1369787 - [mozlint] Add a test for vcs operations, r=bc
Create a test for version control related functionality.

MozReview-Commit-ID: GXd27O69GNg

--HG--
extra : rebase_source : 56ce4a38b591fd62f05fbaed0ff05d56ec127422
2017-06-08 14:28:37 -04:00
Andrew Halberstadt c9beaa56b4 Bug 1373294 - Fix E305 (two blank lines after method or class) in files enabled by flake8 linter, r=jmaher
This is needed before we can upgrade to flake8 3.3.0, as that version starts flagging these errors.

These files were modified by running:
autopep8 --select E305 --in-place -r <dir>

on the affected directories. I did it one dir at a time and verified the result after each.

MozReview-Commit-ID: FmlsfiKIbtr

--HG--
extra : rebase_source : 9df32258cadff5d27a0e72113c57f782756c0b18
2017-06-15 12:10:59 -04:00
Ralph Giles 702ea07b9f Bug 1371372 - Remove cargo tarball naming work-around. r=mshal
This is no longer necessary with the 1.18.0 release.

MozReview-Commit-ID: 1IGQFuvRIzu

--HG--
extra : rebase_source : 4eb4daea4edfed48db388814240f9241021a2029
2017-06-08 11:48:55 -07:00
Andrew Halberstadt 958af4447e Bug 1288432 - Use new mozlint configuration for flake8 linter, r=bc
MozReview-Commit-ID: 9vC6lI2j5nS

--HG--
rename : tools/lint/flake8.lint.py => tools/lint/flake8_/__init__.py
rename : tools/lint/flake8/flake8_requirements.txt => tools/lint/flake8_/flake8_requirements.txt
extra : rebase_source : 1cc39782391fa15100bf0765c28f21eb11b115e4
2017-06-02 09:46:01 -04:00
Simon Fraser sfraser@mozilla.com f3414f6c10 Bug 1370057 - add retry to safeguard network blips. r=mtabara a=release DONTBUILD
MozReview-Commit-ID: Esc8oEzlqJH

--HG--
extra : amend_source : 9db35da07a82f69c986397ace2e73c050c309b62
2017-06-05 17:55:49 +01:00
Dustin J. Mitchell 39c08ba1d9 Bug 1357753: rename test-ubuntu.sh to test-linux.sh; r=wcosta
It was previously renamed in the Dockerfile, and that's unnecssarily confusing
when looking for the file in hg.

MozReview-Commit-ID: 7bwD4cjk4Pj

--HG--
rename : taskcluster/scripts/tester/test-ubuntu.sh => taskcluster/scripts/tester/test-linux.sh
extra : rebase_source : f22cd0f69c21e92126cc90ea3a4355e5c3db4205
2017-04-26 21:36:45 +00:00
Rail Aliiev 2f59b71900 Bug 1366070 - Override product name in Balrog submission. r=bhearsum a=release DONTBUILD
MozReview-Commit-ID: LpsUaXI1LxD

--HG--
extra : rebase_source : 8a55ac52b2704c4eeacfc81b0a2f1ccf4a64c4bf
2017-05-19 09:23:18 -04:00
Mark Banner 0ce286101c Bug 1359011 - Make the mozilla/recommended eslint configuration the default for the whole tree. r=mossop
MozReview-Commit-ID: HtUW43tCli1

--HG--
extra : rebase_source : 6496bc47860d9c1ab522a78e73b41550700021cb
2017-04-25 20:12:21 +01:00
Swapnesh Kumar Sahoo 1e0c9f7200 Bug 1302773 - Install tox in docker image in MozReview; r=dustin
MozReview-Commit-ID: 3jiVsZOrvW9

--HG--
extra : rebase_source : 516ddf063ed6a15e397cb782262fa15ccb533969
2017-05-13 02:31:37 +05:30
Dustin J. Mitchell 424b680e9b Bug 1346361: remove unused docker images r=garndt,gps
MozReview-Commit-ID: I635rRsLRhJ

--HG--
extra : rebase_source : e2469e05c347b95a9826215f4b8245209ca988ea
2017-04-28 10:12:28 -04:00
Mark Banner 03a364a285 Bug 1359604 - Enable the ESLint recommended rules for taskcluster/docker/index-task/. r=dustin
MozReview-Commit-ID: EOX2SvofSS5

--HG--
extra : rebase_source : 279286c25cb6813895f31990aa22592c0b5c9103
2017-04-25 21:54:13 +01:00
Ralph Giles 2e1dfb5042 Bug 1358590 - Update rust-build to v0.4.5. r=ted
Update the repack_rust script for packaging upsteam
rust builds for tooltool use in our build automation:

- Add --cargo-channel switch.
- Remove 32-bit macOS targets.
- Add aarch64 Android target.
- Update for cargo tarball name changes.
- Remove obsolete b2g target manifests.

MozReview-Commit-ID: 2ajGO8jPpWD

--HG--
extra : rebase_source : cd49eacbb323e3bfc62c8ca61438bb01d71fde9e
2017-04-21 12:03:33 -07:00
Mike Hommey 4d1881e4dd Bug 1355731 - Move tooltool to mozbuild.action. r=gps
--HG--
rename : taskcluster/docker/recipes/tooltool.py => python/mozbuild/mozbuild/action/tooltool.py
extra : rebase_source : 6278d8692956a67f37fd788df894657d6eeb53e8
2017-02-22 17:20:41 +09:00
Mike Hommey d78041440e Bug 1356123 - Add missing locales package to the lint docker image. r=gps
For some reason, the locales package is not installed anymore during the
docker image build, which leads to the locale-gen command failing, since
it's not there.

--HG--
extra : rebase_source : 0a152499c623a00d27d8b916c472e5d5980d8193
2017-04-13 15:16:05 +09:00
Rail Aliiev 91a5408399 Bug 1355992 - Firefox snap requires libmirclient9. r=aki a=release DONTBUILD
MozReview-Commit-ID: 3gK7ck87tGr

--HG--
extra : rebase_source : bc48adac48c887b549c24106e98016dacfa0371f
2017-04-12 16:15:42 -04:00
Gregory Szorc 5094da93bf Bug 1355624 - Make Mercurial require TLS 1.2+ connections; r=dustin
Mercurial uses the latest version of TLS that is both supported by
Python and the server.

In automation, the servers we care about should all support TLS 1.2.

The Python side is trickier. Modern versions of Python (typically 2.7.9+)
support TLS 1.1 and 1.2. Mercurial will default to allowing TLS 1.1+ -
explicitly disallowing TLS 1.0. However, legacy versions of Python
don't support TLS 1.1+, so Mercurial will allow TLS 1.0+ rather than
prevent connections at all.

TLS 1.0 is borderline secure these days. I think it is a bug for TLS
1.0 to be used anywhere in the Firefox release process. This simple
patch changes our default Mercurial config in TaskCluster to require
TLS 1.2+ for all https:// communications. For modern Python versions,
this effectively prevents potential downgrade attacks to TLS 1.1
(connections before should have negotiated the use of TLS 1.2).

I expect this change to break things. Finding and fixing automation
that isn't capable of speaking TLS 1.1+ should be encouraged.

MozReview-Commit-ID: 876YpL5vB3T

--HG--
extra : rebase_source : 69c33c195f736a98b67d771e7364b6db28900ff4
2017-04-11 14:52:39 -07:00
Gregory Szorc ec221f71d5 Bug 1354224 - Upgrade to Mercurial 4.1.2; r=dustin
This is a pretty straightforward change. Just bumping package versions
and hashes. Behavior should be almost identical to the previous 4.1.1+
packages.

MozReview-Commit-ID: CaVjM0JHYKi

--HG--
extra : rebase_source : dcd0ee2661fd088daf3b5c6709c4c6f2f95bd410
2017-04-06 11:28:02 -07:00
Jonas Finnemann Jensen 107a41e9f7 Bug 1353121 - Fix error message from indexing-task. r=dustin
In short shouldn't call err.stack(), it's a property.

MozReview-Commit-ID: 2HpPgsdctTv

--HG--
extra : rebase_source : 1769c125b4d720991c810f5c9460b2161ecbc8a8
2017-04-03 11:44:20 -07:00