Created
January 16, 2017 10:17
-
-
Save HackToday/b39d3ea7b20a90b327b9e011cf8bb3d1 to your computer and use it in GitHub Desktop.
Help geckodriver developer debug
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==================================== ERRORS ==================================== | |
_________ ERROR at setup of TestOnlineSupport.test_online_support_work _________ | |
request = <SubRequest 'driver' for <Function 'test_online_support_work'>> | |
driver_class = <class 'selenium.webdriver.firefox.webdriver.WebDriver'> | |
driver_kwargs = {'firefox_profile': <selenium.webdriver.firefox.firefox_profile.FirefoxProfile object at 0x2217bd0>} | |
@pytest.yield_fixture | |
def driver(request, driver_class, driver_kwargs): | |
"""Returns a WebDriver instance based on options and capabilities""" | |
> driver = driver_class(**driver_kwargs) | |
/usr/lib/python2.7/site-packages/pytest_selenium/pytest_selenium.py:107: | |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
/usr/lib/python2.7/site-packages/selenium/webdriver/firefox/webdriver.py:145: in __init__ | |
keep_alive=True) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:92: in __init__ | |
self.start_session(desired_capabilities, browser_profile) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:179: in start_session | |
response = self.execute(Command.NEW_SESSION, capabilities) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:236: in execute | |
self.error_handler.check_response(response) | |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x2268d90> | |
response = {'status': 500, 'value': '{"error":"unknown error","message":"connection refused"}'} | |
def check_response(self, response): | |
""" | |
Checks that a JSON response from the WebDriver does not have an error. | |
:Args: | |
- response - The JSON response from the WebDriver server as a dictionary | |
object. | |
:Raises: If the response contains an error message. | |
""" | |
status = response.get('status', None) | |
if status is None or status == ErrorCode.SUCCESS: | |
return | |
value = None | |
message = response.get("message", "") | |
screen = response.get("screen", "") | |
stacktrace = None | |
if isinstance(status, int): | |
value_json = response.get('value', None) | |
if value_json and isinstance(value_json, basestring): | |
import json | |
try: | |
value = json.loads(value_json) | |
status = value.get('error', None) | |
if status is None: | |
status = value["status"] | |
message = value["value"] | |
if not isinstance(message, basestring): | |
value = message | |
try: | |
message = message['message'] | |
except TypeError: | |
message = None | |
else: | |
message = value.get('message', None) | |
except ValueError: | |
pass | |
exception_class = ErrorInResponseException | |
if status in ErrorCode.NO_SUCH_ELEMENT: | |
exception_class = NoSuchElementException | |
elif status in ErrorCode.NO_SUCH_FRAME: | |
exception_class = NoSuchFrameException | |
elif status in ErrorCode.NO_SUCH_WINDOW: | |
exception_class = NoSuchWindowException | |
elif status in ErrorCode.STALE_ELEMENT_REFERENCE: | |
exception_class = StaleElementReferenceException | |
elif status in ErrorCode.ELEMENT_NOT_VISIBLE: | |
exception_class = ElementNotVisibleException | |
elif status in ErrorCode.INVALID_ELEMENT_STATE: | |
exception_class = InvalidElementStateException | |
elif status in ErrorCode.INVALID_SELECTOR \ | |
or status in ErrorCode.INVALID_XPATH_SELECTOR \ | |
or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: | |
exception_class = InvalidSelectorException | |
elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: | |
exception_class = ElementNotSelectableException | |
elif status in ErrorCode.INVALID_COOKIE_DOMAIN: | |
exception_class = WebDriverException | |
elif status in ErrorCode.UNABLE_TO_SET_COOKIE: | |
exception_class = WebDriverException | |
elif status in ErrorCode.TIMEOUT: | |
exception_class = TimeoutException | |
elif status in ErrorCode.SCRIPT_TIMEOUT: | |
exception_class = TimeoutException | |
elif status in ErrorCode.UNKNOWN_ERROR: | |
exception_class = WebDriverException | |
elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: | |
exception_class = UnexpectedAlertPresentException | |
elif status in ErrorCode.NO_ALERT_OPEN: | |
exception_class = NoAlertPresentException | |
elif status in ErrorCode.IME_NOT_AVAILABLE: | |
exception_class = ImeNotAvailableException | |
elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: | |
exception_class = ImeActivationFailedException | |
elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: | |
exception_class = MoveTargetOutOfBoundsException | |
else: | |
exception_class = WebDriverException | |
if value == '' or value is None: | |
value = response['value'] | |
if isinstance(value, basestring): | |
if exception_class == ErrorInResponseException: | |
raise exception_class(response, value) | |
raise exception_class(value) | |
if message == "" and 'message' in value: | |
message = value['message'] | |
screen = None | |
if 'screen' in value: | |
screen = value['screen'] | |
stacktrace = None | |
if 'stackTrace' in value and value['stackTrace']: | |
stacktrace = [] | |
try: | |
for frame in value['stackTrace']: | |
line = self._value_or_default(frame, 'lineNumber', '') | |
file = self._value_or_default(frame, 'fileName', '<anonymous>') | |
if line: | |
file = "%s:%s" % (file, line) | |
meth = self._value_or_default(frame, 'methodName', '<anonymous>') | |
if 'className' in frame: | |
meth = "%s.%s" % (frame['className'], meth) | |
msg = " at %s (%s)" | |
msg = msg % (meth, file) | |
stacktrace.append(msg) | |
except TypeError: | |
pass | |
if exception_class == ErrorInResponseException: | |
raise exception_class(response, message) | |
elif exception_class == UnexpectedAlertPresentException and 'alert' in value: | |
raise exception_class(message, screen, stacktrace, value['alert'].get('text')) | |
> raise exception_class(message, screen, stacktrace) | |
E WebDriverException: Message: connection refused | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/errorhandler.py:192: WebDriverException | |
!!!!!!!!!!!!!!!!!!!! Interrupted: stopping after 1 failures !!!!!!!!!!!!!!!!!!!! | |
=============== 10 passed, 2 skipped, 1 error in 329.39 seconds ================ | |
+ '[' 2 -ne 0 ']' | |
+ echo 'Selenium test failed! Log some debug info before exit' | |
Selenium test failed! Log some debug info before exit | |
+ netstat -anp | |
Active Internet connections (servers and established) | |
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name | |
tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 1045/python2.7 | |
tcp 0 0 127.0.0.1:52295 0.0.0.0:* LISTEN 6473/geckodriver | |
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN - | |
tcp 0 0 0.0.0.0:5900 0.0.0.0:* LISTEN 196/x11vnc | |
tcp 0 0 127.0.0.1:60627 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53761 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53986 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60944 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34231 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53751 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34353 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33194 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48759 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53992 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53878 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53768 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34160 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33997 127.0.0.1:3306 ESTABLISHED 929/python | |
tcp 0 0 127.0.0.1:50233 127.0.0.1:61612 ESTABLISHED 942/python | |
tcp 0 0 127.0.0.1:53953 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53767 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32940 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:56011 127.0.0.1:3306 ESTABLISHED 926/python | |
tcp 0 0 127.0.0.1:54389 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54140 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:34001 ESTABLISHED - | |
tcp 0 0 127.0.0.1:32808 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53948 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54396 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53893 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54004 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54394 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53752 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53843 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53839 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54005 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53890 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53710 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34070 127.0.0.1:40497 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34382 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33540 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33121 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53979 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44563 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54225 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53783 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54147 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54150 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53791 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:48718 127.0.0.1:42233 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53709 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54390 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53997 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60674 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53758 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53858 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32815 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54158 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34088 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54235 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:34000 ESTABLISHED - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:55290 ESTABLISHED - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34344 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34293 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53766 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53702 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53832 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34509 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34221 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54373 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34348 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53975 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54374 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53870 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54367 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54398 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60729 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32799 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32778 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54185 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54324 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54228 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44632 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53714 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53700 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50207 127.0.0.1:61612 ESTABLISHED 930/python | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34384 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54411 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53883 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53886 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34223 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53996 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54431 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54404 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33051 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60731 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48805 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54326 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53882 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54408 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53864 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53701 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34157 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53830 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54317 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:51448 127.0.0.1:35236 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54023 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54007 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54243 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53844 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53722 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53871 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53985 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54231 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48878 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53872 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53748 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48806 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54420 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33120 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44490 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53879 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54146 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53851 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54213 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54241 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54331 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54393 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53834 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34159 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54240 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33187 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34320 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34226 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53798 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53875 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53987 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53850 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53972 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54245 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53721 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54412 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54391 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34514 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53849 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53713 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54143 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53932 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53866 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33765 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53764 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54234 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53749 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53860 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:59303 127.0.0.1:3306 ESTABLISHED 938/python | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54377 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34001 127.0.0.1:3306 ESTABLISHED 938/python | |
tcp 0 0 127.0.0.1:54156 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60394 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33277 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53958 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34345 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54216 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53717 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53786 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34149 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54009 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53892 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33585 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53707 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54375 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53699 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54424 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53857 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60732 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54430 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60911 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53950 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53949 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50245 127.0.0.1:61612 ESTABLISHED 1045/python2.7 | |
tcp 0 0 127.0.0.1:54145 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54142 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34074 127.0.0.1:40497 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53852 TIME_WAIT - | |
tcp 0 0 127.0.0.1:55279 127.0.0.1:3306 ESTABLISHED 938/python | |
tcp 0 0 127.0.0.1:34436 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34219 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53769 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34502 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33521 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50234 127.0.0.1:61612 ESTABLISHED 938/python | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:33997 ESTABLISHED - | |
tcp 0 0 127.0.0.1:33658 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48881 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54207 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54405 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54218 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34220 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53998 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54385 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54395 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54328 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53827 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34506 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53757 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34075 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:55279 ESTABLISHED - | |
tcp 0 0 127.0.0.1:32947 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33721 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33056 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33996 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54429 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60810 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54399 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48882 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60728 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32824 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:59299 ESTABLISHED - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34365 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:56011 ESTABLISHED - | |
tcp 0 0 127.0.0.1:53778 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54164 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50210 127.0.0.1:61612 ESTABLISHED 926/python | |
tcp 1 0 172.17.1.81:59909 10.15.221.201:80 CLOSE_WAIT 1045/python2.7 | |
tcp 0 0 127.0.0.1:53750 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54152 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53793 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53846 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53873 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54221 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34642 127.0.0.1:3306 ESTABLISHED 924/python | |
tcp 0 0 127.0.0.1:33863 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54383 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32849 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53868 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44517 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54370 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54418 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54155 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48802 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53822 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54021 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34000 127.0.0.1:3306 ESTABLISHED 937/python | |
tcp 0 0 127.0.0.1:53951 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34503 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34594 127.0.0.1:54332 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53772 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54148 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53991 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53976 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34510 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34508 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32945 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60809 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53970 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53841 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54001 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54427 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54340 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34500 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53884 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60921 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:52343 127.0.0.1:52295 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54018 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:55290 127.0.0.1:3306 ESTABLISHED 1045/python2.7 | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54010 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54162 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53891 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54085 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33653 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54214 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53876 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48884 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54191 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53894 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54337 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53982 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54402 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54006 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53861 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32817 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54251 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53877 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54378 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54233 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33117 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53773 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53865 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33186 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53823 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50208 127.0.0.1:61612 ESTABLISHED 925/python | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54244 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53859 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44559 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53720 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34342 TIME_WAIT - | |
tcp 0 0 127.0.0.1:57546 127.0.0.1:3306 ESTABLISHED 938/python | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34385 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53955 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44516 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54403 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44566 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53759 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54204 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54316 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54242 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33366 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53716 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54237 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54013 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53889 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34116 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54011 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34647 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54414 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54315 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53703 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53794 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54400 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32882 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53869 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53828 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53704 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34512 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53762 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34158 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53978 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54415 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54212 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:56412 ESTABLISHED - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54248 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53821 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54410 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53971 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33858 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53826 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32938 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53901 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:34480 ESTABLISHED - | |
tcp 0 0 127.0.0.1:44489 127.0.0.1:58173 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53980 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54425 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54141 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34364 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:57546 ESTABLISHED - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34367 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54139 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54224 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53755 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34224 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53855 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53712 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53831 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33282 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:52295 127.0.0.1:52348 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54226 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34504 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48809 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34224 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50229 127.0.0.1:61612 ESTABLISHED 924/python | |
tcp 0 0 127.0.0.1:56412 127.0.0.1:3306 ESTABLISHED 937/python | |
tcp 0 0 127.0.0.1:54413 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34230 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34155 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34341 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32825 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34443 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34351 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54392 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53838 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54227 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32944 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54323 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54144 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53867 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34020 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44560 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34323 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53790 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54015 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48723 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60430 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53723 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48867 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33790 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54387 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:59299 127.0.0.1:3306 ESTABLISHED 937/python | |
tcp 0 0 127.0.0.1:50235 127.0.0.1:61612 ESTABLISHED 937/python | |
tcp 0 0 127.0.0.1:32807 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53802 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53771 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32800 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54339 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34319 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54428 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53874 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60920 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54333 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33434 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53782 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53854 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54020 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54322 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34511 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50211 127.0.0.1:61612 ESTABLISHED 931/python | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34316 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44633 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54222 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48758 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54161 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53862 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53887 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33371 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34368 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32816 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53719 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53780 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53814 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54417 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:59303 ESTABLISHED - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34349 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54382 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54016 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53856 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34117 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53784 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32777 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54146 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54376 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34225 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54334 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53984 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53818 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44569 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48883 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54229 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53763 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53770 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53816 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54250 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53836 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34383 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53847 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34340 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53797 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44634 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54371 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54372 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53853 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53760 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53977 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:51458 127.0.0.1:41810 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33726 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53775 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54401 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53741 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54320 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53745 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34008 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53952 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53974 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50209 127.0.0.1:61612 ESTABLISHED 934/python | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34317 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34217 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34480 127.0.0.1:3306 ESTABLISHED 930/python | |
tcp 0 0 127.0.0.1:53777 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34286 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34232 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53969 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34013 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54327 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60912 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54022 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53785 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54239 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:52347 127.0.0.1:52295 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54000 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54220 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60667 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54380 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44558 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33206 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44568 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48803 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53954 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54386 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54416 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54149 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:44485 127.0.0.1:58173 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54014 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54151 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33118 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34156 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54418 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53787 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44557 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53895 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34229 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54321 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34581 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54388 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34573 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34241 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54215 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53981 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54247 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53845 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53765 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53988 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53835 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34318 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50221 127.0.0.1:61612 ESTABLISHED 935/python | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54249 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54363 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53881 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33795 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:3306 127.0.0.1:34642 ESTABLISHED - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34162 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60946 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34343 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53715 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54419 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53983 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48804 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54406 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53994 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53968 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53792 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53888 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53995 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54217 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54252 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34505 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53813 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54236 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53705 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54319 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54205 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34228 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54381 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54432 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53966 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33590 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53711 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53848 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32934 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53989 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53774 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53781 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:48722 127.0.0.1:42233 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54209 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53973 127.0.0.1:8000 TIME_WAIT - | |
tcp 1 1 172.17.1.81:59349 10.15.221.201:80 LAST_ACK - | |
tcp 0 0 127.0.0.1:53795 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54163 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54154 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54338 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54003 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53885 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54423 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53706 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33287 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54002 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34357 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54202 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53788 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50231 127.0.0.1:61612 ESTABLISHED 929/python | |
tcp 0 0 127.0.0.1:54384 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:58173 127.0.0.1:44562 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33439 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54019 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53863 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54008 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60919 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53796 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54223 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53967 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53829 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54153 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54329 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34156 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53756 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53840 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54012 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54211 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53842 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54318 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54379 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53880 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53957 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54397 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34380 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34513 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54206 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53753 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54407 TIME_WAIT - | |
tcp 1 1 172.17.1.81:58508 10.15.221.201:80 LAST_ACK - | |
tcp 0 0 127.0.0.1:53789 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54238 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54336 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48807 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54017 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53999 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53754 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53779 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34350 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53833 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54332 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53993 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:32850 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33945 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34501 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53819 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34081 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54210 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54203 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53718 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54208 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:42233 127.0.0.1:48866 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54230 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34366 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33516 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54409 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:33940 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34227 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54246 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54157 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34507 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54330 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53817 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54325 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:50222 127.0.0.1:61612 ESTABLISHED 943/python2.7 | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53837 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54335 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:54159 TIME_WAIT - | |
tcp 0 0 127.0.0.1:8000 127.0.0.1:53698 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54232 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53776 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54024 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53820 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34322 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53708 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54219 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53815 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:40497 127.0.0.1:34512 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53990 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:34375 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:53956 127.0.0.1:8000 TIME_WAIT - | |
tcp 0 0 127.0.0.1:60626 127.0.0.1:3306 TIME_WAIT - | |
tcp 0 0 127.0.0.1:54160 127.0.0.1:8000 TIME_WAIT - | |
tcp6 0 0 :::4444 :::* LISTEN 135/java | |
tcp6 0 0 :::8161 :::* LISTEN 238/java | |
tcp6 0 0 :::61612 :::* LISTEN 238/java | |
tcp6 0 0 :::5900 :::* LISTEN 196/x11vnc | |
tcp6 0 0 :::61613 :::* LISTEN 238/java | |
tcp6 0 0 :::50191 :::* LISTEN 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50208 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50221 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50245 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50229 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50207 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50234 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50210 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50231 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50209 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50235 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50211 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50233 ESTABLISHED 238/java | |
tcp6 0 0 127.0.0.1:61612 127.0.0.1:50222 ESTABLISHED 238/java | |
Active UNIX domain sockets (servers and established) | |
Proto RefCnt Flags Type State I-Node PID/Program name Path | |
unix 2 [ ACC ] STREAM LISTENING 315056978 - /var/lib/mysql/mysql.sock | |
unix 2 [ ACC ] STREAM LISTENING 315060667 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 2 [ ACC ] STREAM LISTENING 315060668 89/Xvfb /tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315135901 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315135891 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315056848 196/x11vnc | |
unix 3 [ ] STREAM CONNECTED 315128814 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315128766 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315131729 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315056836 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315132280 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315137114 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315060928 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315056843 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315056835 195/fluxbox | |
unix 3 [ ] STREAM CONNECTED 315135889 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315056841 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] SEQPACKET CONNECTED 315135885 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315134308 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315128765 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315056847 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315135888 6501/firefox | |
unix 2 [ ] STREAM CONNECTED 315057717 135/java | |
unix 3 [ ] STREAM CONNECTED 315056842 196/x11vnc | |
unix 3 [ ] STREAM CONNECTED 315135896 6501/firefox | |
unix 2 [ ] STREAM CONNECTED 315061030 238/java | |
unix 3 [ ] STREAM CONNECTED 315132339 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315135893 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315056845 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315135894 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315135890 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315128815 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315135895 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315137115 6576/plugin-contain | |
unix 3 [ ] STREAM CONNECTED 315056844 196/x11vnc | |
unix 3 [ ] STREAM CONNECTED 315057674 196/x11vnc | |
unix 3 [ ] STREAM CONNECTED 315132279 6501/firefox | |
unix 3 [ ] SEQPACKET CONNECTED 315135886 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315056840 196/x11vnc | |
unix 3 [ ] STREAM CONNECTED 315135897 6576/plugin-contain | |
unix 2 [ ] STREAM CONNECTED 315057738 238/java | |
unix 3 [ ] STREAM CONNECTED 315135892 6501/firefox | |
unix 2 [ ] STREAM CONNECTED 315055913 135/java | |
unix 3 [ ] STREAM CONNECTED 315132327 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315056849 89/Xvfb @/tmp/.X11-unix/X99 | |
unix 3 [ ] STREAM CONNECTED 315135757 6501/firefox | |
unix 3 [ ] STREAM CONNECTED 315056846 196/x11vnc | |
+ ps -ef | |
UID PID PPID C STIME TTY TIME CMD | |
root 1 0 0 17:54 ? 00:00:00 cat | |
root 6 0 0 17:54 ? 00:00:00 sh -c echo $$ > '/data/jenkins/workspace/qcd_7_885_6@tmp/durable-866bcc89/pid'; jsc=durable-db3404e1b97aab6307826fdea1db0968; JENKINS_SERVER_COOKIE=$jsc '/data/jenkins/workspace/qcd_7_885_6@tmp/durable-866bcc89/script.sh' > '/data/jenkins/workspace/qcd_7_885_6@tmp/durable-866bcc89/jenkins-log.txt' 2>&1; echo $? > '/data/jenkins/workspace/qcd_7_885_6@tmp/durable-866bcc89/jenkins-result.txt' | |
root 10 6 0 17:54 ? 00:00:00 /bin/sh -xe /data/jenkins/workspace/qcd_7_885_6@tmp/durable-866bcc89/script.sh | |
root 11 10 0 17:54 ? 00:00:00 sh -x qcd-test.sh | |
root 70 1 0 17:54 ? 00:00:00 /bin/bash /opt/selenium/entry_point.sh | |
root 76 70 0 17:54 ? 00:00:00 /bin/sh /usr/bin/xvfb-run -n 99 --server-args=-screen 0 1360x1020x24 -ac +extension RANDR java -jar /opt/selenium/selenium-server-standalone.jar | |
root 89 76 0 17:54 ? 00:00:01 Xvfb :99 -screen 0 1360x1020x24 -ac +extension RANDR -nolisten tcp | |
root 135 76 0 17:54 ? 00:00:01 java -jar /opt/selenium/selenium-server-standalone.jar | |
root 195 70 0 17:54 ? 00:00:00 fluxbox -display :99.0 | |
root 196 70 0 17:54 ? 00:00:00 x11vnc -forever -usepw -shared -rfbport 5900 -display :99.0 | |
root 197 195 0 17:54 ? 00:00:00 [fbsetbg] <defunct> | |
root 238 1 2 17:54 ? 00:00:09 /usr/bin/java -Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote -Djava.io.tmpdir=/opt/activemq/tmp -Dactivemq.classpath=/opt/activemq/conf; -Dactivemq.home=/opt/activemq -Dactivemq.base=/opt/activemq -Dactivemq.conf=/opt/activemq/conf -Dactivemq.data=/opt/activemq/data -jar /opt/activemq/bin/activemq.jar start xbean:/opt/activemq/conf/activemq-stomp.xml | |
root 307 1 0 17:54 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --basedir=/usr --datadir=/var/lib/mysql --skip-grant-tables | |
mysql 535 307 0 17:54 ? 00:00:01 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --skip-grant-tables --log-error=/var/log/mariadb/mariadb.log --pid-file=/var/run/mariadb/mariadb.pid --socket=/var/lib/mysql/mysql.sock | |
root 872 1 0 17:55 ? 00:00:00 /bin/bash ./local-run.sh | |
root 924 872 0 17:55 ? 00:00:00 python myapp/run1.py | |
root 925 872 0 17:55 ? 00:00:00 python myapp/run2.py | |
root 926 872 0 17:55 ? 00:00:00 python myapp/run3.py | |
root 929 872 0 17:55 ? 00:00:00 python myapp/run4.py | |
root 930 872 0 17:55 ? 00:00:00 python myapp/run5.py | |
root 931 872 0 17:55 ? 00:00:00 python myapp/run6.py | |
root 934 872 0 17:55 ? 00:00:00 python myapp/run7.py | |
root 935 872 0 17:55 ? 00:00:00 python myapp/run8.py | |
root 937 872 0 17:55 ? 00:00:00 python myapp/run9.py | |
root 938 872 0 17:55 ? 00:00:00 python myapp/run10.py | |
root 942 872 0 17:55 ? 00:00:00 python myapp/run11.py | |
root 943 872 0 17:55 ? 00:00:00 python2.7 myapp/run12.py | |
root 1123 1 1 17:55 ? 00:00:04 [Web Content] <defunct> | |
root 1477 1 1 17:55 ? 00:00:06 [Web Content] <defunct> | |
root 2001 1 1 17:56 ? 00:00:04 [Web Content] <defunct> | |
root 2410 1 2 17:56 ? 00:00:07 [Web Content] <defunct> | |
root 2893 1 4 17:57 ? 00:00:10 [Web Content] <defunct> | |
root 3748 1 6 17:57 ? 00:00:11 [Web Content] <defunct> | |
root 4824 1 7 17:58 ? 00:00:10 [Web Content] <defunct> | |
root 5591 1 3 17:59 ? 00:00:03 [Web Content] <defunct> | |
root 6087 1 2 17:59 ? 00:00:01 [Web Content] <defunct> | |
root 6323 1 2 17:59 ? 00:00:01 [Web Content] <defunct> | |
root 6473 1 0 17:59 ? 00:00:00 geckodriver --port 52295 | |
root 6501 6473 4 17:59 ? 00:00:02 /usr/bin/firefox --marionette --profile /tmp/rust_mozprofile.Qgs68Lt8KGZ8 | |
root 6576 6501 0 17:59 ? 00:00:00 /opt/firefox-50.0/plugin-container -greomni /opt/firefox-50.0/omni.ja -appomni /opt/firefox-50.0/browser/omni.ja -appdir /opt/firefox-50.0/browser 6501 true tab | |
root 6738 11 0 18:00 ? 00:00:00 ps -ef | |
+ cat geckodriver.log | |
1480318012028 geckodriver INFO Listening on 127.0.0.1:49418 | |
1480318013027 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.q6vT6YohSgd1 | |
1480318013030 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318013051 geckodriver::marionette INFO Connecting to Marionette on localhost:35019 | |
(firefox:994): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318013349 addons.manager DEBUG Application has been upgraded | |
1480318013367 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318013370 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318013374 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318013376 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318013377 addons.manager DEBUG Starting provider: XPIProvider | |
1480318013377 addons.xpi DEBUG startup | |
1480318013378 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318013379 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318013379 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318013379 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318013380 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318013380 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318013381 addons.xpi DEBUG checkForChanges | |
1480318013381 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318013382 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318013383 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013384 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318013384 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013385 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318013385 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013386 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318013386 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013386 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318013387 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318013387 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318013395 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.q6vT6YohSgd1/extensions.json | |
1480318013396 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318013407 DeferredSave.extensions.json DEBUG Save changes | |
1480318013408 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318013410 DeferredSave.extensions.json DEBUG Starting timer | |
1480318013411 DeferredSave.extensions.json DEBUG Save changes | |
1480318013412 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318013416 DeferredSave.extensions.json DEBUG Save changes | |
1480318013417 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318013421 DeferredSave.extensions.json DEBUG Save changes | |
1480318013422 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318013425 DeferredSave.extensions.json DEBUG Save changes | |
1480318013426 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318013432 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318013445 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318013445 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318013445 DeferredSave.extensions.json DEBUG Save changes | |
1480318013446 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318013447 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318013449 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318013449 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318013450 DeferredSave.extensions.json DEBUG Save changes | |
1480318013450 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318013451 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318013453 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318013454 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318013455 DeferredSave.extensions.json DEBUG Save changes | |
1480318013455 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318013455 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318013457 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318013457 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318013457 DeferredSave.extensions.json DEBUG Save changes | |
1480318013457 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318013457 DeferredSave.extensions.json DEBUG Save changes | |
1480318013458 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{58b682da-c64a-4f09-9f4f-eab4702edab2}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318013458 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013458 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4a775fee-dd40-4ff0-bb14-16fdb4c26467}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318013458 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013459 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{cee65dce-de25-480b-89a4-f3a1c84eadc8}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318013459 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013459 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1889ba63-f74d-46b3-ac18-72700ef91cf4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318013459 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318013459 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0df1151e-6b23-48b5-b106-0e3fc6a1fd13}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318013460 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318013461 DeferredSave.extensions.json DEBUG Save changes | |
1480318013461 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318013461 addons.xpi-utils DEBUG Updating add-on states | |
1480318013462 addons.xpi-utils DEBUG Writing add-ons list | |
1480318013462 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318013463 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318013464 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318013464 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318013465 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318013465 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318013466 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318013466 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318013468 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318013468 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318013468 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318013468 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318013468 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318013469 addons.manager DEBUG Starting provider: GMPProvider | |
1480318013475 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318013476 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318013476 addons.manager DEBUG Starting provider: PluginProvider | |
1480318013476 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318013476 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318013476 addons.manager DEBUG Completed startup sequence | |
1480318013708 Marionette INFO Listening on port 35019 | |
1480318014212 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318014212 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318014213 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318014227 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318014228 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318014229 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318014231 DeferredSave.extensions.json DEBUG Starting write | |
1480318014383 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318014384 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1112): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1112): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1112): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1112): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:994): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:994): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f19635fed30' of type 'MaiAtkType13b' | |
(firefox:994): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:994): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f194f6fa920' of type 'MaiAtkType13b' | |
(firefox:994): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f195fed8c90' of type 'MaiAtkType13b' | |
[Child 1112] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1112] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318022647 geckodriver INFO Listening on 127.0.0.1:39581 | |
1480318022653 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.MLlUIW8hXiGk | |
1480318022655 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318022657 geckodriver::marionette INFO Connecting to Marionette on localhost:47105 | |
(firefox:1384): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318022849 addons.manager DEBUG Application has been upgraded | |
1480318022866 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318022868 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318022873 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318022875 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318022875 addons.manager DEBUG Starting provider: XPIProvider | |
1480318022876 addons.xpi DEBUG startup | |
1480318022876 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318022877 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318022877 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318022878 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318022878 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318022879 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318022879 addons.xpi DEBUG checkForChanges | |
1480318022880 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318022881 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318022882 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022882 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318022883 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022883 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318022884 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022884 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318022884 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022885 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318022885 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318022886 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318022893 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.MLlUIW8hXiGk/extensions.json | |
1480318022894 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318022905 DeferredSave.extensions.json DEBUG Save changes | |
1480318022905 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318022907 DeferredSave.extensions.json DEBUG Starting timer | |
1480318022909 DeferredSave.extensions.json DEBUG Save changes | |
1480318022909 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318022914 DeferredSave.extensions.json DEBUG Save changes | |
1480318022914 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318022918 DeferredSave.extensions.json DEBUG Save changes | |
1480318022919 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318022923 DeferredSave.extensions.json DEBUG Save changes | |
1480318022923 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318022929 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318022942 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318022942 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318022943 DeferredSave.extensions.json DEBUG Save changes | |
1480318022944 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318022944 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318022947 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318022947 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318022947 DeferredSave.extensions.json DEBUG Save changes | |
1480318022947 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318022948 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318022951 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318022952 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318022952 DeferredSave.extensions.json DEBUG Save changes | |
1480318022952 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318022953 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318022954 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318022954 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318022955 DeferredSave.extensions.json DEBUG Save changes | |
1480318022955 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318022955 DeferredSave.extensions.json DEBUG Save changes | |
1480318022955 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0cd441aa-5025-47bf-9b20-9e8dc4912166}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318022955 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022956 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{aee207f8-40ef-428e-bebc-f0e1479647b7}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318022956 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022956 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{415c0c7b-b239-49a5-a47e-b32432aeae08}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318022956 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022957 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4b879d12-3ff2-4d59-b192-9ecf9aabb2f7}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318022957 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318022957 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{29d0bb8a-241c-47ea-96a2-bc5df8fe1c87}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318022957 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318022958 DeferredSave.extensions.json DEBUG Save changes | |
1480318022959 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318022959 addons.xpi-utils DEBUG Updating add-on states | |
1480318022959 addons.xpi-utils DEBUG Writing add-ons list | |
1480318022960 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318022960 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318022962 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318022962 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318022962 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318022963 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318022963 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318022963 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318022965 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318022966 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318022966 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318022966 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318022966 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318022966 addons.manager DEBUG Starting provider: GMPProvider | |
1480318022973 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318022973 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318022973 addons.manager DEBUG Starting provider: PluginProvider | |
1480318022973 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318022974 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318022974 addons.manager DEBUG Completed startup sequence | |
1480318023147 Marionette INFO Listening on port 47105 | |
1480318023432 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318023432 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318023432 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318023448 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318023448 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318023450 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318023455 DeferredSave.extensions.json DEBUG Starting write | |
1480318023591 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318023592 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1467): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1467): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1467): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1467): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1384): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1384): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f2f49b5e970' of type 'MaiAtkType13b' | |
(firefox:1384): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1384): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f2f4aa0f920' of type 'MaiAtkType13b' | |
(firefox:1384): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f2f4a6e9650' of type 'MaiAtkType13b' | |
(firefox:1384): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f2f410829c0' of type 'MaiAtkType13b' | |
[Child 1467] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1467] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1467] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318032474 geckodriver INFO Listening on 127.0.0.1:57677 | |
1480318033474 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.jIjVWOvIHgmb | |
1480318033476 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318033478 geckodriver::marionette INFO Connecting to Marionette on localhost:53048 | |
(firefox:1752): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318033697 addons.manager DEBUG Application has been upgraded | |
1480318033714 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318033716 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318033720 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318033722 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318033723 addons.manager DEBUG Starting provider: XPIProvider | |
1480318033724 addons.xpi DEBUG startup | |
1480318033724 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318033725 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318033725 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318033726 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318033726 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318033727 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318033727 addons.xpi DEBUG checkForChanges | |
1480318033728 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318033729 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318033729 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033730 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318033730 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033731 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318033731 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033732 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318033732 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033732 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318033733 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318033733 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318033741 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.jIjVWOvIHgmb/extensions.json | |
1480318033742 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318033752 DeferredSave.extensions.json DEBUG Save changes | |
1480318033753 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318033755 DeferredSave.extensions.json DEBUG Starting timer | |
1480318033756 DeferredSave.extensions.json DEBUG Save changes | |
1480318033756 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318033761 DeferredSave.extensions.json DEBUG Save changes | |
1480318033761 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318033766 DeferredSave.extensions.json DEBUG Save changes | |
1480318033766 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318033770 DeferredSave.extensions.json DEBUG Save changes | |
1480318033770 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318033776 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318033790 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318033790 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318033790 DeferredSave.extensions.json DEBUG Save changes | |
1480318033791 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318033791 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318033794 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318033794 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318033795 DeferredSave.extensions.json DEBUG Save changes | |
1480318033795 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318033796 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318033798 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318033799 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318033800 DeferredSave.extensions.json DEBUG Save changes | |
1480318033800 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318033800 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318033801 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318033802 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318033802 DeferredSave.extensions.json DEBUG Save changes | |
1480318033802 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318033802 DeferredSave.extensions.json DEBUG Save changes | |
1480318033803 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f73d93d3-da67-4319-90ea-9d6bf97f56a4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318033803 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033803 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f3cf7a7f-0830-4cfc-aed7-6e2a54a8324d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318033803 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033804 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3af524dc-64bf-43e1-95e7-2891d51ec47f}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318033804 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033804 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f573a226-9860-4213-aead-4517762524d1}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318033804 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318033804 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ba0f73e6-468c-4134-973c-ba61d485cdfd}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318033805 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318033806 DeferredSave.extensions.json DEBUG Save changes | |
1480318033806 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318033806 addons.xpi-utils DEBUG Updating add-on states | |
1480318033806 addons.xpi-utils DEBUG Writing add-ons list | |
1480318033807 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318033808 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318033809 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318033809 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318033810 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318033810 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318033810 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318033810 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318033812 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318033813 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318033813 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318033813 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318033813 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318033813 addons.manager DEBUG Starting provider: GMPProvider | |
1480318033820 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318033820 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318033820 addons.manager DEBUG Starting provider: PluginProvider | |
1480318033821 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318033821 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318033821 addons.manager DEBUG Completed startup sequence | |
1480318033987 Marionette INFO Listening on port 53048 | |
1480318034161 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318034162 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318034162 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318034177 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318034178 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318034179 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318034181 DeferredSave.extensions.json DEBUG Starting write | |
1480318034312 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318034313 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1827): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1827): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1827): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1827): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1752): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1752): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fef24bcb7e0' of type 'MaiAtkType13b' | |
(firefox:1752): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1752): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fef2918bdd0' of type 'MaiAtkType13b' | |
(firefox:1752): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fef2f895b00' of type 'MaiAtkType13b' | |
[Child 1827] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1827] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1827] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318056790 geckodriver INFO Listening on 127.0.0.1:39412 | |
1480318057789 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.1tYHptItWv0p | |
1480318058177 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318058180 geckodriver::marionette INFO Connecting to Marionette on localhost:49059 | |
(firefox:2160): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318059178 addons.manager DEBUG Application has been upgraded | |
1480318059196 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318059198 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318059203 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318059206 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318059207 addons.manager DEBUG Starting provider: XPIProvider | |
1480318059208 addons.xpi DEBUG startup | |
1480318059208 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318059209 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318059209 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318059210 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318059210 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318059211 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318059211 addons.xpi DEBUG checkForChanges | |
1480318059212 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318059213 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318059214 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059215 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318059215 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059215 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318059216 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059216 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318059216 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059217 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318059218 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318059218 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318059226 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.1tYHptItWv0p/extensions.json | |
1480318059227 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318059238 DeferredSave.extensions.json DEBUG Save changes | |
1480318059239 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318059241 DeferredSave.extensions.json DEBUG Starting timer | |
1480318059243 DeferredSave.extensions.json DEBUG Save changes | |
1480318059243 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318059248 DeferredSave.extensions.json DEBUG Save changes | |
1480318059248 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318059252 DeferredSave.extensions.json DEBUG Save changes | |
1480318059253 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318059257 DeferredSave.extensions.json DEBUG Save changes | |
1480318059257 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318059264 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318059277 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318059277 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318059278 DeferredSave.extensions.json DEBUG Save changes | |
1480318059279 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318059279 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318059282 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318059282 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318059282 DeferredSave.extensions.json DEBUG Save changes | |
1480318059283 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318059283 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318059286 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318059287 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318059288 DeferredSave.extensions.json DEBUG Save changes | |
1480318059288 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318059288 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318059290 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318059290 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318059290 DeferredSave.extensions.json DEBUG Save changes | |
1480318059290 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318059291 DeferredSave.extensions.json DEBUG Save changes | |
1480318059291 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{604b9a97-82b4-4881-b650-f91c506cee47}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318059291 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059291 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{aa629857-cddc-417f-aff9-0100f7620bd4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318059291 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059292 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ab375a9f-f9ee-4531-bae1-07bb04ffc477}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318059292 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059292 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{cf5cedb7-d76d-4ca7-bf18-f9565599e1d9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318059292 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318059293 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{3c54ffc8-0b99-4f82-99a9-26bc9d747a7c}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318059293 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318059294 DeferredSave.extensions.json DEBUG Save changes | |
1480318059294 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318059294 addons.xpi-utils DEBUG Updating add-on states | |
1480318059295 addons.xpi-utils DEBUG Writing add-ons list | |
1480318059295 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318059296 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318059297 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318059298 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318059298 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318059298 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318059299 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318059299 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318059301 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318059301 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318059301 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318059301 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318059301 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318059302 addons.manager DEBUG Starting provider: GMPProvider | |
1480318059309 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318059310 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318059310 addons.manager DEBUG Starting provider: PluginProvider | |
1480318059310 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318059310 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318059310 addons.manager DEBUG Completed startup sequence | |
1480318059551 Marionette INFO Listening on port 49059 | |
1480318059975 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318059975 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318059975 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318059991 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318059991 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318059993 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318059997 DeferredSave.extensions.json DEBUG Starting write | |
1480318060136 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318060137 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2245): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2245): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2245): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2245): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2160): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2160): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8f61491f60' of type 'MaiAtkType13b' | |
(firefox:2160): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2160): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8f62f5e920' of type 'MaiAtkType13b' | |
(firefox:2160): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8f625af510' of type 'MaiAtkType13b' | |
(firefox:2160): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8f625af9c0' of type 'MaiAtkType13b' | |
[Child 2245] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2245] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2245] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318087329 geckodriver INFO Listening on 127.0.0.1:49016 | |
1480318088328 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.frl2E2JyYg8H | |
1480318088330 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318088332 geckodriver::marionette INFO Connecting to Marionette on localhost:34854 | |
(firefox:2672): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318089164 addons.manager DEBUG Application has been upgraded | |
1480318089185 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318089187 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318089192 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318089194 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318089195 addons.manager DEBUG Starting provider: XPIProvider | |
1480318089195 addons.xpi DEBUG startup | |
1480318089196 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318089197 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318089197 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318089197 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318089198 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318089198 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318089199 addons.xpi DEBUG checkForChanges | |
1480318089199 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318089200 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318089201 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089202 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318089202 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089203 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318089203 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089204 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318089204 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089204 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318089205 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318089205 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318089213 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.frl2E2JyYg8H/extensions.json | |
1480318089214 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318089225 DeferredSave.extensions.json DEBUG Save changes | |
1480318089225 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318089228 DeferredSave.extensions.json DEBUG Starting timer | |
1480318089229 DeferredSave.extensions.json DEBUG Save changes | |
1480318089229 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318089234 DeferredSave.extensions.json DEBUG Save changes | |
1480318089234 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318089238 DeferredSave.extensions.json DEBUG Save changes | |
1480318089239 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318089243 DeferredSave.extensions.json DEBUG Save changes | |
1480318089243 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318089249 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318089263 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318089263 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318089263 DeferredSave.extensions.json DEBUG Save changes | |
1480318089264 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318089265 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318089267 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318089268 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318089268 DeferredSave.extensions.json DEBUG Save changes | |
1480318089268 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318089269 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318089271 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318089273 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318089273 DeferredSave.extensions.json DEBUG Save changes | |
1480318089273 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318089274 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318089275 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318089275 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318089275 DeferredSave.extensions.json DEBUG Save changes | |
1480318089275 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318089276 DeferredSave.extensions.json DEBUG Save changes | |
1480318089276 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{02cee0f7-b1c4-4a34-a558-168bf64b5c5d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318089276 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089276 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e66bca09-2f0c-481b-9319-bf3bfef61b5c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318089277 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089277 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3d54718f-6b22-4a21-9fe0-ab457eba2142}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318089277 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089277 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a02a5388-4428-40a2-8f18-37ba90d2cf31}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318089278 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318089278 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{080cb759-3f93-48cb-8264-70ac4b5806d9}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318089278 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318089279 DeferredSave.extensions.json DEBUG Save changes | |
1480318089279 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318089279 addons.xpi-utils DEBUG Updating add-on states | |
1480318089280 addons.xpi-utils DEBUG Writing add-ons list | |
1480318089281 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318089281 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318089283 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318089283 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318089283 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318089284 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318089284 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318089284 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318089286 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318089286 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318089286 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318089287 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318089287 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318089287 addons.manager DEBUG Starting provider: GMPProvider | |
1480318089294 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318089294 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318089295 addons.manager DEBUG Starting provider: PluginProvider | |
1480318089295 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318089295 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318089295 addons.manager DEBUG Completed startup sequence | |
1480318089551 Marionette INFO Listening on port 34854 | |
1480318089934 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318089934 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318089935 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318089950 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318089950 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318089952 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318089955 DeferredSave.extensions.json DEBUG Starting write | |
1480318090098 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318090099 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2750): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2750): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2750): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2750): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2672): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fd8c6557740' of type 'MaiAtkType13b' | |
(firefox:2672): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fd8c4dc21a0' of type 'MaiAtkType13b' | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fd8c65575b0' of type 'MaiAtkType13b' | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fd8c8f5c600' of type 'MaiAtkType139' | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fd8c4cc31f0' of type 'MaiAtkType13b' | |
(firefox:2672): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fd8c6582c40' of type 'MaiAtkType139' | |
[Child 2750] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2750] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2750] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318122677 geckodriver INFO Listening on 127.0.0.1:39514 | |
1480318123678 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.JuHylThwBHqP | |
1480318123680 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318123833 geckodriver::marionette INFO Connecting to Marionette on localhost:45753 | |
(firefox:3450): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318125178 addons.manager DEBUG Application has been upgraded | |
1480318125196 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318125198 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318125202 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318125204 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318125205 addons.manager DEBUG Starting provider: XPIProvider | |
1480318125206 addons.xpi DEBUG startup | |
1480318125206 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318125207 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318125207 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318125208 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318125208 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318125209 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318125209 addons.xpi DEBUG checkForChanges | |
1480318125210 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318125211 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318125212 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125212 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318125213 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125213 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318125214 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125214 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318125214 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125215 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318125215 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318125216 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318125224 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.JuHylThwBHqP/extensions.json | |
1480318125225 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318125235 DeferredSave.extensions.json DEBUG Save changes | |
1480318125236 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318125238 DeferredSave.extensions.json DEBUG Starting timer | |
1480318125239 DeferredSave.extensions.json DEBUG Save changes | |
1480318125240 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318125244 DeferredSave.extensions.json DEBUG Save changes | |
1480318125245 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318125249 DeferredSave.extensions.json DEBUG Save changes | |
1480318125250 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318125254 DeferredSave.extensions.json DEBUG Save changes | |
1480318125254 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318125261 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318125274 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318125274 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318125275 DeferredSave.extensions.json DEBUG Save changes | |
1480318125275 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318125276 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318125279 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318125279 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318125279 DeferredSave.extensions.json DEBUG Save changes | |
1480318125279 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318125280 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318125283 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318125284 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318125284 DeferredSave.extensions.json DEBUG Save changes | |
1480318125284 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318125285 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318125286 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318125286 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318125287 DeferredSave.extensions.json DEBUG Save changes | |
1480318125287 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318125287 DeferredSave.extensions.json DEBUG Save changes | |
1480318125287 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ff02807e-e2f6-418e-b2eb-1c6f6e11f3e0}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318125287 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125288 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4c4afa7d-0339-46ef-b420-e8d67e7e4448}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318125288 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125288 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7c7272e5-bdaf-4906-822a-8f90ef5abd6c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318125288 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125289 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{41898a82-5c4c-4737-9856-4eecd0d91541}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318125289 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318125289 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{84ddc88d-a7da-4cfc-8462-37372c2a598e}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318125289 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318125290 DeferredSave.extensions.json DEBUG Save changes | |
1480318125290 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318125290 addons.xpi-utils DEBUG Updating add-on states | |
1480318125291 addons.xpi-utils DEBUG Writing add-ons list | |
1480318125292 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318125292 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318125294 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318125294 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318125294 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318125295 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318125295 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318125295 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318125297 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318125297 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318125297 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318125297 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318125298 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318125298 addons.manager DEBUG Starting provider: GMPProvider | |
1480318125305 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318125305 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318125305 addons.manager DEBUG Starting provider: PluginProvider | |
1480318125305 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318125305 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318125306 addons.manager DEBUG Completed startup sequence | |
1480318125613 Marionette INFO Listening on port 45753 | |
1480318125964 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318125964 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318125964 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318125980 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318125980 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318125981 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318125985 DeferredSave.extensions.json DEBUG Starting write | |
1480318126115 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318126116 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3535): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3535): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3535): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3535): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3450): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3450): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f87ee6c66a0' of type 'MaiAtkType13b' | |
(firefox:3450): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3450): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f87e6c42bf0' of type 'MaiAtkType13b' | |
(firefox:3450): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f87e7a59ce0' of type 'MaiAtkType13b' | |
[Child 3535] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3535] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3535] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318159341 geckodriver INFO Listening on 127.0.0.1:55135 | |
1480318160338 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.LIhHXzadR4Ma | |
1480318160341 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318160343 geckodriver::marionette INFO Connecting to Marionette on localhost:43079 | |
(firefox:4185): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318161071 addons.manager DEBUG Application has been upgraded | |
1480318161089 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318161091 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318161095 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318161097 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318161098 addons.manager DEBUG Starting provider: XPIProvider | |
1480318161099 addons.xpi DEBUG startup | |
1480318161099 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318161100 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318161100 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318161101 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318161101 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318161102 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318161102 addons.xpi DEBUG checkForChanges | |
1480318161103 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318161104 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318161105 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161106 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318161106 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161107 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318161107 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161108 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318161108 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161108 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318161225 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318161225 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318161235 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.LIhHXzadR4Ma/extensions.json | |
1480318161236 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318161249 DeferredSave.extensions.json DEBUG Save changes | |
1480318161250 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318161252 DeferredSave.extensions.json DEBUG Starting timer | |
1480318161254 DeferredSave.extensions.json DEBUG Save changes | |
1480318161254 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318161260 DeferredSave.extensions.json DEBUG Save changes | |
1480318161260 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318161266 DeferredSave.extensions.json DEBUG Save changes | |
1480318161267 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318161271 DeferredSave.extensions.json DEBUG Save changes | |
1480318161272 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318161278 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318161293 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318161293 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318161294 DeferredSave.extensions.json DEBUG Save changes | |
1480318161295 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318161295 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318161298 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318161298 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318161299 DeferredSave.extensions.json DEBUG Save changes | |
1480318161299 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318161300 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318161302 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318161304 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318161304 DeferredSave.extensions.json DEBUG Save changes | |
1480318161305 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318161305 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318161307 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318161307 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318161308 DeferredSave.extensions.json DEBUG Save changes | |
1480318161308 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318161308 DeferredSave.extensions.json DEBUG Save changes | |
1480318161309 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b83e74c5-81e4-40cf-9a9c-a5a823d12a23}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318161309 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161310 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{555d70ee-fe33-45d0-9f63-e8ecf9725670}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318161310 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161310 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{36b384cd-6d45-4a85-a639-f7a886cefe64}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318161310 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161311 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0e94fe21-9fda-4acc-8104-16d9b84ca422}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318161311 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318161311 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{18bff111-4741-4912-af58-966d5b9bfd20}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318161311 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318161313 DeferredSave.extensions.json DEBUG Save changes | |
1480318161314 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318161314 addons.xpi-utils DEBUG Updating add-on states | |
1480318161314 addons.xpi-utils DEBUG Writing add-ons list | |
1480318161316 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318161316 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318161318 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318161318 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318161319 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318161321 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318161321 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318161321 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318161324 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318161324 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318161324 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318161324 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318161324 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318161325 addons.manager DEBUG Starting provider: GMPProvider | |
1480318161334 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318161334 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318161334 addons.manager DEBUG Starting provider: PluginProvider | |
1480318161334 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318161334 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318161335 addons.manager DEBUG Completed startup sequence | |
1480318162703 Marionette INFO Listening on port 43079 | |
1480318163071 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318163071 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318163072 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318163086 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318163087 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318163088 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318163090 DeferredSave.extensions.json DEBUG Starting write | |
1480318163223 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318163224 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4271): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4271): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4271): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4271): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4185): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4185): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fce88fe45b0' of type 'MaiAtkType13b' | |
(firefox:4185): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fce88b9a3d0' of type 'MaiAtkType13b' | |
[Child 4271] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4271] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318168581 geckodriver INFO Listening on 127.0.0.1:33827 | |
1480318169581 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.uht2WSikJ6vQ | |
1480318169583 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318169586 geckodriver::marionette INFO Connecting to Marionette on localhost:57321 | |
(firefox:4635): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318169821 addons.manager DEBUG Application has been upgraded | |
1480318169839 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318169841 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318169846 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318169848 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318169849 addons.manager DEBUG Starting provider: XPIProvider | |
1480318169849 addons.xpi DEBUG startup | |
1480318169850 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318169851 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318169851 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318169852 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318169852 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318169853 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318169853 addons.xpi DEBUG checkForChanges | |
1480318169854 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318169855 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318169856 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169857 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318169857 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169858 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318169858 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169859 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318169859 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169859 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318169860 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318169860 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318169870 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.uht2WSikJ6vQ/extensions.json | |
1480318169871 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318169882 DeferredSave.extensions.json DEBUG Save changes | |
1480318169883 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318169885 DeferredSave.extensions.json DEBUG Starting timer | |
1480318169887 DeferredSave.extensions.json DEBUG Save changes | |
1480318169887 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318169892 DeferredSave.extensions.json DEBUG Save changes | |
1480318169892 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318169897 DeferredSave.extensions.json DEBUG Save changes | |
1480318169898 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318169902 DeferredSave.extensions.json DEBUG Save changes | |
1480318169902 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318169909 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318169925 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318169925 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318169926 DeferredSave.extensions.json DEBUG Save changes | |
1480318169927 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318169927 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318169931 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318169931 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318169931 DeferredSave.extensions.json DEBUG Save changes | |
1480318169931 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318169932 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318169935 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318169936 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318169937 DeferredSave.extensions.json DEBUG Save changes | |
1480318169937 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318169938 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318169939 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318169939 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318169939 DeferredSave.extensions.json DEBUG Save changes | |
1480318169940 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318169940 DeferredSave.extensions.json DEBUG Save changes | |
1480318169940 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fb9a5cf6-c853-438e-b266-1d2951d15b6c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318169940 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169941 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{684daf4b-1dbc-4d40-9b00-07d91d96e5ef}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318169941 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169941 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{bd9db167-2d04-476a-86fd-d17b444f6d9c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318169941 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169942 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fb742b49-5dec-408e-b2b7-0e79bfc1b6dd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318169942 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318169942 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ee4a0b24-3d5e-48ce-b5c5-af3b4661438a}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318169942 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318169944 DeferredSave.extensions.json DEBUG Save changes | |
1480318169944 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318169944 addons.xpi-utils DEBUG Updating add-on states | |
1480318169944 addons.xpi-utils DEBUG Writing add-ons list | |
1480318169945 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318169946 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318169947 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318169948 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318169948 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318169948 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318169949 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318169949 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318169951 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318169951 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318169951 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318169951 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318169951 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318169952 addons.manager DEBUG Starting provider: GMPProvider | |
1480318169959 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318169959 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318169959 addons.manager DEBUG Starting provider: PluginProvider | |
1480318169959 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318169960 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318169960 addons.manager DEBUG Completed startup sequence | |
1480318170212 Marionette INFO Listening on port 57321 | |
1480318170608 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318170608 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318170608 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318170623 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318170623 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318170624 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318170628 DeferredSave.extensions.json DEBUG Starting write | |
1480318170754 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318170755 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4711): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4711): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4711): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4711): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4635): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4711] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 4711] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4711] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318173146 geckodriver INFO Listening on 127.0.0.1:40056 | |
1480318174146 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Sb849DFBxTOj | |
1480318174148 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318174150 geckodriver::marionette INFO Connecting to Marionette on localhost:45912 | |
(firefox:4875): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318174383 addons.manager DEBUG Application has been upgraded | |
1480318174401 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318174404 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318174408 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318174411 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318174411 addons.manager DEBUG Starting provider: XPIProvider | |
1480318174412 addons.xpi DEBUG startup | |
1480318174413 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318174414 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318174414 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318174414 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318174415 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318174415 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318174416 addons.xpi DEBUG checkForChanges | |
1480318174416 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318174417 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318174418 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174419 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318174420 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174420 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318174421 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174421 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318174421 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174422 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318174422 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318174423 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318174431 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Sb849DFBxTOj/extensions.json | |
1480318174432 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318174443 DeferredSave.extensions.json DEBUG Save changes | |
1480318174443 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318174445 DeferredSave.extensions.json DEBUG Starting timer | |
1480318174447 DeferredSave.extensions.json DEBUG Save changes | |
1480318174447 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318174452 DeferredSave.extensions.json DEBUG Save changes | |
1480318174452 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318174456 DeferredSave.extensions.json DEBUG Save changes | |
1480318174457 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318174461 DeferredSave.extensions.json DEBUG Save changes | |
1480318174461 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318174468 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318174481 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318174481 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318174481 DeferredSave.extensions.json DEBUG Save changes | |
1480318174482 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318174483 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318174486 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318174486 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318174486 DeferredSave.extensions.json DEBUG Save changes | |
1480318174486 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318174487 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318174489 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318174491 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318174491 DeferredSave.extensions.json DEBUG Save changes | |
1480318174491 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318174492 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318174493 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318174493 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318174493 DeferredSave.extensions.json DEBUG Save changes | |
1480318174494 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318174494 DeferredSave.extensions.json DEBUG Save changes | |
1480318174494 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{769f91dc-b0d1-4ae4-8f7b-5097ca4d822a}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318174494 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174495 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8b2c3ef1-03bd-491d-86df-7c9cbb348fb9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318174495 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174495 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{144bc057-8246-43c9-800c-080f8e45211b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318174495 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174496 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2d1d71bd-f192-42ed-be8d-9207a1923e8f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318174496 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318174496 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{a54313a8-8c81-401d-b507-0944621e8d85}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318174496 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318174497 DeferredSave.extensions.json DEBUG Save changes | |
1480318174498 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318174498 addons.xpi-utils DEBUG Updating add-on states | |
1480318174498 addons.xpi-utils DEBUG Writing add-ons list | |
1480318174499 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318174500 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318174501 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318174502 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318174502 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318174502 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318174503 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318174503 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318174505 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318174505 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318174505 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318174505 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318174506 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318174506 addons.manager DEBUG Starting provider: GMPProvider | |
1480318174513 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318174513 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318174514 addons.manager DEBUG Starting provider: PluginProvider | |
1480318174514 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318174514 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318174514 addons.manager DEBUG Completed startup sequence | |
1480318174764 Marionette INFO Listening on port 45912 | |
1480318175109 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318175109 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318175110 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318175126 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318175126 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318175127 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318175133 DeferredSave.extensions.json DEBUG Starting write | |
1480318175252 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318175253 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4952): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4952): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4952): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4952): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4875): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4952] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4952] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318177653 geckodriver INFO Listening on 127.0.0.1:39594 | |
1480318178654 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.nknULoC8PHs4 | |
1480318178656 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318178659 geckodriver::marionette INFO Connecting to Marionette on localhost:44083 | |
(firefox:5115): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318178886 addons.manager DEBUG Application has been upgraded | |
1480318178904 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318178906 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318178910 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318178913 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318178913 addons.manager DEBUG Starting provider: XPIProvider | |
1480318178914 addons.xpi DEBUG startup | |
1480318178914 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318178915 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318178915 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318178916 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318178916 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318178917 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318178917 addons.xpi DEBUG checkForChanges | |
1480318178918 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318178919 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318178920 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178920 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318178921 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178921 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318178922 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178922 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318178922 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178923 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318178923 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318178924 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318178931 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.nknULoC8PHs4/extensions.json | |
1480318178932 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318178943 DeferredSave.extensions.json DEBUG Save changes | |
1480318178943 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318178946 DeferredSave.extensions.json DEBUG Starting timer | |
1480318178947 DeferredSave.extensions.json DEBUG Save changes | |
1480318178947 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318178952 DeferredSave.extensions.json DEBUG Save changes | |
1480318178952 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318178956 DeferredSave.extensions.json DEBUG Save changes | |
1480318178957 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318178961 DeferredSave.extensions.json DEBUG Save changes | |
1480318178961 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318178967 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318178981 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318178981 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318178981 DeferredSave.extensions.json DEBUG Save changes | |
1480318178982 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318178982 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318178985 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318178985 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318178986 DeferredSave.extensions.json DEBUG Save changes | |
1480318178986 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318178987 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318178989 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318178990 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318178991 DeferredSave.extensions.json DEBUG Save changes | |
1480318178991 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318178991 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318178993 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318178993 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318178993 DeferredSave.extensions.json DEBUG Save changes | |
1480318178993 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318178993 DeferredSave.extensions.json DEBUG Save changes | |
1480318178994 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4814e71c-f349-4111-ad0b-d4d78ad36d87}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318178994 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178994 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{651bc14e-6ea0-4b29-8189-1e641b7777fa}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318178994 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178995 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{81f8e416-4867-422c-9092-becc32426013}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318178995 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178995 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d37ceb24-3caa-4698-b2f4-da91c60827f5}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318178995 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318178996 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{931e5eed-4f84-4bda-964f-d7d376b5d8c2}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318178996 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318178997 DeferredSave.extensions.json DEBUG Save changes | |
1480318178997 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318178997 addons.xpi-utils DEBUG Updating add-on states | |
1480318178998 addons.xpi-utils DEBUG Writing add-ons list | |
1480318178998 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318178999 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318179000 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318179000 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318179001 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318179001 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318179001 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318179002 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318179004 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318179004 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318179004 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318179004 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318179004 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318179005 addons.manager DEBUG Starting provider: GMPProvider | |
1480318179011 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318179012 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318179012 addons.manager DEBUG Starting provider: PluginProvider | |
1480318179012 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318179012 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318179012 addons.manager DEBUG Completed startup sequence | |
1480318179243 Marionette INFO Listening on port 44083 | |
1480318179601 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318179601 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318179601 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318179616 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318179617 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318179618 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318179623 DeferredSave.extensions.json DEBUG Starting write | |
1480318179756 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318179757 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5193): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5193): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5193): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5193): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5115): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5193] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5193] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5193] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318183219 geckodriver INFO Listening on 127.0.0.1:59824 | |
1480318184220 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.oY7V34xdRlHG | |
1480318184222 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318184225 geckodriver::marionette INFO Connecting to Marionette on localhost:50443 | |
(firefox:5374): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318184452 addons.manager DEBUG Application has been upgraded | |
1480318184469 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318184471 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318184476 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318184478 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318184478 addons.manager DEBUG Starting provider: XPIProvider | |
1480318184479 addons.xpi DEBUG startup | |
1480318184479 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318184480 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318184481 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318184481 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318184481 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318184482 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318184482 addons.xpi DEBUG checkForChanges | |
1480318184483 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318184484 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318184485 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184486 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318184486 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184486 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318184487 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184487 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318184487 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184488 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318184488 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318184489 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318184497 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.oY7V34xdRlHG/extensions.json | |
1480318184498 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318184508 DeferredSave.extensions.json DEBUG Save changes | |
1480318184508 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318184511 DeferredSave.extensions.json DEBUG Starting timer | |
1480318184512 DeferredSave.extensions.json DEBUG Save changes | |
1480318184512 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318184517 DeferredSave.extensions.json DEBUG Save changes | |
1480318184517 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318184521 DeferredSave.extensions.json DEBUG Save changes | |
1480318184522 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318184526 DeferredSave.extensions.json DEBUG Save changes | |
1480318184526 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318184533 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318184546 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318184546 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318184546 DeferredSave.extensions.json DEBUG Save changes | |
1480318184547 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318184548 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318184550 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318184551 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318184551 DeferredSave.extensions.json DEBUG Save changes | |
1480318184551 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318184552 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318184554 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318184556 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318184556 DeferredSave.extensions.json DEBUG Save changes | |
1480318184556 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318184557 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318184558 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318184558 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318184558 DeferredSave.extensions.json DEBUG Save changes | |
1480318184559 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318184559 DeferredSave.extensions.json DEBUG Save changes | |
1480318184559 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{755a9188-3ea5-4b60-ac97-38152cf00f13}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318184559 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184560 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1bb1248d-bafc-42ca-842b-a79fb6bcd097}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318184560 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184560 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{eb71219d-69fe-47e8-9958-2828bcea8f52}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318184560 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184561 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7676e203-c0e9-49d5-ac45-c391e85f40e4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318184561 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318184561 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{2a95775b-436b-44ed-9303-980378be8f9c}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318184561 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318184562 DeferredSave.extensions.json DEBUG Save changes | |
1480318184562 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318184562 addons.xpi-utils DEBUG Updating add-on states | |
1480318184563 addons.xpi-utils DEBUG Writing add-ons list | |
1480318184564 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318184564 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318184566 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318184566 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318184566 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318184567 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318184567 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318184567 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318184569 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318184569 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318184569 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318184570 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318184570 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318184570 addons.manager DEBUG Starting provider: GMPProvider | |
1480318184577 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318184577 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318184578 addons.manager DEBUG Starting provider: PluginProvider | |
1480318184578 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318184578 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318184578 addons.manager DEBUG Completed startup sequence | |
1480318184807 Marionette INFO Listening on port 50443 | |
1480318185139 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318185139 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318185139 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318185156 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318185156 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318185158 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318185161 DeferredSave.extensions.json DEBUG Starting write | |
1480318185302 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318185303 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5452): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5452): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5452): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5452): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5374): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f5203a737e0' of type 'MaiAtkType139' | |
[Child 5452] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5452] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318188730 geckodriver INFO Listening on 127.0.0.1:45531 | |
1480318189731 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.UbDwkDbn1W3o | |
1480318189733 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318189735 geckodriver::marionette INFO Connecting to Marionette on localhost:44288 | |
(firefox:5627): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318189982 addons.manager DEBUG Application has been upgraded | |
1480318189999 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318190002 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318190006 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318190008 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318190009 addons.manager DEBUG Starting provider: XPIProvider | |
1480318190009 addons.xpi DEBUG startup | |
1480318190010 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318190011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318190011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318190011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318190012 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318190012 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318190013 addons.xpi DEBUG checkForChanges | |
1480318190013 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318190014 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318190015 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190016 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318190016 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190017 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318190017 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190018 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318190018 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190018 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318190019 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318190019 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318190027 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.UbDwkDbn1W3o/extensions.json | |
1480318190028 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318190039 DeferredSave.extensions.json DEBUG Save changes | |
1480318190039 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318190042 DeferredSave.extensions.json DEBUG Starting timer | |
1480318190043 DeferredSave.extensions.json DEBUG Save changes | |
1480318190043 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318190048 DeferredSave.extensions.json DEBUG Save changes | |
1480318190048 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318190053 DeferredSave.extensions.json DEBUG Save changes | |
1480318190053 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318190058 DeferredSave.extensions.json DEBUG Save changes | |
1480318190058 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318190065 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318190079 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318190079 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318190079 DeferredSave.extensions.json DEBUG Save changes | |
1480318190080 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318190081 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318190083 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318190084 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318190084 DeferredSave.extensions.json DEBUG Save changes | |
1480318190084 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318190085 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318190088 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318190089 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318190089 DeferredSave.extensions.json DEBUG Save changes | |
1480318190089 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318190090 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318190091 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318190091 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318190092 DeferredSave.extensions.json DEBUG Save changes | |
1480318190092 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318190092 DeferredSave.extensions.json DEBUG Save changes | |
1480318190093 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7cb84cad-b940-4877-ab81-febd165807e2}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318190093 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190093 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a5862ca3-1677-46b8-a6fb-6f914997d243}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318190093 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190094 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7c0cff53-80f7-4d9f-8a9f-e8dbaa042648}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318190094 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190094 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{bde2363b-e127-4894-905a-cba066bc75c9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318190094 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318190094 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{58b3bac8-1f83-4824-b041-f61141d0866b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318190095 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318190096 DeferredSave.extensions.json DEBUG Save changes | |
1480318190096 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318190096 addons.xpi-utils DEBUG Updating add-on states | |
1480318190097 addons.xpi-utils DEBUG Writing add-ons list | |
1480318190097 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318190098 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318190099 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318190100 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318190100 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318190100 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318190101 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318190101 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318190103 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318190103 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318190103 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318190103 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318190103 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318190104 addons.manager DEBUG Starting provider: GMPProvider | |
1480318190111 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318190111 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318190111 addons.manager DEBUG Starting provider: PluginProvider | |
1480318190111 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318190112 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318190112 addons.manager DEBUG Completed startup sequence | |
1480318190392 Marionette INFO Listening on port 44288 | |
1480318190803 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318190804 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318190804 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318190820 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318190821 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318190822 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318190828 DeferredSave.extensions.json DEBUG Starting write | |
1480318190954 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318190954 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5627): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480318193252 geckodriver INFO Listening on 127.0.0.1:43115 | |
1480318194252 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.UDSEWX2jT7Hw | |
1480318194255 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480318194257 geckodriver::marionette INFO Connecting to Marionette on localhost:58997 | |
(firefox:5876): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480318194481 addons.manager DEBUG Application has been upgraded | |
1480318194500 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480318194502 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480318194507 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480318194509 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480318194510 addons.manager DEBUG Starting provider: XPIProvider | |
1480318194511 addons.xpi DEBUG startup | |
1480318194512 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480318194513 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318194513 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318194513 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318194514 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480318194514 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480318194515 addons.xpi DEBUG checkForChanges | |
1480318194516 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480318194517 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318194518 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194519 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318194519 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194519 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318194520 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194521 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480318194521 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194521 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480318194522 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318194522 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480318194530 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.UDSEWX2jT7Hw/extensions.json | |
1480318194532 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480318194543 DeferredSave.extensions.json DEBUG Save changes | |
1480318194544 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318194546 DeferredSave.extensions.json DEBUG Starting timer | |
1480318194548 DeferredSave.extensions.json DEBUG Save changes | |
1480318194548 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318194553 DeferredSave.extensions.json DEBUG Save changes | |
1480318194553 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480318194558 DeferredSave.extensions.json DEBUG Save changes | |
1480318194559 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480318194563 DeferredSave.extensions.json DEBUG Save changes | |
1480318194564 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318194570 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318194584 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480318194584 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318194585 DeferredSave.extensions.json DEBUG Save changes | |
1480318194586 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318194586 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318194589 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318194589 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318194590 DeferredSave.extensions.json DEBUG Save changes | |
1480318194590 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318194591 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318194594 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480318194595 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318194595 DeferredSave.extensions.json DEBUG Save changes | |
1480318194596 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480318194596 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480318194598 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480318194598 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480318194598 DeferredSave.extensions.json DEBUG Save changes | |
1480318194598 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480318194599 DeferredSave.extensions.json DEBUG Save changes | |
1480318194599 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a9699efe-8cd3-4282-b3ef-ccfd9ec44c01}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318194599 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194600 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a4a9286d-6821-487f-8620-dff1d4878fc7}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480318194600 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194600 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b486bbe5-ff37-4d1f-bd7f-5ecbbe9d4f8a}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318194600 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194601 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b5ee17bb-7bc4-492b-97a6-d1f211ce7dcd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480318194601 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480318194601 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{3e64390f-5792-4448-95a4-b85797d8d077}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480318194601 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480318194602 DeferredSave.extensions.json DEBUG Save changes | |
1480318194602 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480318194602 addons.xpi-utils DEBUG Updating add-on states | |
1480318194603 addons.xpi-utils DEBUG Writing add-ons list | |
1480318194604 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318194604 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480318194606 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318194606 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318194607 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318194607 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480318194607 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480318194608 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480318194610 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480318194610 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480318194610 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480318194610 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480318194611 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480318194611 addons.manager DEBUG Starting provider: GMPProvider | |
1480318194619 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480318194619 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480318194619 addons.manager DEBUG Starting provider: PluginProvider | |
1480318194620 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480318194620 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480318194620 addons.manager DEBUG Completed startup sequence | |
1480318194838 Marionette INFO Listening on port 58997 | |
1480318195199 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480318195199 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480318195200 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480318195221 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480318195221 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480318195223 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480318195226 DeferredSave.extensions.json DEBUG Starting write | |
1480318195359 DeferredSave.extensions.json DEBUG Write succeeded | |
1480318195360 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5954): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5954): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5954): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5954): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5876): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5954] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5954] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5954] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382413884 geckodriver INFO Listening on 127.0.0.1:44344 | |
1480382414885 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.c3LZMZYVcck7 | |
1480382414894 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382414934 geckodriver::marionette INFO Connecting to Marionette on localhost:52455 | |
(firefox:929): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382415252 addons.manager DEBUG Application has been upgraded | |
1480382415271 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382415274 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382415278 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382415280 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382415281 addons.manager DEBUG Starting provider: XPIProvider | |
1480382415282 addons.xpi DEBUG startup | |
1480382415282 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382415283 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382415283 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382415284 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382415284 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382415285 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382415286 addons.xpi DEBUG checkForChanges | |
1480382415286 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382415287 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382415288 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415289 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382415289 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415290 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382415290 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415291 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382415291 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415291 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382415292 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382415292 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382415301 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.c3LZMZYVcck7/extensions.json | |
1480382415302 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382415313 DeferredSave.extensions.json DEBUG Save changes | |
1480382415314 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382415317 DeferredSave.extensions.json DEBUG Starting timer | |
1480382415318 DeferredSave.extensions.json DEBUG Save changes | |
1480382415318 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382415323 DeferredSave.extensions.json DEBUG Save changes | |
1480382415323 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382415328 DeferredSave.extensions.json DEBUG Save changes | |
1480382415329 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382415332 DeferredSave.extensions.json DEBUG Save changes | |
1480382415333 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382415339 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382415353 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382415353 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382415353 DeferredSave.extensions.json DEBUG Save changes | |
1480382415354 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382415355 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382415357 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382415358 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382415358 DeferredSave.extensions.json DEBUG Save changes | |
1480382415358 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382415359 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382415361 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382415363 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382415363 DeferredSave.extensions.json DEBUG Save changes | |
1480382415363 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382415364 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382415365 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382415365 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382415366 DeferredSave.extensions.json DEBUG Save changes | |
1480382415366 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382415366 DeferredSave.extensions.json DEBUG Save changes | |
1480382415366 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8d2f2d6f-13b1-4827-888c-a9d81e8cae0d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382415367 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415367 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ab3d3399-4661-45ae-bd14-b8127b166e09}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382415367 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415367 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4ad62787-2ce6-43fc-96d0-5807a8017024}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382415368 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415368 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b6945b78-4bef-4c7e-8494-509833204288}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382415368 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382415368 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6f982889-ee48-4f38-911f-b0e4d1ce0607}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382415368 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382415370 DeferredSave.extensions.json DEBUG Save changes | |
1480382415370 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382415370 addons.xpi-utils DEBUG Updating add-on states | |
1480382415370 addons.xpi-utils DEBUG Writing add-ons list | |
1480382415371 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382415372 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382415373 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382415373 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382415374 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382415374 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382415374 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382415375 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382415377 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382415377 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382415377 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382415377 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382415377 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382415378 addons.manager DEBUG Starting provider: GMPProvider | |
1480382415385 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382415385 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382415385 addons.manager DEBUG Starting provider: PluginProvider | |
1480382415385 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382415385 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382415386 addons.manager DEBUG Completed startup sequence | |
1480382415571 Marionette INFO Listening on port 52455 | |
1480382415794 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382415794 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382415794 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382415810 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382415810 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382415812 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382415814 DeferredSave.extensions.json DEBUG Starting write | |
1480382415961 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382415962 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1054): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1054): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1054): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1054): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:929): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:929): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7e10afb830' of type 'MaiAtkType13b' | |
(firefox:929): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:929): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7e10afbab0' of type 'MaiAtkType13b' | |
(firefox:929): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7e0e6ca790' of type 'MaiAtkType13b' | |
[Child 1054] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1054] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1054] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382423901 geckodriver INFO Listening on 127.0.0.1:55184 | |
1480382424900 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.xfeK6ZhCHHc4 | |
1480382424902 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382424904 geckodriver::marionette INFO Connecting to Marionette on localhost:53106 | |
(firefox:1334): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382425090 addons.manager DEBUG Application has been upgraded | |
1480382425108 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382425110 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382425115 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382425117 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382425118 addons.manager DEBUG Starting provider: XPIProvider | |
1480382425118 addons.xpi DEBUG startup | |
1480382425119 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382425120 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382425120 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382425120 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382425121 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382425121 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382425122 addons.xpi DEBUG checkForChanges | |
1480382425122 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382425123 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382425124 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425125 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382425125 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425125 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382425126 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425126 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382425127 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425127 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382425128 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382425128 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382425136 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.xfeK6ZhCHHc4/extensions.json | |
1480382425137 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382425148 DeferredSave.extensions.json DEBUG Save changes | |
1480382425148 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382425150 DeferredSave.extensions.json DEBUG Starting timer | |
1480382425152 DeferredSave.extensions.json DEBUG Save changes | |
1480382425152 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382425157 DeferredSave.extensions.json DEBUG Save changes | |
1480382425157 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382425161 DeferredSave.extensions.json DEBUG Save changes | |
1480382425162 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382425166 DeferredSave.extensions.json DEBUG Save changes | |
1480382425166 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382425173 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382425186 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382425186 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382425187 DeferredSave.extensions.json DEBUG Save changes | |
1480382425188 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382425188 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382425191 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382425191 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382425192 DeferredSave.extensions.json DEBUG Save changes | |
1480382425192 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382425193 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382425195 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382425196 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382425197 DeferredSave.extensions.json DEBUG Save changes | |
1480382425197 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382425197 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382425199 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382425199 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382425199 DeferredSave.extensions.json DEBUG Save changes | |
1480382425199 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382425200 DeferredSave.extensions.json DEBUG Save changes | |
1480382425200 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1747255a-567b-42ca-859f-8f2961fcc569}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382425200 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425200 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6a8e4e30-b67b-4081-b415-d0fa946f8953}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382425201 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425201 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4a227daf-e844-413a-a9a1-68d7250f7b24}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382425201 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425201 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6667d971-039f-46e3-b833-76317460bb77}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382425202 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382425202 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4ffe739b-cc3b-4d1b-9582-3fa4981d1bd3}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382425202 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382425203 DeferredSave.extensions.json DEBUG Save changes | |
1480382425203 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382425203 addons.xpi-utils DEBUG Updating add-on states | |
1480382425204 addons.xpi-utils DEBUG Writing add-ons list | |
1480382425205 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382425205 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382425207 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382425207 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382425207 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382425208 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382425208 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382425208 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382425210 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382425211 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382425211 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382425211 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382425211 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382425211 addons.manager DEBUG Starting provider: GMPProvider | |
1480382425219 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382425219 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382425219 addons.manager DEBUG Starting provider: PluginProvider | |
1480382425219 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382425219 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382425220 addons.manager DEBUG Completed startup sequence | |
1480382425400 Marionette INFO Listening on port 53106 | |
1480382425588 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382425588 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382425588 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382425605 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382425606 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382425607 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382425611 DeferredSave.extensions.json DEBUG Starting write | |
1480382425749 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382425750 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1408): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1408): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1408): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1408): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1334): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1334): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc313962600' of type 'MaiAtkType13b' | |
(firefox:1334): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1334): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc31485d970' of type 'MaiAtkType13b' | |
(firefox:1334): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc30b26bbf0' of type 'MaiAtkType13b' | |
(firefox:1334): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc30a591790' of type 'MaiAtkType13b' | |
[Child 1408] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1408] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1408] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382434551 geckodriver INFO Listening on 127.0.0.1:54250 | |
1480382435551 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.yGbEusQ1AqVJ | |
1480382435553 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382435555 geckodriver::marionette INFO Connecting to Marionette on localhost:46468 | |
(firefox:1699): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382435783 addons.manager DEBUG Application has been upgraded | |
1480382435802 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382435804 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382435809 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382435811 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382435812 addons.manager DEBUG Starting provider: XPIProvider | |
1480382435812 addons.xpi DEBUG startup | |
1480382435813 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382435814 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382435814 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382435815 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382435815 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382435816 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382435816 addons.xpi DEBUG checkForChanges | |
1480382435817 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382435818 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382435819 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435820 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382435820 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435821 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382435821 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435822 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382435822 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435822 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382435823 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382435824 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382435832 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.yGbEusQ1AqVJ/extensions.json | |
1480382435833 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382435845 DeferredSave.extensions.json DEBUG Save changes | |
1480382435846 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382435848 DeferredSave.extensions.json DEBUG Starting timer | |
1480382435850 DeferredSave.extensions.json DEBUG Save changes | |
1480382435850 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382435855 DeferredSave.extensions.json DEBUG Save changes | |
1480382435856 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382435860 DeferredSave.extensions.json DEBUG Save changes | |
1480382435861 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382435865 DeferredSave.extensions.json DEBUG Save changes | |
1480382435866 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382435873 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382435888 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382435889 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382435889 DeferredSave.extensions.json DEBUG Save changes | |
1480382435890 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382435890 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382435894 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382435894 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382435894 DeferredSave.extensions.json DEBUG Save changes | |
1480382435894 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382435895 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382435898 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382435900 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382435900 DeferredSave.extensions.json DEBUG Save changes | |
1480382435900 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382435901 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382435902 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382435902 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382435903 DeferredSave.extensions.json DEBUG Save changes | |
1480382435903 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382435903 DeferredSave.extensions.json DEBUG Save changes | |
1480382435904 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3737df60-1d77-46ec-b083-8f0418bdd081}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382435904 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435904 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2a3291dd-14f1-4c87-829b-eedef46f85dd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382435904 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435905 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d7588054-4ef2-4a19-9bcc-8cb7d19f4c19}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382435905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435905 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{13c87939-1bf8-4a65-aeca-ac0c25cf9215}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382435905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382435906 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{986f807a-f332-4839-a5d1-6f76d802af2b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382435906 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382435907 DeferredSave.extensions.json DEBUG Save changes | |
1480382435907 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382435907 addons.xpi-utils DEBUG Updating add-on states | |
1480382435908 addons.xpi-utils DEBUG Writing add-ons list | |
1480382435909 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382435909 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382435911 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382435911 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382435912 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382435912 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382435912 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382435913 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382435915 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382435915 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382435915 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382435915 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382435916 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382435916 addons.manager DEBUG Starting provider: GMPProvider | |
1480382435924 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382435924 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382435924 addons.manager DEBUG Starting provider: PluginProvider | |
1480382435924 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382435925 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382435925 addons.manager DEBUG Completed startup sequence | |
1480382436106 Marionette INFO Listening on port 46468 | |
1480382436295 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382436295 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382436296 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382436311 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382436312 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382436313 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382436319 DeferredSave.extensions.json DEBUG Starting write | |
1480382436451 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382436451 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1773): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1773): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1773): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1773): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1699): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1699): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f77d74ea2e0' of type 'MaiAtkType13b' | |
(firefox:1699): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1699): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f77d89eb330' of type 'MaiAtkType13b' | |
(firefox:1699): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f77e2e25420' of type 'MaiAtkType13b' | |
[Child 1773] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1773] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1773] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382458681 geckodriver INFO Listening on 127.0.0.1:50631 | |
1480382459681 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.ewnAfNvEhnoX | |
1480382459683 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382459685 geckodriver::marionette INFO Connecting to Marionette on localhost:58168 | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382459929 addons.manager DEBUG Application has been upgraded | |
1480382459950 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382459953 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382459958 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382459960 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382459961 addons.manager DEBUG Starting provider: XPIProvider | |
1480382459961 addons.xpi DEBUG startup | |
1480382459962 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382459963 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382459963 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382459963 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382459964 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382459964 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382459965 addons.xpi DEBUG checkForChanges | |
1480382459966 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382459967 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382459967 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382459968 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382459969 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382459969 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382459969 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382459970 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382459970 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382459971 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382459971 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382459972 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382459980 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.ewnAfNvEhnoX/extensions.json | |
1480382459981 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382459992 DeferredSave.extensions.json DEBUG Save changes | |
1480382459992 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382459995 DeferredSave.extensions.json DEBUG Starting timer | |
1480382459996 DeferredSave.extensions.json DEBUG Save changes | |
1480382459996 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382460002 DeferredSave.extensions.json DEBUG Save changes | |
1480382460002 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382460006 DeferredSave.extensions.json DEBUG Save changes | |
1480382460007 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382460011 DeferredSave.extensions.json DEBUG Save changes | |
1480382460011 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382460018 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382460032 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382460032 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382460032 DeferredSave.extensions.json DEBUG Save changes | |
1480382460033 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382460034 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382460037 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382460037 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382460037 DeferredSave.extensions.json DEBUG Save changes | |
1480382460037 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382460038 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382460040 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382460042 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382460042 DeferredSave.extensions.json DEBUG Save changes | |
1480382460042 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382460043 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382460044 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382460044 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382460045 DeferredSave.extensions.json DEBUG Save changes | |
1480382460045 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382460045 DeferredSave.extensions.json DEBUG Save changes | |
1480382460045 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{20384152-a51b-4c90-aebd-f1f32b20330d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382460045 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382460046 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{892b703d-dcb3-41ca-9bba-53b7e5af497c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382460046 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382460046 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d47c4a65-9a88-4e0a-9114-9e2966e7de95}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382460046 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382460047 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4d1cda4e-517b-43a6-99fc-7d2d626c9107}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382460047 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382460047 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f132b369-6879-4852-a885-8203761a087b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382460047 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382460048 DeferredSave.extensions.json DEBUG Save changes | |
1480382460049 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382460049 addons.xpi-utils DEBUG Updating add-on states | |
1480382460049 addons.xpi-utils DEBUG Writing add-ons list | |
1480382460050 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382460050 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382460052 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382460052 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382460053 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382460053 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382460053 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382460054 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382460056 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382460056 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382460056 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382460056 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382460056 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382460057 addons.manager DEBUG Starting provider: GMPProvider | |
1480382460064 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382460064 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382460064 addons.manager DEBUG Starting provider: PluginProvider | |
1480382460064 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382460065 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382460065 addons.manager DEBUG Completed startup sequence | |
1480382460237 Marionette INFO Listening on port 58168 | |
1480382460542 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382460542 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382460543 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382460561 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382460561 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382460563 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382460565 DeferredSave.extensions.json DEBUG Starting write | |
1480382460696 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382460699 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2185): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2185): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2185): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2185): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f2264cbaa10' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f226cfd4100' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f22632f9380' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f22656ea970' of type 'MaiAtkType13b' | |
[Child 2185] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2185] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2185] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382490826 geckodriver INFO Listening on 127.0.0.1:40337 | |
1480382492183 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.2qW9sftIuGbT | |
1480382492185 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382492422 geckodriver::marionette INFO Connecting to Marionette on localhost:55635 | |
(firefox:2625): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382493512 addons.manager DEBUG Application has been upgraded | |
1480382493531 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382493533 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382493537 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382493539 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382493540 addons.manager DEBUG Starting provider: XPIProvider | |
1480382493541 addons.xpi DEBUG startup | |
1480382493541 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382493542 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382493543 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382493543 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382493543 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382493544 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382493544 addons.xpi DEBUG checkForChanges | |
1480382493545 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382493546 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382493547 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493548 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382493548 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493548 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382493549 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493549 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382493550 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493550 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382493551 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382493551 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382493559 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.2qW9sftIuGbT/extensions.json | |
1480382493560 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382493571 DeferredSave.extensions.json DEBUG Save changes | |
1480382493572 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382493574 DeferredSave.extensions.json DEBUG Starting timer | |
1480382493576 DeferredSave.extensions.json DEBUG Save changes | |
1480382493576 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382493581 DeferredSave.extensions.json DEBUG Save changes | |
1480382493581 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382493585 DeferredSave.extensions.json DEBUG Save changes | |
1480382493586 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382493591 DeferredSave.extensions.json DEBUG Save changes | |
1480382493591 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382493598 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382493612 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382493612 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382493612 DeferredSave.extensions.json DEBUG Save changes | |
1480382493613 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382493614 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382493617 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382493617 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382493617 DeferredSave.extensions.json DEBUG Save changes | |
1480382493618 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382493619 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382493621 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382493623 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382493623 DeferredSave.extensions.json DEBUG Save changes | |
1480382493623 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382493624 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382493625 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382493625 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382493625 DeferredSave.extensions.json DEBUG Save changes | |
1480382493625 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382493626 DeferredSave.extensions.json DEBUG Save changes | |
1480382493626 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b9cf7abd-7dad-4448-8ff8-86660dd0478b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382493626 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493627 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f9ee3f2a-017a-435f-b9d9-23843aad1faf}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382493627 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493627 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{32d48a62-1e07-4259-963d-62e2bbc4ab74}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382493627 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493628 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{52014c16-1177-4f1d-8c26-c173c9309649}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382493628 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382493628 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{7cf72a96-0a90-4e23-8fc8-ef6c58f5b032}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382493628 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382493629 DeferredSave.extensions.json DEBUG Save changes | |
1480382493629 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382493629 addons.xpi-utils DEBUG Updating add-on states | |
1480382493630 addons.xpi-utils DEBUG Writing add-ons list | |
1480382493631 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382493631 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382493633 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382493633 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382493633 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382493634 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382493634 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382493634 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382493636 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382493637 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382493637 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382493637 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382493637 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382493637 addons.manager DEBUG Starting provider: GMPProvider | |
1480382493644 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382493645 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382493645 addons.manager DEBUG Starting provider: PluginProvider | |
1480382493645 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382493645 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382493645 addons.manager DEBUG Completed startup sequence | |
1480382493908 Marionette INFO Listening on port 55635 | |
1480382494265 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382494265 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382494265 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382494281 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382494281 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382494282 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382494286 DeferredSave.extensions.json DEBUG Starting write | |
1480382494440 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382494440 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2625): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f684fa886a0' of type 'MaiAtkType13b' | |
(firefox:2625): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f685d7a71a0' of type 'MaiAtkType13b' | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f684fa88880' of type 'MaiAtkType13b' | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f68529ec2e0' of type 'MaiAtkType139' | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f684fc087e0' of type 'MaiAtkType13b' | |
(firefox:2625): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f684fc5df60' of type 'MaiAtkType139' | |
[Child 2710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382525514 geckodriver INFO Listening on 127.0.0.1:41156 | |
1480382526514 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.TqxAAtOGZUyq | |
1480382526516 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382526793 geckodriver::marionette INFO Connecting to Marionette on localhost:46804 | |
(firefox:3312): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382528016 addons.manager DEBUG Application has been upgraded | |
1480382528036 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382528038 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382528044 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382528046 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382528048 addons.manager DEBUG Starting provider: XPIProvider | |
1480382528048 addons.xpi DEBUG startup | |
1480382528049 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382528050 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382528051 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382528051 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382528052 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382528052 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382528053 addons.xpi DEBUG checkForChanges | |
1480382528054 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382528055 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382528056 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528057 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382528058 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528058 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382528059 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528059 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382528060 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528060 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382528061 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382528062 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382528070 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.TqxAAtOGZUyq/extensions.json | |
1480382528071 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382528082 DeferredSave.extensions.json DEBUG Save changes | |
1480382528083 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382528085 DeferredSave.extensions.json DEBUG Starting timer | |
1480382528086 DeferredSave.extensions.json DEBUG Save changes | |
1480382528087 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382528091 DeferredSave.extensions.json DEBUG Save changes | |
1480382528092 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382528096 DeferredSave.extensions.json DEBUG Save changes | |
1480382528097 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382528101 DeferredSave.extensions.json DEBUG Save changes | |
1480382528102 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382528108 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382528123 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382528123 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382528123 DeferredSave.extensions.json DEBUG Save changes | |
1480382528124 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382528124 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382528127 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382528127 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382528128 DeferredSave.extensions.json DEBUG Save changes | |
1480382528128 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382528129 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382528131 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382528133 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382528133 DeferredSave.extensions.json DEBUG Save changes | |
1480382528133 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382528134 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382528135 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382528135 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382528135 DeferredSave.extensions.json DEBUG Save changes | |
1480382528136 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382528136 DeferredSave.extensions.json DEBUG Save changes | |
1480382528136 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{27042f45-48d8-4ec0-94ac-ab3b1742e554}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382528136 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528137 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c775586f-be9f-4224-9624-8edaa12fc85b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382528137 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528137 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{123a2f8c-4736-4225-bfad-70d450c7a861}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382528137 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528138 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b4ff4e4b-001f-4976-9799-8a9941faa932}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382528138 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382528138 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{a006e217-6231-432a-892c-10d089f7c3ba}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382528138 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382528140 DeferredSave.extensions.json DEBUG Save changes | |
1480382528140 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382528140 addons.xpi-utils DEBUG Updating add-on states | |
1480382528140 addons.xpi-utils DEBUG Writing add-ons list | |
1480382528141 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382528142 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382528143 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382528143 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382528144 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382528144 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382528144 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382528145 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382528147 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382528147 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382528147 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382528147 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382528147 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382528148 addons.manager DEBUG Starting provider: GMPProvider | |
1480382528155 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382528155 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382528155 addons.manager DEBUG Starting provider: PluginProvider | |
1480382528155 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382528155 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382528156 addons.manager DEBUG Completed startup sequence | |
1480382528378 Marionette INFO Listening on port 46804 | |
1480382528764 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382528765 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382528765 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382528781 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382528781 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382528783 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382528787 DeferredSave.extensions.json DEBUG Starting write | |
1480382528930 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382528931 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3403): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3403): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3403): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3403): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3312): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3312): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fb450cf89c0' of type 'MaiAtkType13b' | |
(firefox:3312): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3312): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fb44eb09dd0' of type 'MaiAtkType13b' | |
(firefox:3312): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fb44fa09ba0' of type 'MaiAtkType13b' | |
[Child 3403] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3403] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3403] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480382562237 geckodriver INFO Listening on 127.0.0.1:53784 | |
1480382563236 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.fgE8kSgsy2oA | |
1480382563238 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480382563241 geckodriver::marionette INFO Connecting to Marionette on localhost:35834 | |
(firefox:4045): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480382563987 addons.manager DEBUG Application has been upgraded | |
1480382564005 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480382564007 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480382564012 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480382564014 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480382564015 addons.manager DEBUG Starting provider: XPIProvider | |
1480382564015 addons.xpi DEBUG startup | |
1480382564016 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480382564017 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382564017 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382564017 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382564018 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480382564018 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480382564019 addons.xpi DEBUG checkForChanges | |
1480382564019 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480382564020 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382564021 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564022 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382564022 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564023 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382564023 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564024 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480382564024 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564024 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480382564025 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382564025 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480382564033 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.fgE8kSgsy2oA/extensions.json | |
1480382564034 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480382564049 DeferredSave.extensions.json DEBUG Save changes | |
1480382564049 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382564052 DeferredSave.extensions.json DEBUG Starting timer | |
1480382564053 DeferredSave.extensions.json DEBUG Save changes | |
1480382564053 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382564059 DeferredSave.extensions.json DEBUG Save changes | |
1480382564059 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480382564064 DeferredSave.extensions.json DEBUG Save changes | |
1480382564065 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480382564070 DeferredSave.extensions.json DEBUG Save changes | |
1480382564070 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382564076 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382564090 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480382564090 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382564090 DeferredSave.extensions.json DEBUG Save changes | |
1480382564091 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382564092 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382564095 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382564095 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382564095 DeferredSave.extensions.json DEBUG Save changes | |
1480382564095 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382564096 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382564099 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480382564100 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382564100 DeferredSave.extensions.json DEBUG Save changes | |
1480382564101 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480382564101 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480382564103 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480382564103 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480382564103 DeferredSave.extensions.json DEBUG Save changes | |
1480382564103 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480382564103 DeferredSave.extensions.json DEBUG Save changes | |
1480382564104 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1e63f60d-d402-4fb7-8634-7567de6aac9c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382564104 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564104 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b960d994-f40f-42c8-be87-7aeb931b08bf}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480382564104 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564105 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a9809aff-3d9e-4f7d-a8d3-598b1f874002}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382564105 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564105 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1abe3473-ed32-47fe-9b83-4cbaeb724abf}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480382564105 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480382564106 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0f3c750a-c473-49ee-a27f-3e63074ca465}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480382564106 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480382564107 DeferredSave.extensions.json DEBUG Save changes | |
1480382564107 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480382564107 addons.xpi-utils DEBUG Updating add-on states | |
1480382564108 addons.xpi-utils DEBUG Writing add-ons list | |
1480382564109 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382564109 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480382564111 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382564111 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382564111 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382564112 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480382564112 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480382564112 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480382564114 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480382564115 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480382564115 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480382564115 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480382564115 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480382564115 addons.manager DEBUG Starting provider: GMPProvider | |
1480382564123 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480382564123 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480382564123 addons.manager DEBUG Starting provider: PluginProvider | |
1480382564123 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480382564124 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480382564124 addons.manager DEBUG Completed startup sequence | |
1480382565168 Marionette INFO Listening on port 35834 | |
1480382565584 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480382565584 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480382565584 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480382565601 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480382565602 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480382565603 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480382565606 DeferredSave.extensions.json DEBUG Starting write | |
1480382565761 DeferredSave.extensions.json DEBUG Write succeeded | |
1480382565762 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4124): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4124): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4124): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4124): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4045): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4124] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4124] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384243392 geckodriver INFO Listening on 127.0.0.1:35978 | |
1480384244397 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.KIlqHR7jqLn6 | |
1480384244411 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384244442 geckodriver::marionette INFO Connecting to Marionette on localhost:57849 | |
(firefox:948): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384244725 addons.manager DEBUG Application has been upgraded | |
1480384244744 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384244746 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384244751 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384244753 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384244754 addons.manager DEBUG Starting provider: XPIProvider | |
1480384244754 addons.xpi DEBUG startup | |
1480384244755 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384244756 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384244756 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384244756 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384244757 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384244757 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384244758 addons.xpi DEBUG checkForChanges | |
1480384244758 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384244759 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384244760 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244761 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384244761 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244762 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384244762 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244763 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384244763 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244763 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384244764 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384244764 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384244772 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.KIlqHR7jqLn6/extensions.json | |
1480384244773 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384244785 DeferredSave.extensions.json DEBUG Save changes | |
1480384244785 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384244788 DeferredSave.extensions.json DEBUG Starting timer | |
1480384244789 DeferredSave.extensions.json DEBUG Save changes | |
1480384244789 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384244794 DeferredSave.extensions.json DEBUG Save changes | |
1480384244794 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384244799 DeferredSave.extensions.json DEBUG Save changes | |
1480384244800 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384244803 DeferredSave.extensions.json DEBUG Save changes | |
1480384244804 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384244810 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384244824 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384244824 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384244824 DeferredSave.extensions.json DEBUG Save changes | |
1480384244825 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384244826 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384244829 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384244829 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384244829 DeferredSave.extensions.json DEBUG Save changes | |
1480384244829 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384244830 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384244833 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384244834 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384244834 DeferredSave.extensions.json DEBUG Save changes | |
1480384244834 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384244835 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384244836 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384244836 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384244837 DeferredSave.extensions.json DEBUG Save changes | |
1480384244837 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384244837 DeferredSave.extensions.json DEBUG Save changes | |
1480384244837 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{bc531e04-fcf6-4ba0-87b7-f74ae1c189b4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384244838 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244838 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{bfda5496-033c-486e-8b75-f97c739281aa}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384244838 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244838 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9abdb5e5-5782-4904-aa33-efc869164997}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384244839 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244839 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{95776604-6bc8-446c-b82f-9fca24a04d04}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384244839 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384244839 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{104080ea-97c4-48db-9dc0-de3a6c7fb7d1}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384244839 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384244841 DeferredSave.extensions.json DEBUG Save changes | |
1480384244841 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384244841 addons.xpi-utils DEBUG Updating add-on states | |
1480384244841 addons.xpi-utils DEBUG Writing add-ons list | |
1480384244842 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384244843 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384244844 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384244844 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384244845 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384244845 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384244845 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384244846 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384244848 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384244848 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384244848 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384244848 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384244848 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384244849 addons.manager DEBUG Starting provider: GMPProvider | |
1480384244856 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384244856 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384244856 addons.manager DEBUG Starting provider: PluginProvider | |
1480384244856 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384244857 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384244857 addons.manager DEBUG Completed startup sequence | |
1480384245039 Marionette INFO Listening on port 57849 | |
1480384245240 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384245240 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384245240 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384245255 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384245256 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384245257 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384245261 DeferredSave.extensions.json DEBUG Starting write | |
1480384245395 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384245396 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1065): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1065): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1065): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1065): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:948): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:948): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f870caec920' of type 'MaiAtkType13b' | |
(firefox:948): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:948): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f870d939510' of type 'MaiAtkType13b' | |
(firefox:948): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8701927560' of type 'MaiAtkType13b' | |
[Child 1065] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1065] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1065] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384253360 geckodriver INFO Listening on 127.0.0.1:56149 | |
1480384254360 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.uqtrZ94QQ1XO | |
1480384254362 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384254365 geckodriver::marionette INFO Connecting to Marionette on localhost:34011 | |
(firefox:1341): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384254562 addons.manager DEBUG Application has been upgraded | |
1480384254580 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384254582 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384254586 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384254588 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384254589 addons.manager DEBUG Starting provider: XPIProvider | |
1480384254590 addons.xpi DEBUG startup | |
1480384254590 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384254591 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384254592 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384254592 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384254592 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384254593 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384254593 addons.xpi DEBUG checkForChanges | |
1480384254594 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384254595 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384254596 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254597 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384254597 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254597 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384254598 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254598 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384254599 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254599 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384254600 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384254600 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384254608 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.uqtrZ94QQ1XO/extensions.json | |
1480384254609 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384254619 DeferredSave.extensions.json DEBUG Save changes | |
1480384254620 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384254622 DeferredSave.extensions.json DEBUG Starting timer | |
1480384254624 DeferredSave.extensions.json DEBUG Save changes | |
1480384254624 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384254629 DeferredSave.extensions.json DEBUG Save changes | |
1480384254629 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384254633 DeferredSave.extensions.json DEBUG Save changes | |
1480384254634 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384254638 DeferredSave.extensions.json DEBUG Save changes | |
1480384254638 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384254645 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384254658 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384254658 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384254659 DeferredSave.extensions.json DEBUG Save changes | |
1480384254660 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384254660 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384254663 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384254663 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384254664 DeferredSave.extensions.json DEBUG Save changes | |
1480384254664 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384254665 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384254667 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384254668 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384254669 DeferredSave.extensions.json DEBUG Save changes | |
1480384254669 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384254670 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384254671 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384254671 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384254671 DeferredSave.extensions.json DEBUG Save changes | |
1480384254671 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384254672 DeferredSave.extensions.json DEBUG Save changes | |
1480384254672 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{29a69625-a2fa-49a9-a25c-cc184f376f05}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384254672 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254673 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{23a29f2a-15df-4600-9290-f5c9488b3bab}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384254673 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254673 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f3e15452-87ac-4f85-909c-f7f6c778605e}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384254673 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254674 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b6edaa5d-63eb-47e4-a9dd-a4b286e28135}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384254674 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384254674 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{5d5a7dfd-86bd-4cc0-a61b-aadb88aad4de}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384254674 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384254675 DeferredSave.extensions.json DEBUG Save changes | |
1480384254675 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384254675 addons.xpi-utils DEBUG Updating add-on states | |
1480384254676 addons.xpi-utils DEBUG Writing add-ons list | |
1480384254677 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384254677 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384254679 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384254679 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384254679 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384254680 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384254680 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384254680 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384254682 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384254683 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384254683 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384254683 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384254683 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384254683 addons.manager DEBUG Starting provider: GMPProvider | |
1480384254690 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384254691 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384254691 addons.manager DEBUG Starting provider: PluginProvider | |
1480384254691 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384254691 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384254691 addons.manager DEBUG Completed startup sequence | |
1480384254856 Marionette INFO Listening on port 34011 | |
1480384255050 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384255050 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384255050 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384255066 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384255067 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384255068 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384255071 DeferredSave.extensions.json DEBUG Starting write | |
1480384255211 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384255212 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1411): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1411): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1411): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1411): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1341): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1341): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fdf252719c0' of type 'MaiAtkType13b' | |
(firefox:1341): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1341): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fdf252e78d0' of type 'MaiAtkType13b' | |
(firefox:1341): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fdf292c4330' of type 'MaiAtkType13b' | |
(firefox:1341): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fdf2527fab0' of type 'MaiAtkType13b' | |
[Child 1411] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1411] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1411] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384264123 geckodriver INFO Listening on 127.0.0.1:50966 | |
1480384265120 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Qd69ptp4zQHm | |
1480384265122 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384265125 geckodriver::marionette INFO Connecting to Marionette on localhost:50490 | |
(firefox:1701): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384265345 addons.manager DEBUG Application has been upgraded | |
1480384265362 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384265364 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384265369 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384265371 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384265372 addons.manager DEBUG Starting provider: XPIProvider | |
1480384265372 addons.xpi DEBUG startup | |
1480384265373 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384265374 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384265374 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384265374 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384265375 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384265375 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384265376 addons.xpi DEBUG checkForChanges | |
1480384265376 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384265377 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384265378 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265379 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384265379 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265380 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384265380 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265381 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384265381 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265381 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384265382 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384265382 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384265390 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Qd69ptp4zQHm/extensions.json | |
1480384265391 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384265402 DeferredSave.extensions.json DEBUG Save changes | |
1480384265402 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384265405 DeferredSave.extensions.json DEBUG Starting timer | |
1480384265406 DeferredSave.extensions.json DEBUG Save changes | |
1480384265406 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384265411 DeferredSave.extensions.json DEBUG Save changes | |
1480384265411 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384265416 DeferredSave.extensions.json DEBUG Save changes | |
1480384265417 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384265420 DeferredSave.extensions.json DEBUG Save changes | |
1480384265421 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384265427 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384265441 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384265441 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384265441 DeferredSave.extensions.json DEBUG Save changes | |
1480384265442 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384265442 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384265445 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384265445 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384265446 DeferredSave.extensions.json DEBUG Save changes | |
1480384265446 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384265447 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384265449 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384265451 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384265451 DeferredSave.extensions.json DEBUG Save changes | |
1480384265451 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384265452 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384265453 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384265453 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384265453 DeferredSave.extensions.json DEBUG Save changes | |
1480384265454 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384265454 DeferredSave.extensions.json DEBUG Save changes | |
1480384265454 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{cd4bbae7-1c94-445b-9d5a-3e0817f72206}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384265454 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265455 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f8a6c962-a58a-4ec8-9639-8c4e036f5ab0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384265455 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265455 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9310965a-235f-4a87-91fb-724da761eadb}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384265455 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265456 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0300cebc-2520-4689-b227-fc9cb5270ffa}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384265456 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384265456 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{923fe82f-7949-4f44-9f11-9fc589ab32dc}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384265456 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384265457 DeferredSave.extensions.json DEBUG Save changes | |
1480384265458 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384265458 addons.xpi-utils DEBUG Updating add-on states | |
1480384265458 addons.xpi-utils DEBUG Writing add-ons list | |
1480384265459 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384265459 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384265461 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384265461 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384265462 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384265462 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384265462 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384265463 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384265465 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384265465 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384265465 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384265465 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384265465 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384265466 addons.manager DEBUG Starting provider: GMPProvider | |
1480384265473 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384265473 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384265473 addons.manager DEBUG Starting provider: PluginProvider | |
1480384265473 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384265473 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384265474 addons.manager DEBUG Completed startup sequence | |
1480384265639 Marionette INFO Listening on port 50490 | |
1480384265815 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384265815 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384265816 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384265832 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384265833 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384265834 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384265839 DeferredSave.extensions.json DEBUG Starting write | |
1480384265993 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384265994 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1774): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1774): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1774): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1774): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1701): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1701): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7959cef600' of type 'MaiAtkType13b' | |
(firefox:1701): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1701): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f795a69e830' of type 'MaiAtkType13b' | |
(firefox:1701): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7965b53290' of type 'MaiAtkType13b' | |
[Child 1774] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1774] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1774] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384288216 geckodriver INFO Listening on 127.0.0.1:35844 | |
1480384289215 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5r1kHApZozB0 | |
1480384289702 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384289704 geckodriver::marionette INFO Connecting to Marionette on localhost:47690 | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384290456 addons.manager DEBUG Application has been upgraded | |
1480384290474 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384290476 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384290481 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384290483 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384290484 addons.manager DEBUG Starting provider: XPIProvider | |
1480384290484 addons.xpi DEBUG startup | |
1480384290485 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384290486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384290486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384290487 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384290487 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384290488 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384290488 addons.xpi DEBUG checkForChanges | |
1480384290489 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384290490 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384290491 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290491 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384290492 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290492 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384290493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290493 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384290493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290494 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384290495 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384290495 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384290504 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.5r1kHApZozB0/extensions.json | |
1480384290505 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384290516 DeferredSave.extensions.json DEBUG Save changes | |
1480384290516 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384290518 DeferredSave.extensions.json DEBUG Starting timer | |
1480384290520 DeferredSave.extensions.json DEBUG Save changes | |
1480384290520 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384290525 DeferredSave.extensions.json DEBUG Save changes | |
1480384290525 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384290530 DeferredSave.extensions.json DEBUG Save changes | |
1480384290531 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384290534 DeferredSave.extensions.json DEBUG Save changes | |
1480384290535 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384290542 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384290557 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384290557 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384290557 DeferredSave.extensions.json DEBUG Save changes | |
1480384290558 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384290559 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384290562 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384290562 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384290563 DeferredSave.extensions.json DEBUG Save changes | |
1480384290563 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384290564 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384290566 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384290568 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384290568 DeferredSave.extensions.json DEBUG Save changes | |
1480384290568 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384290569 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384290570 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384290570 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384290571 DeferredSave.extensions.json DEBUG Save changes | |
1480384290571 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384290571 DeferredSave.extensions.json DEBUG Save changes | |
1480384290572 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1bd138e8-0cc0-4433-8f99-f1eb51b3db7d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384290572 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290572 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{65906449-094c-43c6-a785-4a51e0cc5d8f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384290572 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290573 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{565e11eb-5efb-498b-9248-710cf2a8807b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384290573 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290573 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{35ccab23-cefc-4c83-b37e-1dc8b981ab9d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384290573 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384290574 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4b86147f-d21b-45d8-8996-c2e7cba4fc26}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384290574 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384290575 DeferredSave.extensions.json DEBUG Save changes | |
1480384290575 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384290575 addons.xpi-utils DEBUG Updating add-on states | |
1480384290576 addons.xpi-utils DEBUG Writing add-ons list | |
1480384290577 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384290577 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384290579 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384290579 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384290580 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384290580 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384290580 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384290581 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384290583 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384290583 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384290583 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384290583 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384290583 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384290584 addons.manager DEBUG Starting provider: GMPProvider | |
1480384290591 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384290592 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384290592 addons.manager DEBUG Starting provider: PluginProvider | |
1480384290592 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384290592 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384290592 addons.manager DEBUG Completed startup sequence | |
1480384290771 Marionette INFO Listening on port 47690 | |
1480384290990 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384290990 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384290991 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384291008 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384291008 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384291010 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384291015 DeferredSave.extensions.json DEBUG Starting write | |
1480384291156 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384291157 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2179): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2179): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2179): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2179): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12071d4a60' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1208fbd920' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f11fdffdf10' of type 'MaiAtkType13b' | |
(firefox:2102): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12009220b0' of type 'MaiAtkType13b' | |
[Child 2179] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2179] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2179] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384320728 geckodriver INFO Listening on 127.0.0.1:35247 | |
1480384321727 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.BsSoq9NO6zlV | |
1480384321729 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384322325 geckodriver::marionette INFO Connecting to Marionette on localhost:35870 | |
(firefox:2609): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384323094 addons.manager DEBUG Application has been upgraded | |
1480384323112 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384323115 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384323119 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384323121 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384323122 addons.manager DEBUG Starting provider: XPIProvider | |
1480384323123 addons.xpi DEBUG startup | |
1480384323123 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384323124 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384323124 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384323125 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384323125 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384323126 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384323126 addons.xpi DEBUG checkForChanges | |
1480384323127 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384323128 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384323129 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323130 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384323130 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323130 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384323131 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323132 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384323132 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323133 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384323133 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384323134 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384323142 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.BsSoq9NO6zlV/extensions.json | |
1480384323143 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384323154 DeferredSave.extensions.json DEBUG Save changes | |
1480384323154 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384323157 DeferredSave.extensions.json DEBUG Starting timer | |
1480384323158 DeferredSave.extensions.json DEBUG Save changes | |
1480384323158 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384323163 DeferredSave.extensions.json DEBUG Save changes | |
1480384323163 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384323168 DeferredSave.extensions.json DEBUG Save changes | |
1480384323169 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384323173 DeferredSave.extensions.json DEBUG Save changes | |
1480384323174 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384323182 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384323196 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384323196 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384323196 DeferredSave.extensions.json DEBUG Save changes | |
1480384323197 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384323198 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384323201 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384323201 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384323201 DeferredSave.extensions.json DEBUG Save changes | |
1480384323201 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384323202 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384323204 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384323206 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384323206 DeferredSave.extensions.json DEBUG Save changes | |
1480384323206 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384323207 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384323208 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384323208 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384323209 DeferredSave.extensions.json DEBUG Save changes | |
1480384323209 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384323209 DeferredSave.extensions.json DEBUG Save changes | |
1480384323209 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{20a647fe-77b9-4cde-9f36-d2a65d5d934c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384323209 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323210 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b59e8640-a59f-4e00-97e0-c7ca2c97ee4b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384323210 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323210 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{007ddf6c-eb3c-4e2a-95ba-2b2bfed92f14}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384323210 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323211 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9905fc8f-8f67-42f8-9c01-0c1e1529486a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384323211 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384323211 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c55b552c-1766-4e76-a09c-ba491c1bef37}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384323211 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384323213 DeferredSave.extensions.json DEBUG Save changes | |
1480384323213 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384323213 addons.xpi-utils DEBUG Updating add-on states | |
1480384323213 addons.xpi-utils DEBUG Writing add-ons list | |
1480384323214 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384323215 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384323216 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384323216 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384323217 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384323217 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384323217 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384323218 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384323220 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384323220 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384323220 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384323220 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384323220 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384323221 addons.manager DEBUG Starting provider: GMPProvider | |
1480384323228 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384323228 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384323228 addons.manager DEBUG Starting provider: PluginProvider | |
1480384323228 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384323229 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384323229 addons.manager DEBUG Completed startup sequence | |
1480384323465 Marionette INFO Listening on port 35870 | |
1480384323818 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384323818 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384323818 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384323833 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384323833 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384323835 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384323837 DeferredSave.extensions.json DEBUG Starting write | |
1480384323959 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384323960 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2684): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2684): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2684): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2684): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2609): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 2684] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2684] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384558537 geckodriver INFO Listening on 127.0.0.1:38503 | |
1480384559545 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.oI0dODDTwoQs | |
1480384559547 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384559574 geckodriver::marionette INFO Connecting to Marionette on localhost:59330 | |
(firefox:933): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384559919 addons.manager DEBUG Application has been upgraded | |
1480384559940 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384559942 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384559946 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384559949 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384559950 addons.manager DEBUG Starting provider: XPIProvider | |
1480384559950 addons.xpi DEBUG startup | |
1480384559951 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384559952 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384559952 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384559953 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384559953 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384559954 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384559954 addons.xpi DEBUG checkForChanges | |
1480384559955 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384559956 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384559957 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384559958 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384559958 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384559959 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384559959 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384559960 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384559960 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384559960 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384559961 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384559961 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384559970 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.oI0dODDTwoQs/extensions.json | |
1480384559971 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384559984 DeferredSave.extensions.json DEBUG Save changes | |
1480384559984 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384559987 DeferredSave.extensions.json DEBUG Starting timer | |
1480384559988 DeferredSave.extensions.json DEBUG Save changes | |
1480384559989 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384559994 DeferredSave.extensions.json DEBUG Save changes | |
1480384559994 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384559999 DeferredSave.extensions.json DEBUG Save changes | |
1480384560000 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384560004 DeferredSave.extensions.json DEBUG Save changes | |
1480384560005 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384560012 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384560026 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384560026 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384560027 DeferredSave.extensions.json DEBUG Save changes | |
1480384560028 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384560028 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384560031 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384560032 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384560032 DeferredSave.extensions.json DEBUG Save changes | |
1480384560032 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384560033 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384560036 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384560037 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384560037 DeferredSave.extensions.json DEBUG Save changes | |
1480384560038 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384560038 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384560040 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384560040 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384560040 DeferredSave.extensions.json DEBUG Save changes | |
1480384560040 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384560041 DeferredSave.extensions.json DEBUG Save changes | |
1480384560041 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e9415287-72b5-4a42-8285-3c02dc535016}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384560041 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384560042 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6383e999-fceb-4f22-b159-51843efca5b5}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384560042 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384560042 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ae2b36b9-ea40-4aef-af67-2112deb65b34}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384560042 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384560043 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{355ffab6-d977-413f-9c77-804eef59ee34}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384560043 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384560043 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{da415985-b346-4868-9a7d-54460bb08963}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384560043 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384560044 DeferredSave.extensions.json DEBUG Save changes | |
1480384560045 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384560045 addons.xpi-utils DEBUG Updating add-on states | |
1480384560045 addons.xpi-utils DEBUG Writing add-ons list | |
1480384560046 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384560047 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384560048 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384560048 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384560049 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384560049 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384560050 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384560050 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384560052 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384560053 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384560053 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384560053 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384560053 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384560053 addons.manager DEBUG Starting provider: GMPProvider | |
1480384560061 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384560062 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384560062 addons.manager DEBUG Starting provider: PluginProvider | |
1480384560062 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384560062 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384560063 addons.manager DEBUG Completed startup sequence | |
1480384560255 Marionette INFO Listening on port 59330 | |
1480384560478 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384560478 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384560478 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384560494 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384560494 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384560496 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384560500 DeferredSave.extensions.json DEBUG Starting write | |
1480384560649 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384560650 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1056): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1056): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1056): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1056): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:933): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:933): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efdc4e61420' of type 'MaiAtkType13b' | |
(firefox:933): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:933): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efdc6fb6150' of type 'MaiAtkType13b' | |
(firefox:933): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efddbac9c90' of type 'MaiAtkType13b' | |
[Child 1056] WARNING: pipe error (26): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1056] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1056] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1056] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384568777 geckodriver INFO Listening on 127.0.0.1:38170 | |
1480384569777 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.QdTDKkyAnWX9 | |
1480384569779 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384569782 geckodriver::marionette INFO Connecting to Marionette on localhost:39536 | |
(firefox:1337): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384569971 addons.manager DEBUG Application has been upgraded | |
1480384569989 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384569991 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384569995 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384569997 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384569998 addons.manager DEBUG Starting provider: XPIProvider | |
1480384569999 addons.xpi DEBUG startup | |
1480384569999 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384570000 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384570001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384570001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384570001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384570002 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384570002 addons.xpi DEBUG checkForChanges | |
1480384570003 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384570004 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384570005 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570006 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384570006 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570006 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384570007 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570008 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384570008 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570008 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384570009 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384570009 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384570017 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.QdTDKkyAnWX9/extensions.json | |
1480384570018 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384570029 DeferredSave.extensions.json DEBUG Save changes | |
1480384570029 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384570032 DeferredSave.extensions.json DEBUG Starting timer | |
1480384570034 DeferredSave.extensions.json DEBUG Save changes | |
1480384570034 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384570039 DeferredSave.extensions.json DEBUG Save changes | |
1480384570039 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384570043 DeferredSave.extensions.json DEBUG Save changes | |
1480384570045 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384570048 DeferredSave.extensions.json DEBUG Save changes | |
1480384570049 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384570055 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384570074 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384570074 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384570075 DeferredSave.extensions.json DEBUG Save changes | |
1480384570077 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384570077 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384570081 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384570081 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384570081 DeferredSave.extensions.json DEBUG Save changes | |
1480384570081 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384570082 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384570085 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384570086 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384570087 DeferredSave.extensions.json DEBUG Save changes | |
1480384570087 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384570088 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384570089 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384570089 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384570090 DeferredSave.extensions.json DEBUG Save changes | |
1480384570090 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384570090 DeferredSave.extensions.json DEBUG Save changes | |
1480384570091 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4b8ff387-fbf6-4b66-bced-5813d13d81c8}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384570091 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570091 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ac1c5ca2-587e-4dba-822e-04e30d1717af}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384570091 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570092 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1619ff0c-b351-45ed-ba7f-975eaa2d0d20}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384570092 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570093 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f3303c69-c176-4786-a352-0ac53f7ba112}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384570093 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384570093 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{d5f8ead9-4722-4bd4-92ed-0fd69d8db126}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384570093 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384570095 DeferredSave.extensions.json DEBUG Save changes | |
1480384570095 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384570095 addons.xpi-utils DEBUG Updating add-on states | |
1480384570096 addons.xpi-utils DEBUG Writing add-ons list | |
1480384570097 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384570097 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384570099 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384570100 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384570100 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384570101 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384570101 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384570101 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384570103 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384570104 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384570104 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384570104 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384570104 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384570105 addons.manager DEBUG Starting provider: GMPProvider | |
1480384570113 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384570113 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384570113 addons.manager DEBUG Starting provider: PluginProvider | |
1480384570113 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384570113 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384570114 addons.manager DEBUG Completed startup sequence | |
1480384570285 Marionette INFO Listening on port 39536 | |
1480384570464 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384570464 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384570464 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384570479 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384570479 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384570481 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384570484 DeferredSave.extensions.json DEBUG Starting write | |
1480384570630 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384570631 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1412): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1412): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1412): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1412): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1337): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f98856c0600' of type 'MaiAtkType13b' | |
(firefox:1337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1337): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f98856be150' of type 'MaiAtkType13b' | |
(firefox:1337): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f987cbd90b0' of type 'MaiAtkType13b' | |
(firefox:1337): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f987c51b6a0' of type 'MaiAtkType13b' | |
[Child 1412] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1412] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384579606 geckodriver INFO Listening on 127.0.0.1:60637 | |
1480384580606 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Qr03wlhLD071 | |
1480384580608 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384580610 geckodriver::marionette INFO Connecting to Marionette on localhost:47643 | |
(firefox:1698): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384580822 addons.manager DEBUG Application has been upgraded | |
1480384580840 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384580842 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384580846 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384580848 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384580849 addons.manager DEBUG Starting provider: XPIProvider | |
1480384580850 addons.xpi DEBUG startup | |
1480384580851 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384580851 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384580852 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384580852 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384580852 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384580853 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384580854 addons.xpi DEBUG checkForChanges | |
1480384580854 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384580855 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384580856 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580857 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384580857 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580858 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384580858 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580859 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384580859 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580859 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384580860 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384580860 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384580868 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Qr03wlhLD071/extensions.json | |
1480384580869 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384580880 DeferredSave.extensions.json DEBUG Save changes | |
1480384580880 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384580883 DeferredSave.extensions.json DEBUG Starting timer | |
1480384580884 DeferredSave.extensions.json DEBUG Save changes | |
1480384580884 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384580889 DeferredSave.extensions.json DEBUG Save changes | |
1480384580889 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384580894 DeferredSave.extensions.json DEBUG Save changes | |
1480384580895 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384580898 DeferredSave.extensions.json DEBUG Save changes | |
1480384580899 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384580905 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384580919 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384580919 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384580919 DeferredSave.extensions.json DEBUG Save changes | |
1480384580920 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384580921 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384580924 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384580924 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384580924 DeferredSave.extensions.json DEBUG Save changes | |
1480384580924 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384580925 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384580927 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384580929 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384580929 DeferredSave.extensions.json DEBUG Save changes | |
1480384580929 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384580930 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384580931 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384580931 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384580932 DeferredSave.extensions.json DEBUG Save changes | |
1480384580932 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384580932 DeferredSave.extensions.json DEBUG Save changes | |
1480384580932 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ec8faadc-d439-4c85-82b4-e735685c8ef4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384580933 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580933 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f71caf15-e284-4699-a8e8-de7f4d6c73e0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384580933 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580933 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{36756ffd-b0e2-4646-9daa-013d5ac75e66}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384580934 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580934 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b0c908ec-b1a0-4957-b251-a5fb143f2340}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384580934 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384580934 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ec192e3f-4b4c-426c-ac7e-583c19e910aa}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384580935 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384580936 DeferredSave.extensions.json DEBUG Save changes | |
1480384580936 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384580936 addons.xpi-utils DEBUG Updating add-on states | |
1480384580936 addons.xpi-utils DEBUG Writing add-ons list | |
1480384580937 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384580938 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384580939 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384580939 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384580940 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384580940 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384580941 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384580941 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384580943 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384580943 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384580943 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384580943 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384580943 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384580944 addons.manager DEBUG Starting provider: GMPProvider | |
1480384580951 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384580951 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384580951 addons.manager DEBUG Starting provider: PluginProvider | |
1480384580951 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384580952 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384580952 addons.manager DEBUG Completed startup sequence | |
1480384581120 Marionette INFO Listening on port 47643 | |
1480384581310 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384581310 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384581311 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384581326 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384581327 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384581328 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384581331 DeferredSave.extensions.json DEBUG Starting write | |
1480384581480 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384581481 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1776): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1776): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1776): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1776): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1698): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1698): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fefaf63c600' of type 'MaiAtkType13b' | |
(firefox:1698): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1698): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fefc46efbf0' of type 'MaiAtkType13b' | |
(firefox:1698): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fefbc878420' of type 'MaiAtkType13b' | |
[Child 1776] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1776] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1776] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384603816 geckodriver INFO Listening on 127.0.0.1:54732 | |
1480384604814 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.NWFyKyZYdgfn | |
1480384605213 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384605215 geckodriver::marionette INFO Connecting to Marionette on localhost:32953 | |
(firefox:2106): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384606049 addons.manager DEBUG Application has been upgraded | |
1480384606068 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384606070 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384606074 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384606076 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384606077 addons.manager DEBUG Starting provider: XPIProvider | |
1480384606078 addons.xpi DEBUG startup | |
1480384606078 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384606079 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384606079 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384606080 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384606080 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384606081 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384606081 addons.xpi DEBUG checkForChanges | |
1480384606082 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384606083 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384606084 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606085 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384606085 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606085 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384606086 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606086 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384606086 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606087 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384606088 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384606088 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384606096 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.NWFyKyZYdgfn/extensions.json | |
1480384606097 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384606108 DeferredSave.extensions.json DEBUG Save changes | |
1480384606108 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384606111 DeferredSave.extensions.json DEBUG Starting timer | |
1480384606112 DeferredSave.extensions.json DEBUG Save changes | |
1480384606112 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384606117 DeferredSave.extensions.json DEBUG Save changes | |
1480384606117 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384606122 DeferredSave.extensions.json DEBUG Save changes | |
1480384606123 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384606126 DeferredSave.extensions.json DEBUG Save changes | |
1480384606127 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384606133 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384606147 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384606147 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384606147 DeferredSave.extensions.json DEBUG Save changes | |
1480384606148 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384606148 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384606151 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384606151 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384606152 DeferredSave.extensions.json DEBUG Save changes | |
1480384606152 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384606153 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384606155 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384606157 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384606157 DeferredSave.extensions.json DEBUG Save changes | |
1480384606157 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384606158 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384606159 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384606159 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384606160 DeferredSave.extensions.json DEBUG Save changes | |
1480384606160 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384606160 DeferredSave.extensions.json DEBUG Save changes | |
1480384606160 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4e906a12-4777-4954-b359-49e71c0fe7f2}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384606160 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606161 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c843b4b9-a4e7-497f-be64-fca45ef07a17}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384606161 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606161 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b3ef233f-292d-4604-823c-3c6e40c16dbd}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384606161 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606162 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3f72b38f-e883-4eef-9607-8fb512712ade}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384606162 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384606162 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f11e003f-ef21-4411-bad9-59f0ab98d365}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384606162 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384606164 DeferredSave.extensions.json DEBUG Save changes | |
1480384606164 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384606164 addons.xpi-utils DEBUG Updating add-on states | |
1480384606164 addons.xpi-utils DEBUG Writing add-ons list | |
1480384606165 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384606166 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384606167 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384606167 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384606168 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384606168 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384606168 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384606169 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384606171 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384606171 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384606171 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384606171 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384606171 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384606172 addons.manager DEBUG Starting provider: GMPProvider | |
1480384606179 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384606179 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384606179 addons.manager DEBUG Starting provider: PluginProvider | |
1480384606179 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384606180 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384606180 addons.manager DEBUG Completed startup sequence | |
1480384606487 Marionette INFO Listening on port 32953 | |
1480384606831 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384606831 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384606831 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384606847 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384606848 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384606849 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384606852 DeferredSave.extensions.json DEBUG Starting write | |
1480384607020 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384607020 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2191): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2191): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2191): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2191): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2106): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2106): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4f414cfb00' of type 'MaiAtkType13b' | |
(firefox:2106): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2106): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4f430fa1a0' of type 'MaiAtkType13b' | |
(firefox:2106): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4f41662fb0' of type 'MaiAtkType13b' | |
(firefox:2106): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4f425c9790' of type 'MaiAtkType13b' | |
[Child 2191] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2191] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2191] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384637110 geckodriver INFO Listening on 127.0.0.1:45229 | |
1480384638109 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.uG3Devyq4bcz | |
1480384638111 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384638113 geckodriver::marionette INFO Connecting to Marionette on localhost:59568 | |
(firefox:2618): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384639127 addons.manager DEBUG Application has been upgraded | |
1480384639145 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384639147 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384639151 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384639153 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384639154 addons.manager DEBUG Starting provider: XPIProvider | |
1480384639155 addons.xpi DEBUG startup | |
1480384639155 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384639156 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384639156 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384639157 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384639157 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384639158 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384639158 addons.xpi DEBUG checkForChanges | |
1480384639159 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384639160 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384639160 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639161 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384639162 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639162 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384639162 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639163 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384639163 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639164 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384639164 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384639164 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384639172 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.uG3Devyq4bcz/extensions.json | |
1480384639173 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384639184 DeferredSave.extensions.json DEBUG Save changes | |
1480384639184 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384639187 DeferredSave.extensions.json DEBUG Starting timer | |
1480384639188 DeferredSave.extensions.json DEBUG Save changes | |
1480384639188 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384639193 DeferredSave.extensions.json DEBUG Save changes | |
1480384639193 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384639197 DeferredSave.extensions.json DEBUG Save changes | |
1480384639198 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384639202 DeferredSave.extensions.json DEBUG Save changes | |
1480384639202 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384639208 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384639221 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384639222 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384639222 DeferredSave.extensions.json DEBUG Save changes | |
1480384639223 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384639223 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384639226 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384639226 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384639227 DeferredSave.extensions.json DEBUG Save changes | |
1480384639227 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384639228 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384639230 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384639232 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384639232 DeferredSave.extensions.json DEBUG Save changes | |
1480384639232 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384639233 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384639234 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384639234 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384639234 DeferredSave.extensions.json DEBUG Save changes | |
1480384639234 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384639235 DeferredSave.extensions.json DEBUG Save changes | |
1480384639235 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3fa60a07-06ff-4a9c-a357-3a2c9f375ecb}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384639235 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639236 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{03a8ae7b-0a73-4778-ad91-bcc913c6e4c1}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384639236 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639236 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0b69eec9-5288-4107-8f5c-a0a8de54d12a}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384639236 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639236 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{303a55a9-a4d3-4bf0-8c72-adb8d59c3956}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384639237 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384639237 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{8ff3a02d-daed-4691-968d-7ef46138e099}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384639237 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384639238 DeferredSave.extensions.json DEBUG Save changes | |
1480384639239 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384639239 addons.xpi-utils DEBUG Updating add-on states | |
1480384639239 addons.xpi-utils DEBUG Writing add-ons list | |
1480384639240 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384639240 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384639242 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384639242 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384639242 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384639243 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384639243 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384639243 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384639245 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384639246 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384639246 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384639246 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384639246 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384639246 addons.manager DEBUG Starting provider: GMPProvider | |
1480384639253 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384639254 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384639254 addons.manager DEBUG Starting provider: PluginProvider | |
1480384639254 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384639254 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384639254 addons.manager DEBUG Completed startup sequence | |
1480384639729 Marionette INFO Listening on port 59568 | |
1480384640082 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384640082 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384640082 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384640098 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384640098 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384640099 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384640105 DeferredSave.extensions.json DEBUG Starting write | |
1480384640241 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384640242 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2696): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2696): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2696): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2696): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2618): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe1241a28d0' of type 'MaiAtkType13b' | |
(firefox:2618): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe1223d4c90' of type 'MaiAtkType13b' | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe1241a2ab0' of type 'MaiAtkType13b' | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fe12a313fb0' of type 'MaiAtkType139' | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe1222dc1a0' of type 'MaiAtkType13b' | |
(firefox:2618): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fe124217600' of type 'MaiAtkType139' | |
[Child 2696] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2696] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480384673895 geckodriver INFO Listening on 127.0.0.1:36676 | |
1480384674894 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.eZ7gs0WtUlde | |
1480384675186 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480384675189 geckodriver::marionette INFO Connecting to Marionette on localhost:37603 | |
(firefox:3398): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480384676474 addons.manager DEBUG Application has been upgraded | |
1480384676492 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480384676494 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480384676499 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480384676501 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480384676502 addons.manager DEBUG Starting provider: XPIProvider | |
1480384676503 addons.xpi DEBUG startup | |
1480384676503 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480384676504 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384676504 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384676505 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384676505 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480384676506 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480384676506 addons.xpi DEBUG checkForChanges | |
1480384676507 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480384676508 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384676509 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676510 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384676510 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676510 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384676511 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676511 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480384676511 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676512 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480384676513 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384676513 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480384676521 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.eZ7gs0WtUlde/extensions.json | |
1480384676522 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480384676533 DeferredSave.extensions.json DEBUG Save changes | |
1480384676533 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384676536 DeferredSave.extensions.json DEBUG Starting timer | |
1480384676537 DeferredSave.extensions.json DEBUG Save changes | |
1480384676537 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384676542 DeferredSave.extensions.json DEBUG Save changes | |
1480384676542 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480384676547 DeferredSave.extensions.json DEBUG Save changes | |
1480384676548 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480384676551 DeferredSave.extensions.json DEBUG Save changes | |
1480384676552 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384676558 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384676572 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480384676572 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384676572 DeferredSave.extensions.json DEBUG Save changes | |
1480384676573 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384676574 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384676576 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384676577 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384676577 DeferredSave.extensions.json DEBUG Save changes | |
1480384676577 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384676578 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384676581 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480384676582 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384676582 DeferredSave.extensions.json DEBUG Save changes | |
1480384676582 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480384676583 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480384676584 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480384676584 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480384676585 DeferredSave.extensions.json DEBUG Save changes | |
1480384676585 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480384676585 DeferredSave.extensions.json DEBUG Save changes | |
1480384676585 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d65f307a-c3d2-444f-b15f-55615dc55c7d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384676586 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676586 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ee42822a-d14d-4a1f-8474-8fcc6adc0d41}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480384676586 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676586 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b536a940-641d-4316-9973-b8989625b7a5}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384676587 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676587 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2eb57c07-dc2c-4f49-bba3-d38165661314}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480384676587 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480384676587 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{9bed49ec-b5f3-4d1d-9c80-fdd0ecb91ae2}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480384676587 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480384676589 DeferredSave.extensions.json DEBUG Save changes | |
1480384676589 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480384676589 addons.xpi-utils DEBUG Updating add-on states | |
1480384676590 addons.xpi-utils DEBUG Writing add-ons list | |
1480384676591 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384676591 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480384676593 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384676593 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384676593 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384676594 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480384676594 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480384676594 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480384676597 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480384676597 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480384676597 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480384676597 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480384676597 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480384676598 addons.manager DEBUG Starting provider: GMPProvider | |
1480384676606 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480384676606 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480384676606 addons.manager DEBUG Starting provider: PluginProvider | |
1480384676606 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480384676607 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480384676607 addons.manager DEBUG Completed startup sequence | |
1480384677484 Marionette INFO Listening on port 37603 | |
1480384677851 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480384677851 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480384677851 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480384677868 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480384677868 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480384677869 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480384677872 DeferredSave.extensions.json DEBUG Starting write | |
1480384678035 DeferredSave.extensions.json DEBUG Write succeeded | |
1480384678036 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3483): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3483): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3483): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3483): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3398): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
1480384738763 addons.productaddons INFO sending request to: https://aus5.mozilla.org/update/3/GMP/50.0/20161104212021/Linux_x86_64-gcc3/en-US/release/Linux%203.10.0-327.el7.x86_64%20(GTK%203.14.13%2Clibpulse%20not-available)/default/default/update.xml | |
1480384739783 addons.productaddons WARN Failed downloading XML, status: 0, reason: error | |
[Child 3483] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3483] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385249662 geckodriver INFO Listening on 127.0.0.1:34069 | |
1480385250663 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.uqfkiBf6906R | |
1480385250690 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385250710 geckodriver::marionette INFO Connecting to Marionette on localhost:47330 | |
(firefox:939): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385251047 addons.manager DEBUG Application has been upgraded | |
1480385251089 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385251092 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385251098 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385251100 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385251101 addons.manager DEBUG Starting provider: XPIProvider | |
1480385251101 addons.xpi DEBUG startup | |
1480385251102 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385251103 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385251103 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385251103 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385251104 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385251105 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385251105 addons.xpi DEBUG checkForChanges | |
1480385251106 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385251107 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385251108 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251108 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385251109 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251109 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385251110 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251110 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385251110 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251111 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385251112 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385251112 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385251120 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.uqfkiBf6906R/extensions.json | |
1480385251122 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385251133 DeferredSave.extensions.json DEBUG Save changes | |
1480385251134 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385251137 DeferredSave.extensions.json DEBUG Starting timer | |
1480385251138 DeferredSave.extensions.json DEBUG Save changes | |
1480385251138 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385251143 DeferredSave.extensions.json DEBUG Save changes | |
1480385251143 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385251148 DeferredSave.extensions.json DEBUG Save changes | |
1480385251149 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385251153 DeferredSave.extensions.json DEBUG Save changes | |
1480385251153 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385251160 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385251173 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385251174 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385251174 DeferredSave.extensions.json DEBUG Save changes | |
1480385251175 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385251175 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385251178 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385251179 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385251179 DeferredSave.extensions.json DEBUG Save changes | |
1480385251179 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385251180 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385251183 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385251184 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385251184 DeferredSave.extensions.json DEBUG Save changes | |
1480385251184 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385251185 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385251186 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385251186 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385251187 DeferredSave.extensions.json DEBUG Save changes | |
1480385251187 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385251187 DeferredSave.extensions.json DEBUG Save changes | |
1480385251188 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b6bc1beb-e0b7-4210-9b19-1fc0312c3603}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385251188 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251188 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4fb1224d-d9a3-41f3-a2ab-82340c2060c8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385251188 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251189 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f6b7e1d3-04e6-44d0-9015-9b0a0af030be}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385251189 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251189 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{26030737-8089-4dd3-b9d0-c6a0089b318e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385251189 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385251190 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{fa229fbd-9f85-4464-8d30-981ef159a21e}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385251190 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385251191 DeferredSave.extensions.json DEBUG Save changes | |
1480385251191 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385251191 addons.xpi-utils DEBUG Updating add-on states | |
1480385251192 addons.xpi-utils DEBUG Writing add-ons list | |
1480385251193 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385251193 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385251195 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385251195 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385251195 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385251196 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385251196 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385251196 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385251198 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385251199 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385251199 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385251199 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385251199 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385251199 addons.manager DEBUG Starting provider: GMPProvider | |
1480385251206 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385251207 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385251207 addons.manager DEBUG Starting provider: PluginProvider | |
1480385251207 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385251207 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385251208 addons.manager DEBUG Completed startup sequence | |
1480385251405 Marionette INFO Listening on port 47330 | |
1480385251617 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385251617 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385251617 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385251633 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385251633 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385251635 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385251639 DeferredSave.extensions.json DEBUG Starting write | |
1480385251794 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385251795 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1062): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1062): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1062): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1062): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:939): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:939): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fae940e29c0' of type 'MaiAtkType13b' | |
(firefox:939): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:939): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fae8a0705b0' of type 'MaiAtkType13b' | |
(firefox:939): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fae8a17e290' of type 'MaiAtkType13b' | |
[Child 1062] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1062] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1062] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385260716 geckodriver INFO Listening on 127.0.0.1:36715 | |
1480385261736 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.i0aELKYERYji | |
1480385261738 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385261993 geckodriver::marionette INFO Connecting to Marionette on localhost:49916 | |
(firefox:1353): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385262211 addons.manager DEBUG Application has been upgraded | |
1480385262229 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385262231 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385262235 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385262237 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385262238 addons.manager DEBUG Starting provider: XPIProvider | |
1480385262239 addons.xpi DEBUG startup | |
1480385262239 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385262240 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385262240 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385262241 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385262241 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385262242 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385262242 addons.xpi DEBUG checkForChanges | |
1480385262243 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385262244 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385262245 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262246 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385262246 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262246 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385262247 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262247 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385262248 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262248 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385262249 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385262249 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385262257 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.i0aELKYERYji/extensions.json | |
1480385262258 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385262269 DeferredSave.extensions.json DEBUG Save changes | |
1480385262269 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385262272 DeferredSave.extensions.json DEBUG Starting timer | |
1480385262273 DeferredSave.extensions.json DEBUG Save changes | |
1480385262273 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385262278 DeferredSave.extensions.json DEBUG Save changes | |
1480385262279 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385262283 DeferredSave.extensions.json DEBUG Save changes | |
1480385262284 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385262288 DeferredSave.extensions.json DEBUG Save changes | |
1480385262288 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385262295 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385262308 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385262308 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385262309 DeferredSave.extensions.json DEBUG Save changes | |
1480385262310 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385262310 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385262313 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385262313 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385262314 DeferredSave.extensions.json DEBUG Save changes | |
1480385262314 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385262315 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385262317 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385262318 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385262319 DeferredSave.extensions.json DEBUG Save changes | |
1480385262319 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385262320 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385262321 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385262321 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385262321 DeferredSave.extensions.json DEBUG Save changes | |
1480385262321 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385262322 DeferredSave.extensions.json DEBUG Save changes | |
1480385262322 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a83c8789-7390-4080-9183-5b1d56a4ab37}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385262322 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262323 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d086db07-966d-4bc1-aac5-26cbdce97e9a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385262323 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262323 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0c2bc329-c277-4548-9f0b-e7d061fd048e}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385262323 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262324 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{14877014-c6ea-44c1-86a3-420bb420baf1}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385262324 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385262324 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{b17daf79-234c-4ff0-9d12-c23dd8de837a}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385262324 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385262325 DeferredSave.extensions.json DEBUG Save changes | |
1480385262325 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385262326 addons.xpi-utils DEBUG Updating add-on states | |
1480385262326 addons.xpi-utils DEBUG Writing add-ons list | |
1480385262327 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385262327 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385262329 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385262329 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385262330 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385262330 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385262330 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385262331 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385262333 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385262333 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385262333 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385262333 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385262333 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385262334 addons.manager DEBUG Starting provider: GMPProvider | |
1480385262341 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385262341 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385262341 addons.manager DEBUG Starting provider: PluginProvider | |
1480385262341 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385262342 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385262342 addons.manager DEBUG Completed startup sequence | |
1480385262508 Marionette INFO Listening on port 49916 | |
1480385262684 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385262684 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385262685 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385262699 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385262700 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385262701 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385262705 DeferredSave.extensions.json DEBUG Starting write | |
1480385262847 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385262848 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1430): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1430): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1430): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1430): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1353): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1353): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1b467d9c90' of type 'MaiAtkType13b' | |
(firefox:1353): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1353): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1b468f8e20' of type 'MaiAtkType13b' | |
(firefox:1353): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1b467d9150' of type 'MaiAtkType13b' | |
(firefox:1353): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1b46746650' of type 'MaiAtkType13b' | |
[Child 1430] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1430] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1430] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385271723 geckodriver INFO Listening on 127.0.0.1:58849 | |
1480385272722 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.jjRLgXiDDfF7 | |
1480385272724 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385272727 geckodriver::marionette INFO Connecting to Marionette on localhost:36854 | |
(firefox:1717): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385272971 addons.manager DEBUG Application has been upgraded | |
1480385272989 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385272991 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385272995 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385272998 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385272999 addons.manager DEBUG Starting provider: XPIProvider | |
1480385272999 addons.xpi DEBUG startup | |
1480385273000 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385273001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385273001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385273001 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385273002 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385273002 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385273003 addons.xpi DEBUG checkForChanges | |
1480385273004 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385273005 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385273005 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273006 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385273007 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273007 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385273008 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273008 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385273008 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273009 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385273009 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385273010 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385273018 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.jjRLgXiDDfF7/extensions.json | |
1480385273019 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385273030 DeferredSave.extensions.json DEBUG Save changes | |
1480385273030 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385273033 DeferredSave.extensions.json DEBUG Starting timer | |
1480385273034 DeferredSave.extensions.json DEBUG Save changes | |
1480385273034 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385273039 DeferredSave.extensions.json DEBUG Save changes | |
1480385273039 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385273044 DeferredSave.extensions.json DEBUG Save changes | |
1480385273045 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385273048 DeferredSave.extensions.json DEBUG Save changes | |
1480385273049 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385273055 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385273069 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385273069 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385273069 DeferredSave.extensions.json DEBUG Save changes | |
1480385273070 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385273071 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385273074 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385273074 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385273074 DeferredSave.extensions.json DEBUG Save changes | |
1480385273074 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385273075 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385273078 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385273079 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385273079 DeferredSave.extensions.json DEBUG Save changes | |
1480385273080 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385273080 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385273081 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385273082 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385273082 DeferredSave.extensions.json DEBUG Save changes | |
1480385273082 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385273082 DeferredSave.extensions.json DEBUG Save changes | |
1480385273083 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ed07c74b-bb90-4f41-9f19-f6ae31cb5d04}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385273083 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273083 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{78af2669-2bbf-4dad-accf-0700a7badcd6}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385273083 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273084 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{057c005a-3d39-45b9-97d1-2df9533b37a1}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385273084 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273084 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{be0a3322-4266-40f8-8542-c32a53f2544e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385273084 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385273085 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f2e2b744-b27c-4f94-898f-ea60d199f068}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385273085 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385273086 DeferredSave.extensions.json DEBUG Save changes | |
1480385273086 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385273086 addons.xpi-utils DEBUG Updating add-on states | |
1480385273087 addons.xpi-utils DEBUG Writing add-ons list | |
1480385273087 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385273088 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385273089 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385273090 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385273090 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385273090 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385273091 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385273091 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385273093 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385273093 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385273093 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385273093 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385273094 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385273094 addons.manager DEBUG Starting provider: GMPProvider | |
1480385273101 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385273102 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385273102 addons.manager DEBUG Starting provider: PluginProvider | |
1480385273102 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385273102 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385273103 addons.manager DEBUG Completed startup sequence | |
1480385273370 Marionette INFO Listening on port 36854 | |
1480385273736 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385273736 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385273737 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385273753 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385273754 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385273755 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385273760 DeferredSave.extensions.json DEBUG Starting write | |
1480385273907 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385273908 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1793): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1793): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1793): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1793): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1717): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1717): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f9d1d72b8d0' of type 'MaiAtkType13b' | |
(firefox:1717): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1717): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f9d22a92650' of type 'MaiAtkType13b' | |
(firefox:1717): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f9d28850740' of type 'MaiAtkType13b' | |
[Child 1793] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1793] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1793] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385296477 geckodriver INFO Listening on 127.0.0.1:33619 | |
1480385297477 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.KgAvLqirtZbE | |
1480385297479 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385297481 geckodriver::marionette INFO Connecting to Marionette on localhost:55608 | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385298433 addons.manager DEBUG Application has been upgraded | |
1480385298451 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385298453 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385298457 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385298459 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385298460 addons.manager DEBUG Starting provider: XPIProvider | |
1480385298461 addons.xpi DEBUG startup | |
1480385298461 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385298462 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385298463 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385298463 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385298463 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385298464 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385298465 addons.xpi DEBUG checkForChanges | |
1480385298465 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385298466 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385298467 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298468 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385298468 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298468 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385298469 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298469 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385298470 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298470 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385298471 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385298471 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385298479 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.KgAvLqirtZbE/extensions.json | |
1480385298480 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385298491 DeferredSave.extensions.json DEBUG Save changes | |
1480385298492 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385298494 DeferredSave.extensions.json DEBUG Starting timer | |
1480385298495 DeferredSave.extensions.json DEBUG Save changes | |
1480385298495 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385298501 DeferredSave.extensions.json DEBUG Save changes | |
1480385298501 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385298505 DeferredSave.extensions.json DEBUG Save changes | |
1480385298506 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385298510 DeferredSave.extensions.json DEBUG Save changes | |
1480385298510 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385298517 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385298534 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385298534 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385298534 DeferredSave.extensions.json DEBUG Save changes | |
1480385298535 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385298536 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385298539 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385298539 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385298539 DeferredSave.extensions.json DEBUG Save changes | |
1480385298540 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385298540 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385298543 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385298544 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385298545 DeferredSave.extensions.json DEBUG Save changes | |
1480385298545 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385298546 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385298547 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385298547 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385298547 DeferredSave.extensions.json DEBUG Save changes | |
1480385298547 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385298548 DeferredSave.extensions.json DEBUG Save changes | |
1480385298548 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{47e1c31d-9da5-4960-807f-110774224d92}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385298548 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298549 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f744fed4-3ba1-4fd0-a37c-98d4de3d100f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385298549 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298549 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5ce0ff3a-dac9-48e4-8751-ad69f7f889cf}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385298549 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298549 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1865bc0d-19fe-417d-b7c3-69bd12e64eb8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385298550 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385298550 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6dc56d17-3a35-4187-9eb4-4c3f662e4ece}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385298550 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385298551 DeferredSave.extensions.json DEBUG Save changes | |
1480385298551 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385298551 addons.xpi-utils DEBUG Updating add-on states | |
1480385298552 addons.xpi-utils DEBUG Writing add-ons list | |
1480385298553 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385298553 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385298555 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385298555 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385298556 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385298556 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385298556 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385298556 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385298558 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385298559 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385298559 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385298559 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385298559 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385298560 addons.manager DEBUG Starting provider: GMPProvider | |
1480385298567 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385298567 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385298567 addons.manager DEBUG Starting provider: PluginProvider | |
1480385298567 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385298567 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385298568 addons.manager DEBUG Completed startup sequence | |
1480385298830 Marionette INFO Listening on port 55608 | |
1480385299206 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385299207 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385299207 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385299224 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385299224 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385299226 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385299233 DeferredSave.extensions.json DEBUG Starting write | |
1480385299392 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385299393 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2203): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2203): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2203): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2203): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fac2d78b970' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fac3aa33510' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fac2da9d510' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fac3194c830' of type 'MaiAtkType13b' | |
[Child 2203] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2203] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2203] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385329054 geckodriver INFO Listening on 127.0.0.1:35194 | |
1480385330047 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.52b0z24At8yN | |
1480385330049 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385330051 geckodriver::marionette INFO Connecting to Marionette on localhost:54024 | |
(firefox:2622): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385331280 addons.manager DEBUG Application has been upgraded | |
1480385331298 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385331300 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385331305 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385331307 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385331308 addons.manager DEBUG Starting provider: XPIProvider | |
1480385331308 addons.xpi DEBUG startup | |
1480385331309 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385331310 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385331310 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385331310 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385331311 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385331311 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385331312 addons.xpi DEBUG checkForChanges | |
1480385331313 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385331314 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385331314 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331315 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385331316 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331316 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385331317 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331317 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385331317 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331318 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385331318 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385331319 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385331327 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.52b0z24At8yN/extensions.json | |
1480385331328 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385331339 DeferredSave.extensions.json DEBUG Save changes | |
1480385331339 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385331341 DeferredSave.extensions.json DEBUG Starting timer | |
1480385331343 DeferredSave.extensions.json DEBUG Save changes | |
1480385331343 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385331348 DeferredSave.extensions.json DEBUG Save changes | |
1480385331348 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385331353 DeferredSave.extensions.json DEBUG Save changes | |
1480385331354 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385331357 DeferredSave.extensions.json DEBUG Save changes | |
1480385331358 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385331364 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385331378 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385331378 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385331378 DeferredSave.extensions.json DEBUG Save changes | |
1480385331379 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385331380 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385331383 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385331383 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385331383 DeferredSave.extensions.json DEBUG Save changes | |
1480385331384 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385331384 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385331387 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385331388 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385331389 DeferredSave.extensions.json DEBUG Save changes | |
1480385331389 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385331390 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385331391 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385331391 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385331391 DeferredSave.extensions.json DEBUG Save changes | |
1480385331391 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385331392 DeferredSave.extensions.json DEBUG Save changes | |
1480385331392 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1ccb0adb-4d9c-4950-8d85-4a513a7e878a}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385331392 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331393 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0ff449b2-f5d9-4799-a55e-31430888ab6f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385331393 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331393 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0a2dee07-09b1-45f1-9878-4579fe0a097e}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385331393 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331394 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{395742c6-a84f-4aff-bd83-f066234632fd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385331394 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385331394 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4623eb30-f781-427a-bf32-158c614ec073}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385331394 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385331395 DeferredSave.extensions.json DEBUG Save changes | |
1480385331395 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385331396 addons.xpi-utils DEBUG Updating add-on states | |
1480385331396 addons.xpi-utils DEBUG Writing add-ons list | |
1480385331397 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385331397 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385331399 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385331399 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385331400 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385331400 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385331400 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385331401 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385331403 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385331403 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385331403 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385331403 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385331403 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385331404 addons.manager DEBUG Starting provider: GMPProvider | |
1480385331411 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385331411 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385331411 addons.manager DEBUG Starting provider: PluginProvider | |
1480385331411 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385331412 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385331412 addons.manager DEBUG Completed startup sequence | |
1480385331803 Marionette INFO Listening on port 54024 | |
1480385332216 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385332216 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385332216 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385332233 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385332233 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385332235 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385332239 DeferredSave.extensions.json DEBUG Starting write | |
1480385332375 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385332375 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2708): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2708): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2708): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2708): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2622): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4121edf6f0' of type 'MaiAtkType13b' | |
(firefox:2622): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4121e36ab0' of type 'MaiAtkType13b' | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4121edf920' of type 'MaiAtkType13b' | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f4126e081a0' of type 'MaiAtkType139' | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4120de7510' of type 'MaiAtkType13b' | |
(firefox:2622): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f412283ec40' of type 'MaiAtkType139' | |
[Child 2708] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2708] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385365936 geckodriver INFO Listening on 127.0.0.1:44289 | |
1480385366936 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.RwfvSHrtNLv8 | |
1480385366938 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385366941 geckodriver::marionette INFO Connecting to Marionette on localhost:58741 | |
(firefox:3400): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385368912 addons.manager DEBUG Application has been upgraded | |
1480385368930 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385368932 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385368936 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385368940 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385368941 addons.manager DEBUG Starting provider: XPIProvider | |
1480385368941 addons.xpi DEBUG startup | |
1480385368942 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385368943 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385368943 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385368944 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385368944 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385368945 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385368945 addons.xpi DEBUG checkForChanges | |
1480385368946 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385368947 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385368948 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385368949 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385368949 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385368949 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385368950 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385368950 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385368950 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385368951 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385368952 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385368952 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385368961 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.RwfvSHrtNLv8/extensions.json | |
1480385368962 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385368974 DeferredSave.extensions.json DEBUG Save changes | |
1480385368975 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385368978 DeferredSave.extensions.json DEBUG Starting timer | |
1480385368979 DeferredSave.extensions.json DEBUG Save changes | |
1480385368979 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385368985 DeferredSave.extensions.json DEBUG Save changes | |
1480385368985 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385368990 DeferredSave.extensions.json DEBUG Save changes | |
1480385368991 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385368995 DeferredSave.extensions.json DEBUG Save changes | |
1480385368996 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385369003 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385369019 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385369019 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385369019 DeferredSave.extensions.json DEBUG Save changes | |
1480385369020 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385369021 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385369024 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385369024 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385369025 DeferredSave.extensions.json DEBUG Save changes | |
1480385369025 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385369026 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385369029 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385369031 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385369031 DeferredSave.extensions.json DEBUG Save changes | |
1480385369031 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385369032 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385369033 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385369033 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385369034 DeferredSave.extensions.json DEBUG Save changes | |
1480385369034 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385369034 DeferredSave.extensions.json DEBUG Save changes | |
1480385369035 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7e041ec3-7326-442b-adbe-9f11378c31bc}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385369035 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385369035 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d3186270-545f-4509-852d-8ceebf549e39}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385369035 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385369036 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{90219c6d-f7d2-4c5d-9e74-fee43277a515}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385369036 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385369036 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{088e1621-795c-499f-af77-87621fbc1431}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385369036 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385369037 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f6acefd8-8e84-44e6-a510-8ba983df559a}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385369037 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385369038 DeferredSave.extensions.json DEBUG Save changes | |
1480385369038 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385369038 addons.xpi-utils DEBUG Updating add-on states | |
1480385369039 addons.xpi-utils DEBUG Writing add-ons list | |
1480385369040 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385369040 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385369042 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385369042 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385369043 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385369043 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385369044 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385369044 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385369046 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385369047 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385369047 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385369047 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385369047 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385369047 addons.manager DEBUG Starting provider: GMPProvider | |
1480385369055 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385369056 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385369056 addons.manager DEBUG Starting provider: PluginProvider | |
1480385369056 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385369056 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385369056 addons.manager DEBUG Completed startup sequence | |
1480385369323 Marionette INFO Listening on port 58741 | |
1480385369714 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385369714 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385369714 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385369729 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385369730 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385369731 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385369735 DeferredSave.extensions.json DEBUG Starting write | |
1480385369856 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385369857 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3489): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3489): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3489): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3489): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3400): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3400): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f16f9ea8970' of type 'MaiAtkType13b' | |
(firefox:3400): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3400): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f16fe02c740' of type 'MaiAtkType13b' | |
(firefox:3400): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f16f7df4ba0' of type 'MaiAtkType13b' | |
[Child 3489] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3489] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3489] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385403354 geckodriver INFO Listening on 127.0.0.1:44217 | |
1480385404354 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.W1IwKVRcKKlW | |
1480385404356 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385404359 geckodriver::marionette INFO Connecting to Marionette on localhost:59275 | |
(firefox:4134): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385405241 addons.manager DEBUG Application has been upgraded | |
1480385405260 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385405262 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385405267 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385405269 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385405270 addons.manager DEBUG Starting provider: XPIProvider | |
1480385405270 addons.xpi DEBUG startup | |
1480385405271 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385405272 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385405272 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385405273 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385405273 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385405274 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385405274 addons.xpi DEBUG checkForChanges | |
1480385405275 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385405276 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385405277 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405278 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385405278 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405278 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385405279 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405280 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385405280 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405280 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385405281 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385405281 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385405290 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.W1IwKVRcKKlW/extensions.json | |
1480385405291 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385405302 DeferredSave.extensions.json DEBUG Save changes | |
1480385405302 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385405305 DeferredSave.extensions.json DEBUG Starting timer | |
1480385405306 DeferredSave.extensions.json DEBUG Save changes | |
1480385405306 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385405311 DeferredSave.extensions.json DEBUG Save changes | |
1480385405312 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385405316 DeferredSave.extensions.json DEBUG Save changes | |
1480385405317 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385405321 DeferredSave.extensions.json DEBUG Save changes | |
1480385405321 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385405328 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385405341 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385405341 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385405342 DeferredSave.extensions.json DEBUG Save changes | |
1480385405343 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385405343 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385405346 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385405346 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385405347 DeferredSave.extensions.json DEBUG Save changes | |
1480385405347 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385405348 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385405350 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385405352 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385405352 DeferredSave.extensions.json DEBUG Save changes | |
1480385405352 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385405353 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385405354 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385405354 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385405355 DeferredSave.extensions.json DEBUG Save changes | |
1480385405355 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385405355 DeferredSave.extensions.json DEBUG Save changes | |
1480385405355 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5159cbfd-58ac-460c-b985-30d0be24151b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385405355 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405356 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0c1fca7f-9e11-4091-89f0-890782da55ff}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385405356 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405356 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2357dd84-1039-4d60-8419-588588a1dbfc}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385405356 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405357 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{22bc9435-5073-4631-91a3-1cd62aa80be8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385405357 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385405357 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{dfd238c3-9723-468f-8f7e-7317710e2cbd}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385405357 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385405359 DeferredSave.extensions.json DEBUG Save changes | |
1480385405359 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385405359 addons.xpi-utils DEBUG Updating add-on states | |
1480385405359 addons.xpi-utils DEBUG Writing add-ons list | |
1480385405360 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385405361 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385405362 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385405362 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385405363 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385405363 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385405364 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385405364 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385405366 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385405366 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385405366 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385405366 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385405366 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385405367 addons.manager DEBUG Starting provider: GMPProvider | |
1480385405374 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385405374 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385405374 addons.manager DEBUG Starting provider: PluginProvider | |
1480385405374 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385405375 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385405375 addons.manager DEBUG Completed startup sequence | |
1480385406384 Marionette INFO Listening on port 59275 | |
1480385406781 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385406781 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385406782 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385406797 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385406798 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385406799 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385406802 DeferredSave.extensions.json DEBUG Starting write | |
1480385406964 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385406965 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4225): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4225): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4225): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4225): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4134): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4134): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fb42689da10' of type 'MaiAtkType13b' | |
(firefox:4134): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fb42a08a2e0' of type 'MaiAtkType13b' | |
[Child 4225] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4225] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385429068 geckodriver INFO Listening on 127.0.0.1:56889 | |
1480385430067 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.qjjWNprXPea3 | |
1480385430069 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385430071 geckodriver::marionette INFO Connecting to Marionette on localhost:57462 | |
(firefox:4647): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385430990 addons.manager DEBUG Application has been upgraded | |
1480385431008 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385431010 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385431015 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385431017 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385431018 addons.manager DEBUG Starting provider: XPIProvider | |
1480385431018 addons.xpi DEBUG startup | |
1480385431019 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385431020 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385431020 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385431020 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385431021 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385431021 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385431022 addons.xpi DEBUG checkForChanges | |
1480385431023 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385431024 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385431024 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431025 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385431026 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431026 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385431027 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431027 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385431027 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431028 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385431028 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385431029 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385431037 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.qjjWNprXPea3/extensions.json | |
1480385431038 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385431049 DeferredSave.extensions.json DEBUG Save changes | |
1480385431049 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385431052 DeferredSave.extensions.json DEBUG Starting timer | |
1480385431053 DeferredSave.extensions.json DEBUG Save changes | |
1480385431053 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385431058 DeferredSave.extensions.json DEBUG Save changes | |
1480385431058 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385431063 DeferredSave.extensions.json DEBUG Save changes | |
1480385431064 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385431068 DeferredSave.extensions.json DEBUG Save changes | |
1480385431068 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385431075 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385431088 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385431088 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385431089 DeferredSave.extensions.json DEBUG Save changes | |
1480385431090 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385431090 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385431093 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385431093 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385431094 DeferredSave.extensions.json DEBUG Save changes | |
1480385431094 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385431095 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385431097 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385431098 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385431099 DeferredSave.extensions.json DEBUG Save changes | |
1480385431099 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385431100 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385431101 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385431101 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385431101 DeferredSave.extensions.json DEBUG Save changes | |
1480385431102 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385431102 DeferredSave.extensions.json DEBUG Save changes | |
1480385431102 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e6f3d0e3-8373-4c79-9475-003a7e6431c0}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385431102 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431103 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{830cde00-582e-4d86-bf1f-1449064609e5}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385431103 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431103 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c9ab31a7-6dc2-49be-bf26-077cc06c522b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385431103 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431104 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{80b5dd6d-481f-4d3f-b82b-c5eec51b8187}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385431104 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385431104 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6c50ec90-8cee-4293-8832-9419b4caee34}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385431104 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385431106 DeferredSave.extensions.json DEBUG Save changes | |
1480385431106 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385431106 addons.xpi-utils DEBUG Updating add-on states | |
1480385431106 addons.xpi-utils DEBUG Writing add-ons list | |
1480385431107 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385431108 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385431109 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385431109 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385431110 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385431110 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385431110 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385431111 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385431113 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385431113 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385431113 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385431113 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385431113 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385431114 addons.manager DEBUG Starting provider: GMPProvider | |
1480385431121 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385431121 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385431121 addons.manager DEBUG Starting provider: PluginProvider | |
1480385431122 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385431122 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385431122 addons.manager DEBUG Completed startup sequence | |
1480385431376 Marionette INFO Listening on port 57462 | |
1480385431797 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385431797 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385431797 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385431813 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385431813 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385431814 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385431818 DeferredSave.extensions.json DEBUG Starting write | |
1480385431964 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385431965 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4725): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4725): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4725): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4725): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4647): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4725] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4725] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385434547 geckodriver INFO Listening on 127.0.0.1:34104 | |
1480385435547 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.VLv4OzhhWEII | |
1480385435549 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385435552 geckodriver::marionette INFO Connecting to Marionette on localhost:39538 | |
(firefox:4898): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385435782 addons.manager DEBUG Application has been upgraded | |
1480385435800 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385435802 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385435807 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385435809 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385435810 addons.manager DEBUG Starting provider: XPIProvider | |
1480385435810 addons.xpi DEBUG startup | |
1480385435811 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385435812 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385435812 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385435812 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385435813 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385435813 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385435814 addons.xpi DEBUG checkForChanges | |
1480385435814 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385435815 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385435816 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435817 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385435817 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435818 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385435818 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435819 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385435819 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435820 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385435820 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385435821 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385435829 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.VLv4OzhhWEII/extensions.json | |
1480385435831 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385435842 DeferredSave.extensions.json DEBUG Save changes | |
1480385435842 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385435845 DeferredSave.extensions.json DEBUG Starting timer | |
1480385435846 DeferredSave.extensions.json DEBUG Save changes | |
1480385435846 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385435851 DeferredSave.extensions.json DEBUG Save changes | |
1480385435852 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385435856 DeferredSave.extensions.json DEBUG Save changes | |
1480385435857 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385435861 DeferredSave.extensions.json DEBUG Save changes | |
1480385435862 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385435868 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385435882 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385435882 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385435882 DeferredSave.extensions.json DEBUG Save changes | |
1480385435883 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385435883 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385435887 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385435887 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385435888 DeferredSave.extensions.json DEBUG Save changes | |
1480385435888 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385435889 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385435891 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385435893 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385435893 DeferredSave.extensions.json DEBUG Save changes | |
1480385435893 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385435894 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385435895 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385435895 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385435896 DeferredSave.extensions.json DEBUG Save changes | |
1480385435896 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385435896 DeferredSave.extensions.json DEBUG Save changes | |
1480385435896 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8d6bf319-e963-4be8-8243-d2cd4cd09987}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385435896 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435897 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ae4892ef-66a4-4885-88d8-4a7b8c71aa80}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385435897 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435897 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a45539a6-b396-4722-af75-69ec332685f0}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385435897 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435898 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6d606944-eb59-4395-b368-c2b336680e44}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385435898 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385435898 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{66a9c65e-b49f-41df-99b0-bf4769a3914e}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385435898 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385435900 DeferredSave.extensions.json DEBUG Save changes | |
1480385435900 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385435900 addons.xpi-utils DEBUG Updating add-on states | |
1480385435900 addons.xpi-utils DEBUG Writing add-ons list | |
1480385435901 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385435902 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385435903 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385435904 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385435904 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385435904 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385435905 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385435905 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385435907 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385435907 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385435907 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385435907 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385435908 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385435908 addons.manager DEBUG Starting provider: GMPProvider | |
1480385435916 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385435916 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385435916 addons.manager DEBUG Starting provider: PluginProvider | |
1480385435916 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385435916 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385435917 addons.manager DEBUG Completed startup sequence | |
1480385436171 Marionette INFO Listening on port 39538 | |
1480385436525 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385436525 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385436525 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385436541 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385436541 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385436542 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385436546 DeferredSave.extensions.json DEBUG Starting write | |
1480385436689 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385436690 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4976): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4976): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4976): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4976): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4898): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4976] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4976] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385439115 geckodriver INFO Listening on 127.0.0.1:60156 | |
1480385440115 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.czQJWbfWYJOm | |
1480385440116 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385440119 geckodriver::marionette INFO Connecting to Marionette on localhost:52279 | |
(firefox:5140): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385440371 addons.manager DEBUG Application has been upgraded | |
1480385440389 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385440391 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385440395 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385440398 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385440398 addons.manager DEBUG Starting provider: XPIProvider | |
1480385440399 addons.xpi DEBUG startup | |
1480385440399 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385440400 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385440401 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385440401 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385440401 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385440402 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385440403 addons.xpi DEBUG checkForChanges | |
1480385440403 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385440404 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385440405 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440406 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385440406 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440407 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385440407 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440408 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385440408 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440408 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385440409 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385440409 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385440417 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.czQJWbfWYJOm/extensions.json | |
1480385440418 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385440429 DeferredSave.extensions.json DEBUG Save changes | |
1480385440429 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385440432 DeferredSave.extensions.json DEBUG Starting timer | |
1480385440433 DeferredSave.extensions.json DEBUG Save changes | |
1480385440433 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385440439 DeferredSave.extensions.json DEBUG Save changes | |
1480385440439 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385440443 DeferredSave.extensions.json DEBUG Save changes | |
1480385440444 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385440448 DeferredSave.extensions.json DEBUG Save changes | |
1480385440448 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385440454 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385440468 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385440468 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385440468 DeferredSave.extensions.json DEBUG Save changes | |
1480385440470 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385440470 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385440473 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385440473 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385440473 DeferredSave.extensions.json DEBUG Save changes | |
1480385440474 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385440474 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385440477 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385440478 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385440479 DeferredSave.extensions.json DEBUG Save changes | |
1480385440479 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385440480 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385440481 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385440481 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385440481 DeferredSave.extensions.json DEBUG Save changes | |
1480385440481 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385440482 DeferredSave.extensions.json DEBUG Save changes | |
1480385440482 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{dbdd979b-b8d7-4910-9a88-843b388fd646}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385440482 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440482 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0dcd0ac7-b67b-45c8-84a9-7a18bea0e190}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385440483 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440483 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{57e4590d-8054-4f64-b9f6-c44a044fa57b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385440483 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440483 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5849795b-6bf8-449b-bf51-c6f8c6f3ad92}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385440484 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385440484 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ea1fba7e-cdee-4567-8351-17375f30119f}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385440484 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385440485 DeferredSave.extensions.json DEBUG Save changes | |
1480385440485 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385440485 addons.xpi-utils DEBUG Updating add-on states | |
1480385440486 addons.xpi-utils DEBUG Writing add-ons list | |
1480385440487 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385440487 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385440489 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385440489 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385440489 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385440490 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385440490 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385440490 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385440492 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385440492 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385440493 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385440493 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385440493 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385440493 addons.manager DEBUG Starting provider: GMPProvider | |
1480385440501 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385440501 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385440501 addons.manager DEBUG Starting provider: PluginProvider | |
1480385440501 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385440501 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385440502 addons.manager DEBUG Completed startup sequence | |
1480385440762 Marionette INFO Listening on port 52279 | |
1480385441163 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385441163 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385441163 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385441180 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385441181 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385441182 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385441187 DeferredSave.extensions.json DEBUG Starting write | |
1480385441315 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385441316 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5220): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5220): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5220): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5220): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5140): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5220] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5220] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5220] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385443807 geckodriver INFO Listening on 127.0.0.1:42879 | |
1480385444807 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.oWTPa1TQqHLq | |
1480385444809 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385444811 geckodriver::marionette INFO Connecting to Marionette on localhost:45152 | |
(firefox:5387): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385445036 addons.manager DEBUG Application has been upgraded | |
1480385445053 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385445055 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385445060 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385445062 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385445063 addons.manager DEBUG Starting provider: XPIProvider | |
1480385445063 addons.xpi DEBUG startup | |
1480385445064 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385445065 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385445065 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385445065 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385445066 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385445066 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385445067 addons.xpi DEBUG checkForChanges | |
1480385445067 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385445068 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385445069 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445070 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385445071 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445071 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385445071 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445072 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385445072 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445073 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385445073 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385445073 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385445081 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.oWTPa1TQqHLq/extensions.json | |
1480385445082 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385445093 DeferredSave.extensions.json DEBUG Save changes | |
1480385445094 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385445096 DeferredSave.extensions.json DEBUG Starting timer | |
1480385445098 DeferredSave.extensions.json DEBUG Save changes | |
1480385445098 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385445103 DeferredSave.extensions.json DEBUG Save changes | |
1480385445103 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385445107 DeferredSave.extensions.json DEBUG Save changes | |
1480385445108 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385445112 DeferredSave.extensions.json DEBUG Save changes | |
1480385445113 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385445121 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385445136 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385445136 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385445136 DeferredSave.extensions.json DEBUG Save changes | |
1480385445137 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385445138 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385445141 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385445141 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385445141 DeferredSave.extensions.json DEBUG Save changes | |
1480385445141 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385445142 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385445145 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385445146 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385445146 DeferredSave.extensions.json DEBUG Save changes | |
1480385445147 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385445147 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385445148 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385445149 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385445149 DeferredSave.extensions.json DEBUG Save changes | |
1480385445149 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385445149 DeferredSave.extensions.json DEBUG Save changes | |
1480385445150 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{63d84cc2-7fb9-45c4-9831-94e3320a0405}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385445150 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445150 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{caf9a433-dd7c-424e-a07c-a25c24ceb4ca}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385445150 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445151 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2646d377-5e1d-44b8-905b-8af3f135074f}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385445151 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445151 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c8af6056-46a5-40fb-910f-132849855a8c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385445151 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385445152 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{da6c2408-9423-48c2-bda6-3d4f06464f22}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385445152 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385445153 DeferredSave.extensions.json DEBUG Save changes | |
1480385445153 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385445153 addons.xpi-utils DEBUG Updating add-on states | |
1480385445154 addons.xpi-utils DEBUG Writing add-ons list | |
1480385445154 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385445155 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385445156 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385445157 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385445157 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385445157 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385445158 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385445158 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385445160 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385445160 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385445160 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385445160 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385445161 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385445161 addons.manager DEBUG Starting provider: GMPProvider | |
1480385445168 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385445168 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385445168 addons.manager DEBUG Starting provider: PluginProvider | |
1480385445169 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385445169 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385445169 addons.manager DEBUG Completed startup sequence | |
1480385445423 Marionette INFO Listening on port 45152 | |
1480385445778 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385445779 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385445779 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385445795 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385445795 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385445796 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385445800 DeferredSave.extensions.json DEBUG Starting write | |
1480385445937 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385445938 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5469): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5469): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5469): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5469): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5387): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5469] WARNING: pipe error (26): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5469] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5469] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5469] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385448405 geckodriver INFO Listening on 127.0.0.1:38085 | |
1480385449405 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.DzdXfFTq5UzB | |
1480385449407 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385449409 geckodriver::marionette INFO Connecting to Marionette on localhost:45160 | |
(firefox:5631): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385449643 addons.manager DEBUG Application has been upgraded | |
1480385449661 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385449663 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385449668 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385449670 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385449671 addons.manager DEBUG Starting provider: XPIProvider | |
1480385449672 addons.xpi DEBUG startup | |
1480385449672 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385449673 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385449673 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385449674 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385449674 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385449675 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385449675 addons.xpi DEBUG checkForChanges | |
1480385449676 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385449677 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385449678 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449679 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385449679 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449679 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385449680 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449681 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385449681 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449681 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385449682 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385449682 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385449691 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.DzdXfFTq5UzB/extensions.json | |
1480385449692 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385449703 DeferredSave.extensions.json DEBUG Save changes | |
1480385449703 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385449706 DeferredSave.extensions.json DEBUG Starting timer | |
1480385449707 DeferredSave.extensions.json DEBUG Save changes | |
1480385449707 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385449712 DeferredSave.extensions.json DEBUG Save changes | |
1480385449713 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385449717 DeferredSave.extensions.json DEBUG Save changes | |
1480385449718 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385449722 DeferredSave.extensions.json DEBUG Save changes | |
1480385449722 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385449729 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385449743 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385449743 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385449743 DeferredSave.extensions.json DEBUG Save changes | |
1480385449744 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385449745 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385449748 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385449748 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385449748 DeferredSave.extensions.json DEBUG Save changes | |
1480385449748 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385449749 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385449752 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385449753 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385449753 DeferredSave.extensions.json DEBUG Save changes | |
1480385449754 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385449754 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385449756 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385449756 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385449756 DeferredSave.extensions.json DEBUG Save changes | |
1480385449756 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385449756 DeferredSave.extensions.json DEBUG Save changes | |
1480385449757 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{41a0151f-1e2c-46cd-b821-580f539c3b2b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385449757 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449757 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{439ebded-7491-4130-bf4b-a4b2a2802a1e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385449757 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449758 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e80ce4e0-de34-401a-95e1-658de1c4fa32}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385449758 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449758 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1a954e4f-ed85-4659-8ef9-541656a3192e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385449758 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385449759 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{9acd3eb6-01b5-409e-99ae-d6fd44423108}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385449759 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385449760 DeferredSave.extensions.json DEBUG Save changes | |
1480385449760 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385449760 addons.xpi-utils DEBUG Updating add-on states | |
1480385449761 addons.xpi-utils DEBUG Writing add-ons list | |
1480385449762 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385449762 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385449764 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385449764 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385449764 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385449765 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385449765 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385449765 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385449767 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385449768 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385449768 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385449768 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385449768 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385449769 addons.manager DEBUG Starting provider: GMPProvider | |
1480385449776 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385449776 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385449776 addons.manager DEBUG Starting provider: PluginProvider | |
1480385449776 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385449776 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385449777 addons.manager DEBUG Completed startup sequence | |
1480385450043 Marionette INFO Listening on port 45160 | |
1480385450407 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385450407 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385450407 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385450425 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385450426 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385450427 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385450433 DeferredSave.extensions.json DEBUG Starting write | |
1480385450578 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385450579 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5708): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5708): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5708): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5708): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5631): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5708] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5708] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480385453248 geckodriver INFO Listening on 127.0.0.1:51099 | |
1480385454248 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.tfxcfECibHZP | |
1480385454250 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480385454253 geckodriver::marionette INFO Connecting to Marionette on localhost:57295 | |
(firefox:5874): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480385454496 addons.manager DEBUG Application has been upgraded | |
1480385454517 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480385454519 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480385454523 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480385454526 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480385454527 addons.manager DEBUG Starting provider: XPIProvider | |
1480385454527 addons.xpi DEBUG startup | |
1480385454528 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480385454529 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385454529 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385454529 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385454530 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480385454530 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480385454531 addons.xpi DEBUG checkForChanges | |
1480385454531 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480385454532 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385454533 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454534 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385454535 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454535 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385454536 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454536 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480385454536 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454537 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480385454537 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385454538 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480385454546 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.tfxcfECibHZP/extensions.json | |
1480385454547 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480385454558 DeferredSave.extensions.json DEBUG Save changes | |
1480385454558 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385454561 DeferredSave.extensions.json DEBUG Starting timer | |
1480385454562 DeferredSave.extensions.json DEBUG Save changes | |
1480385454562 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385454567 DeferredSave.extensions.json DEBUG Save changes | |
1480385454567 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480385454572 DeferredSave.extensions.json DEBUG Save changes | |
1480385454573 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480385454577 DeferredSave.extensions.json DEBUG Save changes | |
1480385454577 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385454584 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385454597 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480385454598 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385454598 DeferredSave.extensions.json DEBUG Save changes | |
1480385454599 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385454599 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385454602 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385454602 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385454603 DeferredSave.extensions.json DEBUG Save changes | |
1480385454603 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385454604 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385454606 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480385454608 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385454608 DeferredSave.extensions.json DEBUG Save changes | |
1480385454608 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480385454609 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480385454610 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480385454610 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480385454611 DeferredSave.extensions.json DEBUG Save changes | |
1480385454611 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480385454611 DeferredSave.extensions.json DEBUG Save changes | |
1480385454611 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a234ed92-ed85-4912-af51-bee21f3041f4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385454612 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454612 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3e25c37c-9b24-4edf-a48a-cf9c3518f049}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480385454612 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454612 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4cfbb9b5-ad4c-47e5-a65f-3933bb5d2664}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385454613 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454613 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{30705717-0dda-43a0-bded-39172c76b190}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480385454613 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480385454613 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{449455ff-02e3-495d-81ed-f8a6b4f5d446}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480385454613 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480385454615 DeferredSave.extensions.json DEBUG Save changes | |
1480385454615 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480385454615 addons.xpi-utils DEBUG Updating add-on states | |
1480385454615 addons.xpi-utils DEBUG Writing add-ons list | |
1480385454616 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385454617 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480385454618 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385454619 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385454619 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385454619 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480385454620 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480385454620 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480385454622 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480385454622 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480385454622 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480385454622 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480385454622 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480385454623 addons.manager DEBUG Starting provider: GMPProvider | |
1480385454630 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480385454630 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480385454630 addons.manager DEBUG Starting provider: PluginProvider | |
1480385454631 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480385454631 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480385454631 addons.manager DEBUG Completed startup sequence | |
1480385454883 Marionette INFO Listening on port 57295 | |
1480385455262 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480385455262 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480385455263 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480385455278 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480385455278 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480385455279 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480385455283 DeferredSave.extensions.json DEBUG Starting write | |
1480385455415 DeferredSave.extensions.json DEBUG Write succeeded | |
1480385455416 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5956): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5956): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5956): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5956): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5874): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5956] WARNING: pipe error (26): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5956] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5956] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5956] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480494025861 geckodriver INFO Listening on 127.0.0.1:43870 | |
1480494026841 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.HTFk5fkrMrnx | |
1480494026844 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480494026871 geckodriver::marionette INFO Connecting to Marionette on localhost:35965 | |
(firefox:949): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480494027709 addons.manager DEBUG Application has been upgraded | |
1480494027742 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480494027745 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480494027749 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480494027751 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480494027752 addons.manager DEBUG Starting provider: XPIProvider | |
1480494027753 addons.xpi DEBUG startup | |
1480494027754 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480494027764 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494027764 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494027765 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494027765 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494027766 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480494027767 addons.xpi DEBUG checkForChanges | |
1480494027767 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480494027769 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494027770 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027770 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494027771 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027771 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494027772 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027772 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494027772 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027773 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480494027774 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480494027774 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480494027783 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.HTFk5fkrMrnx/extensions.json | |
1480494027784 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480494027811 DeferredSave.extensions.json DEBUG Save changes | |
1480494027811 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494027820 DeferredSave.extensions.json DEBUG Starting timer | |
1480494027821 DeferredSave.extensions.json DEBUG Save changes | |
1480494027821 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494027827 DeferredSave.extensions.json DEBUG Save changes | |
1480494027827 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494027831 DeferredSave.extensions.json DEBUG Save changes | |
1480494027832 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480494027836 DeferredSave.extensions.json DEBUG Save changes | |
1480494027836 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494027843 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494027856 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480494027856 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494027857 DeferredSave.extensions.json DEBUG Save changes | |
1480494027858 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494027858 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494027861 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494027861 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494027861 DeferredSave.extensions.json DEBUG Save changes | |
1480494027862 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494027862 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494027866 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480494027868 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494027868 DeferredSave.extensions.json DEBUG Save changes | |
1480494027868 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494027869 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494027871 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494027871 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494027871 DeferredSave.extensions.json DEBUG Save changes | |
1480494027871 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480494027872 DeferredSave.extensions.json DEBUG Save changes | |
1480494027872 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{928589c2-821f-4b75-ba59-58b0d1b42ed3}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494027872 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027873 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{597d024a-d536-4e36-a9f7-6cc6a6f9e07b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480494027873 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027874 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3d321e9b-70b8-47c2-9d33-f4d00fc8ccc7}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494027874 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027874 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fa3b40db-0218-47d5-b9a3-cb7ae53dc444}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494027874 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494027875 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4c49cbd4-101b-4b6f-bd00-91da73090405}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480494027875 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480494027876 DeferredSave.extensions.json DEBUG Save changes | |
1480494027876 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480494027876 addons.xpi-utils DEBUG Updating add-on states | |
1480494027877 addons.xpi-utils DEBUG Writing add-ons list | |
1480494027878 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494027878 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480494027880 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494027880 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480494027880 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494027881 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480494027881 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494027881 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480494027883 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480494027883 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480494027884 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480494027884 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480494027884 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480494027884 addons.manager DEBUG Starting provider: GMPProvider | |
1480494027892 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480494027892 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480494027892 addons.manager DEBUG Starting provider: PluginProvider | |
1480494027892 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480494027892 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480494027893 addons.manager DEBUG Completed startup sequence | |
1480494028193 Marionette INFO Listening on port 35965 | |
1480494028394 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480494028394 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480494028394 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480494028410 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480494028410 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480494028411 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480494028415 DeferredSave.extensions.json DEBUG Starting write | |
1480494028580 DeferredSave.extensions.json DEBUG Write succeeded | |
1480494028581 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1079): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1079): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1079): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1079): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:949): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:949): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7feaff7205b0' of type 'MaiAtkType13b' | |
(firefox:949): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:949): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7feb0d9b5290' of type 'MaiAtkType13b' | |
(firefox:949): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7feb015ef790' of type 'MaiAtkType13b' | |
[Child 1079] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1079] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1079] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480494036932 geckodriver INFO Listening on 127.0.0.1:44486 | |
1480494037931 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.u39F4sjtcAGU | |
1480494037933 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480494037936 geckodriver::marionette INFO Connecting to Marionette on localhost:48092 | |
(firefox:1363): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480494038162 addons.manager DEBUG Application has been upgraded | |
1480494038182 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480494038184 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480494038189 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480494038191 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480494038192 addons.manager DEBUG Starting provider: XPIProvider | |
1480494038192 addons.xpi DEBUG startup | |
1480494038193 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480494038194 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494038194 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494038195 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494038195 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494038196 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480494038197 addons.xpi DEBUG checkForChanges | |
1480494038197 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480494038198 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494038199 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038200 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494038200 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038201 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494038201 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038202 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494038202 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038203 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480494038203 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480494038204 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480494038213 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.u39F4sjtcAGU/extensions.json | |
1480494038214 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480494038226 DeferredSave.extensions.json DEBUG Save changes | |
1480494038227 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494038230 DeferredSave.extensions.json DEBUG Starting timer | |
1480494038231 DeferredSave.extensions.json DEBUG Save changes | |
1480494038231 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494038237 DeferredSave.extensions.json DEBUG Save changes | |
1480494038237 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494038242 DeferredSave.extensions.json DEBUG Save changes | |
1480494038243 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480494038247 DeferredSave.extensions.json DEBUG Save changes | |
1480494038248 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494038256 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494038271 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480494038271 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494038271 DeferredSave.extensions.json DEBUG Save changes | |
1480494038273 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494038273 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494038277 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494038277 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494038277 DeferredSave.extensions.json DEBUG Save changes | |
1480494038277 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494038278 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494038281 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480494038283 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494038283 DeferredSave.extensions.json DEBUG Save changes | |
1480494038283 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494038284 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494038285 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494038286 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494038286 DeferredSave.extensions.json DEBUG Save changes | |
1480494038286 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480494038287 DeferredSave.extensions.json DEBUG Save changes | |
1480494038287 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b8d85ca0-8e85-49b4-8d6b-e125fe4a5176}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494038287 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038288 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9786fb57-9c68-4cb1-8db0-9afa707b468c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480494038288 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038288 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{32184966-8b6a-4740-8d92-a0207be12f98}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494038288 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038289 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d11b22c8-3390-44f8-b212-797858f8758c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494038289 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494038289 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{bbf46e7f-246a-4e8b-b994-19d761084382}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480494038289 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480494038290 DeferredSave.extensions.json DEBUG Save changes | |
1480494038291 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480494038291 addons.xpi-utils DEBUG Updating add-on states | |
1480494038291 addons.xpi-utils DEBUG Writing add-ons list | |
1480494038292 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494038293 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480494038294 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494038295 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480494038295 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494038295 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480494038296 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480494038296 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480494038298 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480494038299 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480494038299 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480494038299 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480494038299 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480494038299 addons.manager DEBUG Starting provider: GMPProvider | |
1480494038308 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480494038308 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480494038308 addons.manager DEBUG Starting provider: PluginProvider | |
1480494038308 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480494038309 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480494038309 addons.manager DEBUG Completed startup sequence | |
1480494038481 Marionette INFO Listening on port 48092 | |
1480494038661 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480494038661 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480494038662 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480494038677 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480494038677 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480494038679 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480494038681 DeferredSave.extensions.json DEBUG Starting write | |
1480494038802 DeferredSave.extensions.json DEBUG Write succeeded | |
1480494038803 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1437): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1437): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1437): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1437): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1363): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1363): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff4abda3970' of type 'MaiAtkType13b' | |
(firefox:1363): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1363): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff4acf5c380' of type 'MaiAtkType13b' | |
(firefox:1363): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff4acf5c830' of type 'MaiAtkType13b' | |
(firefox:1363): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff4abdb2a60' of type 'MaiAtkType13b' | |
[Child 1437] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1437] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1437] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480494047836 geckodriver INFO Listening on 127.0.0.1:54135 | |
1480494048836 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.ZWRbHeSea7zz | |
1480494048842 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480494048845 geckodriver::marionette INFO Connecting to Marionette on localhost:50703 | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480494049053 addons.manager DEBUG Application has been upgraded | |
1480494049071 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480494049073 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480494049077 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480494049079 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480494049080 addons.manager DEBUG Starting provider: XPIProvider | |
1480494049081 addons.xpi DEBUG startup | |
1480494049081 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480494049082 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494049082 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494049083 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494049083 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480494049084 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480494049084 addons.xpi DEBUG checkForChanges | |
1480494049085 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480494049086 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494049087 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049087 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494049088 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049088 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494049089 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049089 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480494049089 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049090 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480494049090 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480494049091 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480494049099 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.ZWRbHeSea7zz/extensions.json | |
1480494049100 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480494049110 DeferredSave.extensions.json DEBUG Save changes | |
1480494049111 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494049113 DeferredSave.extensions.json DEBUG Starting timer | |
1480494049114 DeferredSave.extensions.json DEBUG Save changes | |
1480494049114 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494049119 DeferredSave.extensions.json DEBUG Save changes | |
1480494049119 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480494049124 DeferredSave.extensions.json DEBUG Save changes | |
1480494049125 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480494049128 DeferredSave.extensions.json DEBUG Save changes | |
1480494049129 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494049135 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494049148 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480494049148 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494049149 DeferredSave.extensions.json DEBUG Save changes | |
1480494049150 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494049150 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494049153 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494049153 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494049153 DeferredSave.extensions.json DEBUG Save changes | |
1480494049154 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494049154 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494049157 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480494049158 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494049159 DeferredSave.extensions.json DEBUG Save changes | |
1480494049159 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480494049159 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480494049161 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480494049161 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480494049161 DeferredSave.extensions.json DEBUG Save changes | |
1480494049161 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480494049161 DeferredSave.extensions.json DEBUG Save changes | |
1480494049162 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7b64dad5-d7ea-42a0-b901-f0f23f902d19}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494049162 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049162 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{783fe569-e9a4-4f7b-8961-2a5de43f233e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480494049162 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049163 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{dd461041-04d0-4c38-8e2f-4238b4e5d04c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494049163 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480494049163 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{aab829b0-78dc-476b-9850-1e88e1b2445a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480494049163 addons.xpi DEBUG getModTime: Recursive scan of [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment