| Product | URL | Version |
|---|---|---|
| Connect | http://localhost:3939 | 2026.06.1 |
| Workbench | http://localhost:8787 | 2026.07.1+147.pro6 |
| Package Manager | http://localhost:4242 | 2024.08.0-6 |
VIP Report
Verified Installation of Posit
Deployment: CI Connect 2026.06.1 + WB 2026.07.1+147.pro6 + PM 2024.08.0-6 Generated: 2026-07-21 23:19:46 UTC
Products Under Test
Summary
| Metric | Count |
|---|---|
| Total | 26 |
| Passed | 18 |
| Failed | 2 |
| Skipped | 6 |
| Status | FAIL |
Results
Failed (2)
Connect1 tests
FAILUsers can be listedConnect
As a Posit Team administrator
src/vip_tests/connect/test_users.py::test_list_users0.40s
Test procedure
- Given Connect is accessible at the configured URL
- When I list all users
- Then the user list is not empty
- And the test user exists in the user list
Error traceback
fixturefunc = <function check_test_user_in_list at 0x7f3d63bf1a60>
request = <FixtureRequest for <Function test_list_users>>
kwargs = {'user_list': [{'email': '', 'username': '__bootstrap_admin__', 'first_name': '', 'last_name': '', ...}], 'test_username': 'testuser'}
def call_fixture_func(
fixturefunc: _FixtureFunc[FixtureValue], request: FixtureRequest, kwargs
) -> FixtureValue:
if inspect.isgeneratorfunction(fixturefunc):
fixturefunc = cast(Callable[..., Generator[FixtureValue]], fixturefunc)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.14/site-packages/_pytest/fixtures.py:1005:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
user_list = [{'email': '', 'username': '__bootstrap_admin__', 'first_name': '', 'last_name': '', ...}]
test_username = 'testuser'
@then("the test user exists in the user list")
def check_test_user_in_list(user_list, test_username):
if not test_username or not test_username.strip():
pytest.skip("No test user configured — skipping user lookup assertion")
test_username = test_username.strip()
expected = test_username.split("@", 1)[0]
usernames = [u.get("username") for u in user_list]
> assert expected in usernames, (
f"Test user {expected!r} (from {test_username!r}) not found in user list: {usernames}"
)
E AssertionError: Test user 'testuser' (from 'testuser') not found in user list: ['__bootstrap_admin__']
E assert 'testuser' in ['__bootstrap_admin__']
src/vip_tests/connect/test_users.py:58: AssertionErrorWorkbench1 tests
FAILUser can log in to Workbench via the web UIWorkbench
As a Posit Team administrator
src/vip_tests/workbench/test_auth.py::test_workbench_login[chromium]4.93s
Test procedure
- Given Workbench is accessible at the configured URL
- When a user navigates to the Workbench login page and enters valid credentials
- Then the Workbench homepage is displayed
- And the current user element is visible and non-empty in the header
Error traceback
fixturefunc = <function navigate_and_login at 0x7f3d63a48040>
request = <FixtureRequest for <Function test_workbench_login[chromium]>>
kwargs = {'page': <Page url='http://localhost:8787/auth-sign-in?appUri=%2F&error=2'>, 'workbench_url': 'http://localhost:8787', 'test_username': 'testuser', 'test_password': '1YUVm04nsz8jX4DK'}
def call_fixture_func(
fixturefunc: _FixtureFunc[FixtureValue], request: FixtureRequest, kwargs
) -> FixtureValue:
if inspect.isgeneratorfunction(fixturefunc):
fixturefunc = cast(Callable[..., Generator[FixtureValue]], fixturefunc)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.14/site-packages/_pytest/fixtures.py:1005:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
src/vip_tests/workbench/test_auth.py:82: in navigate_and_login
workbench_login(page, workbench_url, test_username, test_password)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
page = <Page url='http://localhost:8787/auth-sign-in?appUri=%2F&error=2'>
workbench_url = 'http://localhost:8787', username = 'testuser'
password = '1YUVm04nsz8jX4DK', auth_provider = 'password'
interactive_auth = False, auth_mode = 'none', workbench_auth_error = None
max_retries = 3, retry_delay = 2.0
def workbench_login(
page: Page,
workbench_url: str,
username: str,
password: str,
auth_provider: str = "password",
interactive_auth: bool = False,
*,
auth_mode: str = "none",
workbench_auth_error: str | None = None,
max_retries: int = 3,
retry_delay: float = 2.0,
) -> None:
"""Navigate to Workbench homepage, logging in only if required.
This function:
- Navigates directly to Workbench's URL
- Handles OIDC/SSO via pre-loaded storage state (--interactive-auth / --headless-auth)
- Only fills login form for password auth
- Retries on transient server errors (e.g., too many logins)
Args:
page: Playwright page object
workbench_url: Base URL for Workbench (e.g., http://localhost:8787)
username: Login username
password: Login password
auth_provider: Auth type (e.g., "password", "oidc", "saml")
interactive_auth: True when an auth session is pre-loaded (either
--interactive-auth or --headless-auth)
auth_mode: Active auth mode ("interactive", "headless", or "none"),
used to name the responsible CLI flag in skip messages
workbench_auth_error: Reason the pre-test auth flow could not
establish a Workbench session, if known. Quoted in the skip
message so users see the real cause instead of a guess.
max_retries: Max login attempts on transient errors (default 3)
retry_delay: Seconds to wait between retries (default 2.0)
Raises:
pytest.skip: For non-password auth without a pre-loaded auth session,
or when the session's storage state doesn't cover Workbench
AssertionError: When password login fails after retries
"""
homepage_logo = page.locator(Homepage.POSIT_LOGO)
# For non-password auth without a pre-loaded auth session, skip immediately
if auth_provider != "password" and not interactive_auth:
pytest.skip(
f"Login form not available for auth provider {auth_provider!r}. "
"Pass --interactive-auth or --headless-auth to pre-load browser storage state."
)
page.goto(workbench_url)
page.wait_for_load_state("load")
# Fast path: already logged in (common with interactive_auth)?
if homepage_logo.is_visible():
return
# Check if we landed on a login/IdP page
if _on_login_page(page.url):
# The sign-in page renders client-side after ``load``; wait once for
# either the password form's username field or an OIDC "Sign in with ..."
# button to appear before deciding which flow applies. A short fixed wait
# on only the SSO button races the render and can misread a slow OIDC
# sign-in page (e.g. an ``?error=2`` bounce) as a password deployment --
# which then fails the retry loop with "Login failed after 3 attempts"
# instead of skipping. Waiting for either control settles that race
# without penalising real password deployments (the username field
# appears promptly there).
try:
page.locator(f"{LoginPage.USERNAME}, button:has-text('Sign in')").first.wait_for(
state="visible", timeout=TIMEOUT_PAGE_LOAD
)
except Exception:
pass
# An OIDC sign-in page shows a "Sign in with ..." button and no username
# field. The "sign in" role-name also matches a password form's submit
# button, so the *absence* of the username field is what distinguishes a
# true SSO-only page from a password form.
sso_button = page.get_by_role("button", name=re.compile(r"sign in", re.IGNORECASE)).first
sso_only = sso_button.is_visible() and not page.locator(LoginPage.USERNAME).is_visible()
if interactive_auth and sso_only:
# Storage state was pre-loaded by --interactive-auth / --headless-auth.
# Workbench's SSO sign-in page does not auto-redirect to the IdP; it renders a
# "Sign in with OpenID" button. Clicking it triggers a silent SSO round-trip
# using the saved IdP cookies. The round-trip is serialized across xdist
# workers (see _silent_sso_signin / oidc_login_lock) to avoid storming the
# shared IdP session (#484/#467).
if _silent_sso_signin(sso_button, homepage_logo, workbench_url):
return # Silent SSO succeeded
# No usable IdP session (expired, or storage state was stripped for the
# password-login test) — skip gracefully.
pytest.skip(
_workbench_session_skip_message(
auth_mode=auth_mode,
workbench_auth_error=workbench_auth_error,
landed_url=page.url,
)
)
if auth_provider != "password":
pytest.skip(
_workbench_session_skip_message(
auth_mode=auth_mode,
workbench_auth_error=workbench_auth_error,
landed_url=page.url,
)
)
# Even when auth_provider is reported as "password", the deployment may
# actually present an SSO/OIDC sign-in page (a "Sign in with ..." button
# and no username field) — e.g. auth_provider defaulted to "password" on
# a config-less run against an OIDC deployment. The password login form
# is unavailable there, so skip rather than fail the retry loop.
if sso_only:
pytest.skip(
"Workbench is configured for SSO/OIDC (no password login form); "
"the password-login scenario does not apply. Pass --interactive-auth "
"or --headless-auth to exercise authenticated Workbench tests."
)
# Password auth - proceed with form login below
else:
# Not on homepage, not on login page - unexpected state
# Give it one more check in case page is still loading
try:
homepage_logo.wait_for(state="visible", timeout=TIMEOUT_QUICK)
return
except Exception:
pass
# Password authentication with retry logic
login_form = page.locator(LoginPage.USERNAME)
error_panel = page.locator(LoginPage.ERROR_PANEL)
for attempt in range(max_retries):
if attempt > 0:
time.sleep(retry_delay)
page.goto(workbench_url)
# Fast path check on retry
if homepage_logo.is_visible():
return
# Wait for login form to be ready
try:
login_form.wait_for(state="visible", timeout=TIMEOUT_QUICK)
except Exception:
continue
# Fill and submit
page.fill(LoginPage.USERNAME, username)
page.fill(LoginPage.PASSWORD, password)
stay_signed_in = page.locator(LoginPage.STAY_SIGNED_IN)
if stay_signed_in.is_visible() and not stay_signed_in.is_checked():
stay_signed_in.click()
page.click(LoginPage.BUTTON)
# Wait for either homepage (success) or error panel (failure)
homepage_or_error = homepage_logo.or_(error_panel)
try:
homepage_or_error.wait_for(state="visible", timeout=TIMEOUT_PAGE_LOAD)
except Exception:
if attempt == max_retries - 1:
raise AssertionError(f"Login failed after {max_retries} attempts: no response")
continue
# Check which one appeared
if homepage_logo.is_visible():
return # Success!
# Error appeared - extract message and maybe retry
if attempt == max_retries - 1:
error_text = page.locator(LoginPage.ERROR_TEXT).text_content()
> raise AssertionError(f"Login failed: {error_text or 'Unknown error'}")
E AssertionError: Login failed: Error: Temporary server error, please try again
src/vip_tests/workbench/conftest.py:610: AssertionErrorPassed (18)
Connect6 tests
PASSUser can log in via the web UIConnect
As a Posit Team administrator
src/vip_tests/connect/test_auth.py::test_connect_login_ui3.70s
Test procedure
- Given Connect is accessible at the configured URL
- When a user navigates to the Connect login page
- And enters valid credentials
- Then the user is successfully authenticated
- And the Connect dashboard is displayed
PASSAPI key authentication worksConnect
As a Posit Team administrator
src/vip_tests/connect/test_auth.py::test_connect_login_api0.40s
Test procedure
- Given Connect is accessible at the configured URL
- And a valid API key is configured
- When I request the current user via the API
- Then the API returns user information
PASSAdmin user exists and has admin privilegesConnect
As a Posit Team administrator
src/vip_tests/connect/test_users.py::test_admin_user0.40s
Test procedure
- Given Connect is accessible at the configured URL
- When I retrieve the current user profile
- Then the user has admin privileges
PASSGroups can be listedConnect
As a Posit Team administrator
src/vip_tests/connect/test_users.py::test_list_groups0.40s
Test procedure
- Given Connect is accessible at the configured URL
- When I list all groups
- Then the response is successful
PASSExpected Quarto versions are availableConnect
As a Posit Team administrator
src/vip_tests/connect/test_runtime_versions.py::test_quarto_versions0.40s
Test procedure
- Given Connect is accessible at the configured URL
- When I query Connect for available Quarto versions
- Then at least one Quarto version is available
PASSConnect system checks can be run and the report downloadedConnect
As a Posit Team administrator
src/vip_tests/connect/test_system_checks.py::test_connect_system_checks29.59s
Test procedure
- Given Connect is accessible at the configured URL
- And a valid API key is configured
- When I trigger a new system check run via the Connect API
- Then the system check report is returned
- And I can download the system check report artifact
Package Manager2 tests
PASSCRAN mirror is accessiblePackage Manager
As a Posit Team administrator
src/vip_tests/package_manager/test_repos.py::test_cran_mirror0.67s
Test procedure
- Given Package Manager is running
- When I query the CRAN repository for the "Matrix" package
- Then the package is found in the repository
PASSAt least one repository is configuredPackage Manager
As a Posit Team administrator
src/vip_tests/package_manager/test_repos.py::test_repo_exists0.04s
Test procedure
- Given Package Manager is running
- When I list all repositories
- Then at least one repository exists
Prerequisites6 tests
PASSWorkbench server is reachablePrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_components.py::test_product_server_is_reachable[Workbench]0.12s
Test procedure
- Given <product> is configured in vip.toml
- When I request the <product> health endpoint
- Then the server responds with a successful status code
PASSPackage Manager server is reachablePrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_components.py::test_product_server_is_reachable[Package Manager]0.05s
Test procedure
- Given <product> is configured in vip.toml
- When I request the <product> health endpoint
- Then the server responds with a successful status code
PASSWorkbench server is reachable but not configuredPrerequisites
As a VIP developer
src/vip_tests/prerequisites/test_expected_failure.py::test_workbench_expected_failure0.00s
Test procedure
- Given Workbench is expected to be configured
- When I check the Workbench configuration
- Then Workbench should be reachable
PASSConnect version matches configurationPrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_versions.py::test_connect_version0.20s
Test procedure
- Given Connect is configured in vip.toml with a version expectation
- When I fetch the Connect server version
- Then the Connect version matches the configured value
PASSPackage Manager version matches configurationPrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_versions.py::test_package_manager_version0.05s
Test procedure
- Given Package Manager is configured in vip.toml with a version expectation
- When I fetch the Package Manager server version
- Then the Package Manager version matches the configured value
PASSConnect server is reachablePrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_components.py::test_product_server_is_reachable[Connect]0.01s
Test procedure
- Given <product> is configured in vip.toml
- When I request the <product> health endpoint
- Then the server responds with a successful status code
Security3 tests
PASSUnauthenticated API request returns 401Security
As a Posit Team administrator
src/vip_tests/security/test_error_handling.py::test_unauthenticated_api_request_returns_4010.01s
Test procedure
- Given Connect is configured in vip.toml
- When I make an unauthenticated API request to Connect
- Then the response status is 401
PASSNon-existent endpoint returns 404Security
As a Posit Team administrator
src/vip_tests/security/test_error_handling.py::test_nonexistent_endpoint_returns_4040.01s
Test procedure
- Given Connect is configured in vip.toml
- When I request a non-existent endpoint on Connect
- Then the response status is 404
PASSInvalid API key returns 401Security
As a Posit Team administrator
src/vip_tests/security/test_error_handling.py::test_invalid_api_key_returns_4013.91s
Test procedure
- Given Connect is configured in vip.toml
- When I make an API request to Connect with an invalid key
- Then the response status is 401
Workbench1 tests
PASSUser can sign out of WorkbenchWorkbench
As a Posit Team administrator
src/vip_tests/workbench/test_auth.py::test_workbench_signout[chromium]0.77s
Test procedure
- Given Workbench is accessible and I am logged in
- When I sign out of Workbench
- Then I am redirected to the Workbench login page
Skipped (6)
Connect2 tests
SKIPExpected R versions are available on ConnectConnect
As a Posit Team administrator
src/vip_tests/connect/test_runtime_versions.py::test_r_versions0.20s
Test procedure
- Given Connect is accessible at the configured URL
- And expected R versions are specified in vip.toml
- When I query Connect for available R versions
- Then all expected R versions are present
SKIPExpected Python versions are available on ConnectConnect
As a Posit Team administrator
src/vip_tests/connect/test_runtime_versions.py::test_python_versions0.20s
Test procedure
- Given Connect is accessible at the configured URL
- And expected Python versions are specified in vip.toml
- When I query Connect for available Python versions
- Then all expected Python versions are present
Package Manager3 tests
SKIPPyPI mirror is accessiblePackage Manager
As a Posit Team administrator
src/vip_tests/package_manager/test_repos.py::test_pypi_mirror0.04s
Test procedure
- Given Package Manager is running
- When I query the PyPI repository for the "requests" package
- Then the package is found in the repository
SKIPBioconductor mirror is accessiblePackage Manager
As a Posit Team administrator
src/vip_tests/package_manager/test_repos.py::test_bioconductor_mirror0.04s
Test procedure
- Given Package Manager is running
- When I query the Bioconductor repository for the "BiocGenerics" package
- Then the package is found in the repository
SKIPOpenVSX mirror is accessiblePackage Manager
As a Posit Team administrator
src/vip_tests/package_manager/test_repos.py::test_openvsx_mirror0.04s
Test procedure
- Given Package Manager is running
- When I query the OpenVSX repository for the "golang.Go" extension
- Then the package is found in the repository
Prerequisites1 tests
SKIPWorkbench version matches configurationPrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_versions.py::test_workbench_version0.01s
Test procedure
- Given Workbench is configured in vip.toml with a version expectation
- When I fetch the Workbench server version
- Then the Workbench version matches the configured value
Connect System Checks
Host: 6c4839c67a1f · Status: done · Passed: 53 · Failed: 2
| Group | Check | Detail | |
|---|---|---|---|
| ✅ | server | connect-versions | Connect versions on active hosts: 6c4839c67a1f 2026.06.1 |
| ✅ | server | connect-product-support | Product version v2026.06.1 end-of-support: 2027-12-31 |
| ✅ | server | connect-deprecated-settings | Deprecated settings are not in use. |
| ✅ | server | connect-removed-settings | Removed settings are not in use. |
| ✅ | server | connect-unrecognized-settings | Unrecognized settings are not in use. |
| ✅ | server | connect-notifications-config | All Notifications are correctly formatted |
| ✅ | server | connect-license | [redacted] |
| ✅ | server | linux-version | $ cat /etc/lsb-release /etc/os-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 DISTRIB_CODENAME=jammy DISTRIB_DESCRIPTION="Ubuntu 22.04.5 LTS" PRETTY_NAME="Ubuntu 22.04.5 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04.5 LTS (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME=jammy |
| ✅ | server | environment | $ env CONNECT_BOOTSTRAP_ENABLED=true CONNECT_BOOTSTRAP_SECRETKEY=REDACTED _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 HOME=/root HOSTNAME=6c4839c67a1f LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PWD=/ SHLVL=2 STARTUP_DEBUG_MODE=0 TERM=xterm TZ=UTC _=/usr/bin/env |
| ✅ | server | memory | $ free -h total used free shared buff/cache available Mem: 15Gi 1.4Gi 335Mi 48Mi 13Gi 13Gi Swap: 0B 0B 0B |
| ✅ | server | disk | $ df -h Filesystem Size Used Avail Use% Mounted on overlay 145G 55G 90G 38% / tmpfs 64M 0 64M 0% /dev shm 64M 0 64M 0% /dev/shm /dev/root 145G 55G 90G 38% /data |
| ✅ | server | database-latency | Database latency: median 0.000, max 0.000 sec |
| ✅ | server | queue-depth | ID Created Type Hostname Details |
| ✅ | server | self-connectivity | Server.Address is 'http://localhost:3939/' $ curl -Lsv -m 10 --retry 0 -o /dev/null http://localhost:3939//__api__/server_settings * Trying 127.0.0.1:3939... * Connected to localhost (127.0.0.1) port 3939 (#0) > GET //__api__/server_settings HTTP/1.1 > Host: localhost:3939 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 307 Temporary Redirect < Content-Type: text/html; charset=utf-8 < Location: http://localhost:3939/__api__/server_settings < Server: Posit Connect v2026.06.1 < X-Content-Type-Options: nosniff < X-Correlation-Id: REDACTED < X-Frame-Options: DENY < Date: Tue, 21 Jul 2026 23:19:16 GMT < Content-Length: 81 < * Ignoring the response-body { [81 bytes data] * Connection #0 to host localhost left intact * Issue another request to this URL: 'http://localhost:3939/__api__/server_settings' * Found bundle for host localhost: 0x55d0082b2b90 [serially] * Can not multiplex, even if we wanted to! * Re-using existing connection! (#0) with host localhost * Connected to localhost (127.0.0.1) port 3939 (#0) > GET /__api__/server_settings HTTP/1.1 > Host: localhost:3939 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 200 OK < Cache-Control: no-cache, no-store, must-revalidate < Content-Type: application/json; charset=utf-8 < Expires: 0 < Pragma: no-cache < Server: Posit Connect v2026.06.1 < X-Content-Type-Options: nosniff < X-Correlation-Id: REDACTED < X-Frame-Options: DENY < Date: Tue, 21 Jul 2026 23:19:16 GMT < Transfer-Encoding: chunked < { [3571 bytes data] * Connection #0 to host localhost left intact |
| ✅ | server | self-connectivity | HTTP.Listen is 'http://localhost:3939' $ curl -Lsv -m 10 --retry 0 -o /dev/null http://localhost:3939/__api__/server_settings * Trying 127.0.0.1:3939... * Connected to localhost (127.0.0.1) port 3939 (#0) > GET /__api__/server_settings HTTP/1.1 > Host: localhost:3939 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 200 OK < Cache-Control: no-cache, no-store, must-revalidate < Content-Type: application/json; charset=utf-8 < Expires: 0 < Pragma: no-cache < Server: Posit Connect v2026.06.1 < X-Content-Type-Options: nosniff < X-Correlation-Id: REDACTED < X-Frame-Options: DENY < Date: Tue, 21 Jul 2026 23:19:16 GMT < Transfer-Encoding: chunked < { [3571 bytes data] * Connection #0 to host localhost left intact |
| ✅ | server | self-connectivity | Warning: HTTPS.Listen is not configured. |
| ✅ | base-sandbox | echo | Successfully ran a process with rsandbox as rstudio-connect |
| ✅ | python-restore-sandbox | python-version | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:16.575142836 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:16.577016931 [connect-session] Job Key: [redacted] 2026/07/21 23:19:16.577054862 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:16.577062045 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:46031 ... Starting content session token refresher (interval: 12h0m0s) Connected to session server http://127.0.0.1:46031 2026/07/21 23:19:16.780855914 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/01-python-version.sh' 2026/07/21 23:19:16.817184940 2026/07/21 23:19:16.817194939 $ /opt/python/3.12.11/bin/python3.12 -V 2026/07/21 23:19:16.817241636 Python 3.12.11 Stopped session pings to http://127.0.0.1:46031 |
| ❌ | python-restore-sandbox | python-packages | process exited with code 1: exit status 1 |
| ✅ | python-restore-sandbox | environment | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:17.352660857 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:17.352859096 [connect-session] Job Key: [redacted] 2026/07/21 23:19:17.352868745 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:17.352872922 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:45825 ... Connected to session server http://127.0.0.1:45825 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:17.477797243 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/03-environment.sh' 2026/07/21 23:19:17.484209492 2026/07/21 23:19:17.484217978 $ env 2026/07/21 23:19:17.484263693 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:17.484265146 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:17.484285433 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:17.484286305 LANG=en_US.UTF-8 2026/07/21 23:19:17.484300532 LANGUAGE=en_US:en 2026/07/21 23:19:17.484301373 LC_ALL=en_US.UTF-8 2026/07/21 23:19:17.484314047 LOGNAME=rstudio-connect 2026/07/21 23:19:17.484314818 MAKEFLAGS=-j1 2026/07/21 23:19:17.484329105 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2026/07/21 23:19:17.484330007 PICOTEL_PREFIX=PICOTEL 2026/07/21 23:19:17.484347208 PICOTEL_SDK_DISABLED=true 2026/07/21 23:19:17.484348000 PICOTEL_SERVICE_NAME=posit-connect-python 2026/07/21 23:19:17.484364681 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:17.484365603 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:17.484380510 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:17.484381322 SHLVL=2 2026/07/21 23:19:17.484393775 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:17.484394607 TERM=xterm 2026/07/21 23:19:17.484407371 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:17.484408272 TZ=UTC 2026/07/21 23:19:17.484421908 USERNAME=rstudio-connect 2026/07/21 23:19:17.484422729 USER=rstudio-connect 2026/07/21 23:19:17.484435754 _=/usr/bin/env 2026/07/21 23:19:17.484436565 UV_CONCURRENT_BUILDS=1 |
| ✅ | python-restore-sandbox | mounts | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:17.499850163 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:17.500124364 [connect-session] Job Key: [redacted] 2026/07/21 23:19:17.500137870 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:17.500151275 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:36537 ... Connected to session server http://127.0.0.1:36537 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:17.625903671 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/04-mounts.sh' 2026/07/21 23:19:17.630147627 2026/07/21 23:19:17.630154239 $ findmnt --notruncate 2026/07/21 23:19:17.719225183 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:17.719235853 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/BQKBL LQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:17.719400368 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:17.719439961 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:17.719526683 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:17.719528326 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:17.719563802 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:17.719564734 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:17.719601703 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:17.719602504 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:17.719651025 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.719654451 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:17.719832724 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:17.719834096 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720013030 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720014402 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720120039 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720123496 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720178448 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/BIn8RX78TLnRxdtW] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720179490 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/python-environments] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:17.720437964 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace3961398878] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:17.720553269 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:17.720695535 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr Stopped session pings to http://127.0.0.1:36537 |
| ✅ | python-restore-sandbox | virtualenv | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:17.736438862 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:17.736701311 [connect-session] Job Key: [redacted] 2026/07/21 23:19:17.736716169 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:17.736721429 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:38771 ... Connected to session server http://127.0.0.1:38771 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:17.865402550 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/06-virtualenv.sh' 2026/07/21 23:19:17.875446962 2026/07/21 23:19:17.875456480 $ /opt/python/3.12.11/bin/python3.12 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.nlTbbMRB94/testenv 2026/07/21 23:19:20.659656175 2026/07/21 23:19:20.659668508 $ source /opt/rstudio-connect/mnt/tmp/tmp.nlTbbMRB94/testenv/bin/activate 2026/07/21 23:19:20.661088426 2026/07/21 23:19:20.661097363 $ python --version 2026/07/21 23:19:20.663058177 Python 3.12.11 2026/07/21 23:19:20.663367195 2026/07/21 23:19:20.663374729 $ python -m site 2026/07/21 23:19:20.675679164 sys.path = [ 2026/07/21 23:19:20.675686357 '/opt/rstudio-connect/mnt/app', 2026/07/21 23:19:20.675724829 '/opt/python/3.12.11/lib/python312.zip', 2026/07/21 23:19:20.675726081 '/opt/python/3.12.11/lib/python3.12', 2026/07/21 23:19:20.675741971 '/opt/python/3.12.11/lib/python3.12/lib-dynload', 2026/07/21 23:19:20.675743053 '/opt/rstudio-connect/mnt/tmp/tmp.nlTbbMRB94/testenv/lib/python3.12/site-packages', 2026/07/21 23:19:20.675771887 '/opt/python/3.12.11/lib/python3.12/site-packages', 2026/07/21 23:19:20.675772728 ] 2026/07/21 23:19:20.675786534 USER_BASE: '/opt/rstudio-connect/mnt/tmp/.local' (doesn't exist) 2026/07/21 23:19:20.675787445 USER_SITE: '/opt/rstudio-connect/mnt/tmp/.local/lib/python3.12/site-packages' (doesn't exist) 2026/07/21 23:19:20.675809717 ENABLE_USER_SITE: True Stopped session pings to http://127.0.0.1:38771 |
| ✅ | python-restore-sandbox | pip | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:20.721698507 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:20.721901556 [connect-session] Job Key: [redacted] 2026/07/21 23:19:20.721911575 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:20.721915362 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:40683 ... Connected to session server http://127.0.0.1:40683 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:20.846300807 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/07-pip.sh' 2026/07/21 23:19:20.851471541 2026/07/21 23:19:20.851479777 $ /opt/python/3.12.11/bin/python3.12 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv 2026/07/21 23:19:23.548469617 2026/07/21 23:19:23.548482871 $ source /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv/bin/activate 2026/07/21 23:19:23.549932947 2026/07/21 23:19:23.549940331 $ python -m pip --version 2026/07/21 23:19:23.723672533 pip 25.0.1 from /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv/lib/python3.12/site-packages/pip (python 3.12) 2026/07/21 23:19:23.745180479 2026/07/21 23:19:23.745189446 $ python -m pip config debug 2026/07/21 23:19:23.919715021 env_var: 2026/07/21 23:19:23.920026318 env: 2026/07/21 23:19:23.920244677 global: 2026/07/21 23:19:23.920448798 /etc/xdg/pip/pip.conf, exists: False 2026/07/21 23:19:23.920648090 /etc/pip.conf, exists: False 2026/07/21 23:19:23.920837683 site: 2026/07/21 23:19:23.921032607 /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv/pip.conf, exists: False 2026/07/21 23:19:23.921255339 user: 2026/07/21 23:19:23.921481223 /opt/rstudio-connect/mnt/tmp/.pip/pip.conf, exists: False 2026/07/21 23:19:23.921721191 /opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf, exists: False 2026/07/21 23:19:23.945165137 2026/07/21 23:19:23.945179323 $ python -m pip config list -v 2026/07/21 23:19:24.120194267 For variant 'global', will try loading '/etc/xdg/pip/pip.conf' 2026/07/21 23:19:24.120586403 For variant 'global', will try loading '/etc/pip.conf' 2026/07/21 23:19:24.120843678 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.pip/pip.conf' 2026/07/21 23:19:24.121159301 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf' 2026/07/21 23:19:24.121496546 For variant 'site', will try loading '/opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv/pip.conf' 2026/07/21 23:19:24.143186386 2026/07/21 23:19:24.143198188 $ python -m pip._vendor.requests.certs 2026/07/21 23:19:24.274298863 <frozen runpy>:128: RuntimeWarning: 'pip._vendor.requests.certs' found in sys.modules after import of package 'pip._vendor.requests', but prior to execution of 'pip._vendor.requests.certs'; this may result in unpredictable behaviour 2026/07/21 23:19:24.274511567 /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem 2026/07/21 23:19:24.288620740 2026/07/21 23:19:24.288631570 $ python -m pip download -v --no-cache-dir --dest /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz pip 2026/07/21 23:19:24.741702455 Collecting pip 2026/07/21 23:19:24.742093324 Obtaining dependency information for pip from https://files.pythonhosted.org/packages/5d/95/6b5cb3461ea5673ba0995989746db58eb18b91b54dbf331e72f569540946/pip-26.1.2-py3-none-any.whl.metadata 2026/07/21 23:19:24.768377016 Downloading pip-26.1.2-py3-none-any.whl.metadata (4.6 kB) 2026/07/21 23:19:24.778216777 Downloading pip-26.1.2-py3-none-any.whl (1.8 MB) 2026/07/21 23:19:24.826328793 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 54.4 MB/s eta 0:00:00 2026/07/21 23:19:24.837622589 Saved /opt/rstudio-connect/mnt/tmp/tmp.ludH1B0YJz/pip-26.1.2-py3-none-any.whl 2026/07/21 23:19:24.838007621 Successfully downloaded pip 2026/07/21 23:19:24.925709130 2026/07/21 23:19:24.925721283 [notice] A new release of pip is available: 25.0.1 -> 26.1.2 2026/07/21 23:19:24.925775915 [notice] To update, run: pip install --upgrade pip Stopped session pings to http://127.0.0.1:40683 |
| ✅ | python-restore-sandbox | pypi-connectivity | Bundle requested Python version 3.12.11; using /opt/python/3.12.11/bin/python3.12 from Local which has version 3.12.11 2026/07/21 23:19:25.016158304 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:25.016367514 [connect-session] Job Key: [redacted] 2026/07/21 23:19:25.016382983 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:25.016388323 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:43659 ... Connected to session server http://127.0.0.1:43659 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:25.142887337 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/pypi-connectivity' 2026/07/21 23:19:25.147235305 2026/07/21 23:19:25.147242719 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://pypi.python.org/ 2026/07/21 23:19:25.160147563 * Trying 151.101.0.223:443... 2026/07/21 23:19:25.165718251 * Connected to pypi.python.org (151.101.0.223) port 443 (#0) 2026/07/21 23:19:25.167169407 * ALPN, offering h2 2026/07/21 23:19:25.167176230 * ALPN, offering http/1.1 2026/07/21 23:19:25.188218786 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:25.188227302 * CApath: /etc/ssl/certs 2026/07/21 23:19:25.188411768 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:25.188447284 } [5 bytes data] 2026/07/21 23:19:25.188481288 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:25.188486217 } [512 bytes data] 2026/07/21 23:19:25.195334537 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:25.195342432 { [5 bytes data] 2026/07/21 23:19:25.195399899 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:25.195401542 { [122 bytes data] 2026/07/21 23:19:25.195581247 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:25.195589493 { [5 bytes data] 2026/07/21 23:19:25.195620861 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.195624498 { [5 bytes data] 2026/07/21 23:19:25.195646028 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:25.195647190 { [19 bytes data] 2026/07/21 23:19:25.195668971 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.195670023 { [5 bytes data] 2026/07/21 23:19:25.195688668 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:25.195689760 { [2860 bytes data] 2026/07/21 23:19:25.196327168 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196334532 { [5 bytes data] 2026/07/21 23:19:25.196381109 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:25.196383173 { [264 bytes data] 2026/07/21 23:19:25.196451528 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196461496 { [5 bytes data] 2026/07/21 23:19:25.196509248 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:25.196512043 { [36 bytes data] 2026/07/21 23:19:25.196540186 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:25.196541277 } [5 bytes data] 2026/07/21 23:19:25.196561154 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:25.196563229 } [1 bytes data] 2026/07/21 23:19:25.196590429 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196630835 } [5 bytes data] 2026/07/21 23:19:25.196632337 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:25.196657564 } [36 bytes data] 2026/07/21 23:19:25.196719929 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:25.196727953 * ALPN, server accepted to use h2 2026/07/21 23:19:25.196750678 * Server certificate: 2026/07/21 23:19:25.196753423 * subject: CN=www.python.org 2026/07/21 23:19:25.196767046 * start date: Jan 13 13:03:46 2026 GMT 2026/07/21 23:19:25.196768168 * expire date: Feb 14 13:03:45 2027 GMT 2026/07/21 23:19:25.196785641 * subjectAltName: host "pypi.python.org" matched cert's "*.python.org" 2026/07/21 23:19:25.196786833 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:25.196809806 * SSL certificate verify ok. 2026/07/21 23:19:25.196811830 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:25.196828912 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:25.196829723 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:25.196854231 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196855253 } [5 bytes data] 2026/07/21 23:19:25.196875649 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196891470 } [5 bytes data] 2026/07/21 23:19:25.196932808 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.196934270 } [5 bytes data] 2026/07/21 23:19:25.197069721 * Using Stream ID: 1 (easy handle 0x56173549ea40) 2026/07/21 23:19:25.197076453 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.197106780 } [5 bytes data] 2026/07/21 23:19:25.197108173 > GET / HTTP/2 2026/07/21 23:19:25.197121547 > Host: pypi.python.org 2026/07/21 23:19:25.197122930 > user-agent: curl/7.81.0 2026/07/21 23:19:25.197137497 > accept: */* 2026/07/21 23:19:25.197139932 > 2026/07/21 23:19:25.197152084 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.197152906 { [5 bytes data] 2026/07/21 23:19:25.197168034 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:25.197170158 { [193 bytes data] 2026/07/21 23:19:25.202098588 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.202104739 { [5 bytes data] 2026/07/21 23:19:25.202142319 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.202165415 } [5 bytes data] 2026/07/21 23:19:25.202841075 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.202849360 { [5 bytes data] 2026/07/21 23:19:25.202907887 < HTTP/2 301 2026/07/21 23:19:25.202914790 < server: Varnish 2026/07/21 23:19:25.202929367 < retry-after: 0 2026/07/21 23:19:25.202929878 < location: https://pypi.org/ 2026/07/21 23:19:25.202943433 < content-type: text/html; charset=UTF-8 2026/07/21 23:19:25.202943974 < accept-ranges: bytes 2026/07/21 23:19:25.202954083 < date: Tue, 21 Jul 2026 23:19:25 GMT 2026/07/21 23:19:25.202954544 < x-served-by: cache-bfi-krnt7300040-BFI 2026/07/21 23:19:25.202973218 < x-cache: HIT 2026/07/21 23:19:25.202974331 < x-cache-hits: 0 2026/07/21 23:19:25.202988277 < x-timer: S1784675965.200532,VS0,VE0 2026/07/21 23:19:25.202989148 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:25.203009707 < x-frame-options: deny 2026/07/21 23:19:25.203010889 < x-xss-protection: 1; mode=block 2026/07/21 23:19:25.203053989 < x-content-type-options: nosniff 2026/07/21 23:19:25.203054971 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:25.203067224 < permissions-policy: publickey-credentials-create=(self),publickey-credentials-get=(self),accelerometer=(),ambient-light-sensor=(),autoplay=(),battery=(),camera=(),display-capture=(),document-domain=(),encrypted-media=(),execution-while-not-rendered=(),execution-while-out-of-viewport=(),fullscreen=(),gamepad=(),geolocation=(),gyroscope=(),hid=(),identity-credentials-get=(),idle-detection=(),local-fonts=(),magnetometer=(),microphone=(),midi=(),otp-credentials=(),payment=(),picture-in-picture=(),screen-wake-lock=(),serial=(),speaker-selection=(),storage-access=(),usb=(),web-share=(),xr-spatial-tracking=() 2026/07/21 23:19:25.203070480 < content-length: 122 2026/07/21 23:19:25.203133207 < 2026/07/21 23:19:25.203134780 * Ignoring the response-body 2026/07/21 23:19:25.203149798 { [122 bytes data] 2026/07/21 23:19:25.203150729 * Connection #0 to host pypi.python.org left intact 2026/07/21 23:19:25.203167611 * Issue another request to this URL: 'https://pypi.org/' 2026/07/21 23:19:25.204945020 * Trying 151.101.64.223:443... 2026/07/21 23:19:25.210446766 * Connected to pypi.org (151.101.64.223) port 443 (#1) 2026/07/21 23:19:25.210686325 * ALPN, offering h2 2026/07/21 23:19:25.210693448 * ALPN, offering http/1.1 2026/07/21 23:19:25.232373293 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:25.232382170 * CApath: /etc/ssl/certs 2026/07/21 23:19:25.232514394 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:25.232522770 } [5 bytes data] 2026/07/21 23:19:25.232556032 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:25.232558216 } [512 bytes data] 2026/07/21 23:19:25.239834734 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:25.239842909 { [5 bytes data] 2026/07/21 23:19:25.239902019 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:25.239904123 { [122 bytes data] 2026/07/21 23:19:25.239978762 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:25.239988290 { [5 bytes data] 2026/07/21 23:19:25.240037552 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.240039115 { [5 bytes data] 2026/07/21 23:19:25.240055515 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:25.240058010 { [19 bytes data] 2026/07/21 23:19:25.240091793 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.240093286 { [5 bytes data] 2026/07/21 23:19:25.240116790 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:25.240129063 { [2856 bytes data] 2026/07/21 23:19:25.240709675 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.240715937 { [5 bytes data] 2026/07/21 23:19:25.240749850 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:25.240751243 { [264 bytes data] 2026/07/21 23:19:25.240821644 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.240831713 { [5 bytes data] 2026/07/21 23:19:25.240861328 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:25.240862811 { [36 bytes data] 2026/07/21 23:19:25.240925678 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:25.240935737 } [5 bytes data] 2026/07/21 23:19:25.240988906 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:25.240990990 } [1 bytes data] 2026/07/21 23:19:25.241004765 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241005326 } [5 bytes data] 2026/07/21 23:19:25.241015115 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:25.241015656 } [36 bytes data] 2026/07/21 23:19:25.241129498 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:25.241138715 * ALPN, server accepted to use h2 2026/07/21 23:19:25.241169553 * Server certificate: 2026/07/21 23:19:25.241170845 * subject: CN=pypi.org 2026/07/21 23:19:25.241183749 * start date: Dec 28 04:33:08 2025 GMT 2026/07/21 23:19:25.241184250 * expire date: Jan 29 04:33:07 2027 GMT 2026/07/21 23:19:25.241193588 * subjectAltName: host "pypi.org" matched cert's "pypi.org" 2026/07/21 23:19:25.241194118 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:25.241216711 * SSL certificate verify ok. 2026/07/21 23:19:25.241217682 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:25.241230326 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:25.241232089 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:25.241244613 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241245174 } [5 bytes data] 2026/07/21 23:19:25.241254711 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241255172 } [5 bytes data] 2026/07/21 23:19:25.241265341 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241267405 } [5 bytes data] 2026/07/21 23:19:25.241319723 * Using Stream ID: 1 (easy handle 0x56173549ea40) 2026/07/21 23:19:25.241327277 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241363955 } [5 bytes data] 2026/07/21 23:19:25.241384335 > GET / HTTP/2 2026/07/21 23:19:25.241393232 > Host: pypi.org 2026/07/21 23:19:25.241410023 > user-agent: curl/7.81.0 2026/07/21 23:19:25.241411005 > accept: */* 2026/07/21 23:19:25.241424470 > 2026/07/21 23:19:25.241426073 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.241435220 { [5 bytes data] 2026/07/21 23:19:25.241437625 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:25.241453464 { [193 bytes data] 2026/07/21 23:19:25.246485126 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.246493181 { [5 bytes data] 2026/07/21 23:19:25.246543044 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.246544457 } [5 bytes data] 2026/07/21 23:19:25.249080496 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249092868 { [5 bytes data] 2026/07/21 23:19:25.249201890 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249214984 { [5 bytes data] 2026/07/21 23:19:25.249254688 < HTTP/2 200 2026/07/21 23:19:25.249260249 < etag: "mEb/tZ6MDOD1WVQj+MobTw" 2026/07/21 23:19:25.249295645 < content-type: text/html; charset=UTF-8 2026/07/21 23:19:25.249297348 < content-security-policy: base-uri 'self'; connect-src 'self' https://api.github.com/repos/ https://api.github.com/search/issues https://gitlab.com/api/ https://analytics.python.org *.ethicalads.io https://api.pwnedpasswords.com https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/sre/mathmaps/ https://2p66nmmycsj3.statuspage.io; default-src 'none'; font-src 'self'; form-action 'self' https://checkout.stripe.com https://billing.stripe.com; frame-ancestors 'none'; frame-src 'none'; img-src 'self' https://pypi-camo.freetls.fastly.net/ *.ethicalads.io ethicalads.blob.core.windows.net; script-src 'self' https://analytics.python.org *.ethicalads.io 'sha256-U3hKDidudIaxBDEzwGJApJgPEf2mWk6cfMWghrAa6i0=' https://cdn.jsdelivr.net/npm/mathjax@3.2.2/ 'sha256-1CldwzdEg2k1wTmf7s5RWVd7NMXI/7nxxjJM2C4DqII='; style-src 'self' *.ethicalads.io 'sha256-2YHqZokjiizkHi1Zt+6ar0XJ0OeEy/egBnlm+MDMtrM=' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-JLEjeN9e5dGsz5475WyRaoA4eQOdNPxDIeUhclnJDCE=' 'sha256-mQyxHEuwZJqpxCw3SLmc4YOySNKXunyu2Oiz1r3/wAE=' 'sha256-OCf+kv5Asiwp++8PIevKBYSgnNLNUZvxAp4a7wMLuKA=' 'sha256-h5LOiLhk6wiJrGsG5ItM0KimwzWQH/yAcmoJDJL//bY=' 2026/07/21 23:19:25.249417302 < server: gunicorn 2026/07/21 23:19:25.249418854 < referrer-policy: origin-when-cross-origin 2026/07/21 23:19:25.249432149 < accept-ranges: bytes 2026/07/21 23:19:25.249432811 < date: Tue, 21 Jul 2026 23:19:25 GMT 2026/07/21 23:19:25.249456124 < x-served-by: cache-iad-kiad7000085-IAD, cache-iad-kiad7000085-IAD, cache-iad-kiad7000100-IAD, cache-bfi-krnt7300027-BFI 2026/07/21 23:19:25.249457617 < x-cache: MISS, HIT, HIT 2026/07/21 23:19:25.249487665 < x-cache-hits: 0, 10, 1 2026/07/21 23:19:25.249500106 < x-timer: S1784675965.244908,VS0,VE2 2026/07/21 23:19:25.249501258 < vary: Cookie, Accept-Encoding 2026/07/21 23:19:25.249549969 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:25.249551752 < x-frame-options: deny 2026/07/21 23:19:25.249594171 < x-xss-protection: 1; mode=block 2026/07/21 23:19:25.249614519 < x-content-type-options: nosniff 2026/07/21 23:19:25.249616222 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:25.249630411 < permissions-policy: publickey-credentials-create=(self),publickey-credentials-get=(self),accelerometer=(),ambient-light-sensor=(),autoplay=(),battery=(),camera=(),display-capture=(),document-domain=(),encrypted-media=(),execution-while-not-rendered=(),execution-while-out-of-viewport=(),fullscreen=(),gamepad=(),geolocation=(),gyroscope=(),hid=(),identity-credentials-get=(),idle-detection=(),local-fonts=(),magnetometer=(),microphone=(),midi=(),otp-credentials=(),payment=(),picture-in-picture=(),screen-wake-lock=(),serial=(),speaker-selection=(),storage-access=(),usb=(),web-share=(),xr-spatial-tracking=() 2026/07/21 23:19:25.249681664 < content-length: 22848 2026/07/21 23:19:25.249682426 < 2026/07/21 23:19:25.249690631 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249691172 { [5 bytes data] 2026/07/21 23:19:25.249712692 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249713213 { [5 bytes data] 2026/07/21 23:19:25.249730085 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249731107 { [5 bytes data] 2026/07/21 23:19:25.249763637 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249765120 { [5 bytes data] 2026/07/21 23:19:25.249782823 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249783735 { [5 bytes data] 2026/07/21 23:19:25.249918338 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249924910 { [5 bytes data] 2026/07/21 23:19:25.249967347 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.249969191 { [5 bytes data] 2026/07/21 23:19:25.250635363 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.250642797 { [5 bytes data] 2026/07/21 23:19:25.250679224 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.250684815 { [5 bytes data] 2026/07/21 23:19:25.251378991 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.251387066 { [5 bytes data] 2026/07/21 23:19:25.251415497 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.251420567 { [5 bytes data] 2026/07/21 23:19:25.252121326 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.252127868 { [5 bytes data] 2026/07/21 23:19:25.252159377 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.252160168 { [5 bytes data] 2026/07/21 23:19:25.252872514 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.252880349 { [5 bytes data] 2026/07/21 23:19:25.252947103 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.252949017 { [5 bytes data] 2026/07/21 23:19:25.253619709 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.253627234 { [5 bytes data] 2026/07/21 23:19:25.253657097 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.253662046 { [5 bytes data] 2026/07/21 23:19:25.253683316 * Connection #1 to host pypi.org left intact 2026/07/21 23:19:25.255993552 2026/07/21 23:19:25.255999643 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://files.pythonhosted.org/ 2026/07/21 23:19:25.263219520 * Trying 151.101.128.223:443... 2026/07/21 23:19:25.268693562 * Connected to files.pythonhosted.org (151.101.128.223) port 443 (#0) 2026/07/21 23:19:25.270181256 * ALPN, offering h2 2026/07/21 23:19:25.270188249 * ALPN, offering http/1.1 2026/07/21 23:19:25.291457741 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:25.291467129 * CApath: /etc/ssl/certs 2026/07/21 23:19:25.291623398 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:25.291644788 } [5 bytes data] 2026/07/21 23:19:25.291679212 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:25.291685694 } [512 bytes data] 2026/07/21 23:19:25.300920859 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:25.300930887 { [5 bytes data] 2026/07/21 23:19:25.300973887 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:25.300975771 { [122 bytes data] 2026/07/21 23:19:25.301160311 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:25.301168707 { [5 bytes data] 2026/07/21 23:19:25.301204032 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.301205124 { [5 bytes data] 2026/07/21 23:19:25.301220483 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:25.301221294 { [19 bytes data] 2026/07/21 23:19:25.301238527 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.301239468 { [5 bytes data] 2026/07/21 23:19:25.301259756 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:25.301260738 { [2842 bytes data] 2026/07/21 23:19:25.301903266 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.301911121 { [5 bytes data] 2026/07/21 23:19:25.301939143 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:25.301940235 { [264 bytes data] 2026/07/21 23:19:25.302020415 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302022889 { [5 bytes data] 2026/07/21 23:19:25.302080957 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:25.302094723 { [36 bytes data] 2026/07/21 23:19:25.302150570 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:25.302161540 } [5 bytes data] 2026/07/21 23:19:25.302226503 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:25.302229980 } [1 bytes data] 2026/07/21 23:19:25.302254135 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302255287 } [5 bytes data] 2026/07/21 23:19:25.302300641 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:25.302302124 } [36 bytes data] 2026/07/21 23:19:25.302367925 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:25.302375960 * ALPN, server accepted to use h2 2026/07/21 23:19:25.302409234 * Server certificate: 2026/07/21 23:19:25.302411258 * subject: CN=*.pythonhosted.org 2026/07/21 23:19:25.302438057 * start date: Dec 8 21:08:03 2025 GMT 2026/07/21 23:19:25.302439180 * expire date: Jan 9 21:08:02 2027 GMT 2026/07/21 23:19:25.302490646 * subjectAltName: host "files.pythonhosted.org" matched cert's "*.pythonhosted.org" 2026/07/21 23:19:25.302494142 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:25.302527074 * SSL certificate verify ok. 2026/07/21 23:19:25.302528176 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:25.302545748 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:25.302546730 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:25.302581184 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302582306 } [5 bytes data] 2026/07/21 23:19:25.302599939 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302600901 } [5 bytes data] 2026/07/21 23:19:25.302654852 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302656495 } [5 bytes data] 2026/07/21 23:19:25.302673476 * Using Stream ID: 1 (easy handle 0x563f85756a40) 2026/07/21 23:19:25.302674919 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302694967 } [5 bytes data] 2026/07/21 23:19:25.302697201 > GET / HTTP/2 2026/07/21 23:19:25.302711017 > Host: files.pythonhosted.org 2026/07/21 23:19:25.302711968 > user-agent: curl/7.81.0 2026/07/21 23:19:25.302727768 > accept: */* 2026/07/21 23:19:25.302728719 > 2026/07/21 23:19:25.302741904 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.302742936 { [5 bytes data] 2026/07/21 23:19:25.302805639 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:25.302815217 { [193 bytes data] 2026/07/21 23:19:25.307780930 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.307789226 { [5 bytes data] 2026/07/21 23:19:25.307834740 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:25.307838427 } [5 bytes data] 2026/07/21 23:19:25.307897794 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.307904396 { [5 bytes data] 2026/07/21 23:19:25.308526967 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.308543367 { [5 bytes data] 2026/07/21 23:19:25.308591577 < HTTP/2 200 2026/07/21 23:19:25.308593060 < content-type: text/html 2026/07/21 23:19:25.308610603 < server: Python/3.12 aiohttp/3.14.1 2026/07/21 23:19:25.308612406 < accept-ranges: bytes 2026/07/21 23:19:25.308629949 < date: Tue, 21 Jul 2026 23:19:25 GMT 2026/07/21 23:19:25.308631031 < age: 44 2026/07/21 23:19:25.308653272 < x-served-by: cache-iad-kiad7000058-IAD, cache-bfi-krnt7300075-BFI 2026/07/21 23:19:25.308654394 < x-cache: HIT, HIT 2026/07/21 23:19:25.308676455 < x-cache-hits: 78, 4 2026/07/21 23:19:25.308677828 < x-timer: S1784675965.306310,VS0,VE0 2026/07/21 23:19:25.308698096 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:25.308699178 < x-frame-options: deny 2026/07/21 23:19:25.308716440 < x-xss-protection: 1; mode=block 2026/07/21 23:19:25.308717242 < x-content-type-options: nosniff 2026/07/21 23:19:25.308733722 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:25.308734724 < x-robots-header: noindex 2026/07/21 23:19:25.308751115 < content-length: 1853 2026/07/21 23:19:25.308751926 < 2026/07/21 23:19:25.308763588 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.308766383 { [5 bytes data] 2026/07/21 23:19:25.308783074 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:25.308784006 { [5 bytes data] 2026/07/21 23:19:25.308799956 * Connection #0 to host files.pythonhosted.org left intact Stopping content session token refresher |
| ✅ | python-restore-sandbox | python-version | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:25.326116186 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:25.326449739 [connect-session] Job Key: [redacted] 2026/07/21 23:19:25.326459477 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:25.326463103 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:46817 ... Connected to session server http://127.0.0.1:46817 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:25.522442041 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/01-python-version.sh' 2026/07/21 23:19:25.528598979 2026/07/21 23:19:25.528606212 $ /opt/python/3.13.9/bin/python3.13 -V 2026/07/21 23:19:25.528645756 Python 3.13.9 |
| ❌ | python-restore-sandbox | python-packages | process exited with code 1: exit status 1 |
| ✅ | python-restore-sandbox | environment | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:25.978127443 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:25.978333899 [connect-session] Job Key: [redacted] 2026/07/21 23:19:25.978348466 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:25.978354046 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:36967 ... Connected to session server http://127.0.0.1:36967 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:26.103172418 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/03-environment.sh' 2026/07/21 23:19:26.109444803 2026/07/21 23:19:26.109453109 $ env 2026/07/21 23:19:26.109481582 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:26.109482544 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:26.109495838 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:26.109496350 LANG=en_US.UTF-8 2026/07/21 23:19:26.109504935 LANGUAGE=en_US:en 2026/07/21 23:19:26.109505356 LC_ALL=en_US.UTF-8 2026/07/21 23:19:26.109513612 LOGNAME=rstudio-connect 2026/07/21 23:19:26.109514043 MAKEFLAGS=-j1 2026/07/21 23:19:26.109522167 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2026/07/21 23:19:26.109522619 PICOTEL_PREFIX=PICOTEL 2026/07/21 23:19:26.109532727 PICOTEL_SDK_DISABLED=true 2026/07/21 23:19:26.109533208 PICOTEL_SERVICE_NAME=posit-connect-python 2026/07/21 23:19:26.109549168 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:26.109550050 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:26.109565909 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:26.109566831 SHLVL=2 2026/07/21 23:19:26.109580887 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:26.109581929 TERM=xterm 2026/07/21 23:19:26.109595885 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:26.109596797 TZ=UTC 2026/07/21 23:19:26.109611865 USERNAME=rstudio-connect 2026/07/21 23:19:26.109612967 USER=rstudio-connect 2026/07/21 23:19:26.109627915 _=/usr/bin/env 2026/07/21 23:19:26.109628786 UV_CONCURRENT_BUILDS=1 |
| ✅ | python-restore-sandbox | mounts | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:26.125328050 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:26.125523334 [connect-session] Job Key: [redacted] 2026/07/21 23:19:26.125533242 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:26.125536819 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:44573 ... Connected to session server http://127.0.0.1:44573 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:26.248964982 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/04-mounts.sh' 2026/07/21 23:19:26.253296371 2026/07/21 23:19:26.253303724 $ findmnt --notruncate 2026/07/21 23:19:26.255447609 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:26.255464451 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/BQKBL LQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:26.255631723 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:26.255633947 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:26.255675895 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:26.255677228 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:26.255714066 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:26.255714868 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:26.255750925 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:26.255751717 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:26.255791110 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.255793695 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:26.255930054 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:26.256154187 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256155800 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256208608 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256209520 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256279411 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256280453 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/PD7T0WN43vybED7z] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256318556 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/python-environments] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:26.256363828 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace2268155469] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:26.256364910 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:26.256654450 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr Stopping content session token refresher |
| ✅ | python-restore-sandbox | virtualenv | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:26.272336764 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:26.272547827 [connect-session] Job Key: [redacted] 2026/07/21 23:19:26.272558307 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:26.272711122 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Starting content session token refresher (interval: 12h0m0s) Determining session server location ... Connecting to session server http://127.0.0.1:46783 ... Connected to session server http://127.0.0.1:46783 2026/07/21 23:19:26.396275185 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/06-virtualenv.sh' 2026/07/21 23:19:26.401878130 2026/07/21 23:19:26.401885534 $ /opt/python/3.13.9/bin/python3.13 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.7IxgIQZq5V/testenv 2026/07/21 23:19:28.983620616 2026/07/21 23:19:28.983634412 $ source /opt/rstudio-connect/mnt/tmp/tmp.7IxgIQZq5V/testenv/bin/activate 2026/07/21 23:19:28.985077451 2026/07/21 23:19:28.985086036 $ python --version 2026/07/21 23:19:28.986612946 Python 3.13.9 2026/07/21 23:19:28.986856989 2026/07/21 23:19:28.986863862 $ python -m site 2026/07/21 23:19:29.000273668 sys.path = [ 2026/07/21 23:19:29.000281182 '/opt/rstudio-connect/mnt/app', 2026/07/21 23:19:29.000320014 '/opt/python/3.13.9/lib/python313.zip', 2026/07/21 23:19:29.000321487 '/opt/python/3.13.9/lib/python3.13', 2026/07/21 23:19:29.000338719 '/opt/python/3.13.9/lib/python3.13/lib-dynload', 2026/07/21 23:19:29.000339801 '/opt/rstudio-connect/mnt/tmp/tmp.7IxgIQZq5V/testenv/lib/python3.13/site-packages', 2026/07/21 23:19:29.000362714 '/opt/python/3.13.9/lib/python3.13/site-packages', 2026/07/21 23:19:29.000363535 ] 2026/07/21 23:19:29.000378393 USER_BASE: '/opt/rstudio-connect/mnt/tmp/.local' (doesn't exist) 2026/07/21 23:19:29.000379345 USER_SITE: '/opt/rstudio-connect/mnt/tmp/.local/lib/python3.13/site-packages' (doesn't exist) 2026/07/21 23:19:29.000403640 ENABLE_USER_SITE: True |
| ✅ | python-restore-sandbox | pip | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:29.048415222 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:29.048611087 [connect-session] Job Key: [redacted] 2026/07/21 23:19:29.048623149 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:29.048626786 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:44625 ... Connected to session server http://127.0.0.1:44625 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:29.172711129 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/07-pip.sh' 2026/07/21 23:19:29.178038330 2026/07/21 23:19:29.178045894 $ /opt/python/3.13.9/bin/python3.13 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv 2026/07/21 23:19:31.716390428 2026/07/21 23:19:31.716404955 $ source /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv/bin/activate 2026/07/21 23:19:31.717864205 2026/07/21 23:19:31.717871810 $ python -m pip --version 2026/07/21 23:19:31.887025929 pip 25.2 from /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv/lib/python3.13/site-packages/pip (python 3.13) 2026/07/21 23:19:31.908592713 2026/07/21 23:19:31.908600437 $ python -m pip config debug 2026/07/21 23:19:32.079845966 env_var: 2026/07/21 23:19:32.080232587 env: 2026/07/21 23:19:32.080380994 global: 2026/07/21 23:19:32.080586116 /etc/xdg/pip/pip.conf, exists: False 2026/07/21 23:19:32.080792180 /etc/pip.conf, exists: False 2026/07/21 23:19:32.080965664 site: 2026/07/21 23:19:32.081210691 /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv/pip.conf, exists: False 2026/07/21 23:19:32.081406847 user: 2026/07/21 23:19:32.081617669 /opt/rstudio-connect/mnt/tmp/.pip/pip.conf, exists: False 2026/07/21 23:19:32.081813755 /opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf, exists: False 2026/07/21 23:19:32.104535443 2026/07/21 23:19:32.104546603 $ python -m pip config list -v 2026/07/21 23:19:32.274163283 For variant 'global', will try loading '/etc/xdg/pip/pip.conf' 2026/07/21 23:19:32.274504524 For variant 'global', will try loading '/etc/pip.conf' 2026/07/21 23:19:32.275040551 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.pip/pip.conf' 2026/07/21 23:19:32.275367954 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf' 2026/07/21 23:19:32.275670496 For variant 'site', will try loading '/opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv/pip.conf' 2026/07/21 23:19:32.297638728 2026/07/21 23:19:32.297647845 $ python -m pip._vendor.requests.certs 2026/07/21 23:19:32.432872078 <frozen runpy>:128: RuntimeWarning: 'pip._vendor.requests.certs' found in sys.modules after import of package 'pip._vendor.requests', but prior to execution of 'pip._vendor.requests.certs'; this may result in unpredictable behaviour 2026/07/21 23:19:32.433019971 /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/testenv/lib/python3.13/site-packages/pip/_vendor/certifi/cacert.pem 2026/07/21 23:19:32.448196221 2026/07/21 23:19:32.448204407 $ python -m pip download -v --no-cache-dir --dest /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4 pip 2026/07/21 23:19:32.876480764 Collecting pip 2026/07/21 23:19:32.876807389 Obtaining dependency information for pip from https://files.pythonhosted.org/packages/5d/95/6b5cb3461ea5673ba0995989746db58eb18b91b54dbf331e72f569540946/pip-26.1.2-py3-none-any.whl.metadata 2026/07/21 23:19:32.907266566 Downloading pip-26.1.2-py3-none-any.whl.metadata (4.6 kB) 2026/07/21 23:19:32.917375383 Downloading pip-26.1.2-py3-none-any.whl (1.8 MB) 2026/07/21 23:19:32.970469866 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 44.8 MB/s 0:00:00 2026/07/21 23:19:32.981320168 Saved /opt/rstudio-connect/mnt/tmp/tmp.UHgoFlTov4/pip-26.1.2-py3-none-any.whl 2026/07/21 23:19:32.981676322 Successfully downloaded pip 2026/07/21 23:19:33.044478365 2026/07/21 23:19:33.044492411 [notice] A new release of pip is available: 25.2 -> 26.1.2 2026/07/21 23:19:33.044554006 [notice] To update, run: pip install --upgrade pip |
| ✅ | python-restore-sandbox | pypi-connectivity | Bundle requested Python version 3.13.9; using /opt/python/3.13.9/bin/python3.13 from Local which has version 3.13.9 2026/07/21 23:19:33.133225535 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:33.133448310 [connect-session] Job Key: [redacted] 2026/07/21 23:19:33.133463028 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:33.133468277 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:44093 ... Starting content session token refresher (interval: 12h0m0s) Connected to session server http://127.0.0.1:44093 2026/07/21 23:19:33.256769803 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/pypi-connectivity' 2026/07/21 23:19:33.261038853 2026/07/21 23:19:33.261046888 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://pypi.python.org/ 2026/07/21 23:19:33.267995184 * Trying 151.101.192.223:443... 2026/07/21 23:19:33.273413318 * Connected to pypi.python.org (151.101.192.223) port 443 (#0) 2026/07/21 23:19:33.274878139 * ALPN, offering h2 2026/07/21 23:19:33.274885373 * ALPN, offering http/1.1 2026/07/21 23:19:33.296303591 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:33.296314261 * CApath: /etc/ssl/certs 2026/07/21 23:19:33.296480369 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:33.296488815 } [5 bytes data] 2026/07/21 23:19:33.296533879 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:33.296535772 } [512 bytes data] 2026/07/21 23:19:33.303290290 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:33.303297934 { [5 bytes data] 2026/07/21 23:19:33.303337778 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:33.303340794 { [122 bytes data] 2026/07/21 23:19:33.303541688 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:33.303548792 { [5 bytes data] 2026/07/21 23:19:33.303613963 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.303619804 { [5 bytes data] 2026/07/21 23:19:33.303637076 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:33.303637948 { [19 bytes data] 2026/07/21 23:19:33.303657755 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.303658807 { [5 bytes data] 2026/07/21 23:19:33.303675728 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:33.303676570 { [2860 bytes data] 2026/07/21 23:19:33.304348180 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304358058 { [5 bytes data] 2026/07/21 23:19:33.304394296 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:33.304398133 { [264 bytes data] 2026/07/21 23:19:33.304462944 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304464397 { [5 bytes data] 2026/07/21 23:19:33.304499252 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:33.304503059 { [36 bytes data] 2026/07/21 23:19:33.304524198 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:33.304524960 } [5 bytes data] 2026/07/21 23:19:33.304535840 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:33.304537543 } [1 bytes data] 2026/07/21 23:19:33.304588270 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304598168 } [5 bytes data] 2026/07/21 23:19:33.304640868 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:33.304641830 } [36 bytes data] 2026/07/21 23:19:33.304705418 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:33.304707161 * ALPN, server accepted to use h2 2026/07/21 23:19:33.304731447 * Server certificate: 2026/07/21 23:19:33.304734272 * subject: CN=www.python.org 2026/07/21 23:19:33.304756564 * start date: Jan 13 13:03:46 2026 GMT 2026/07/21 23:19:33.304760882 * expire date: Feb 14 13:03:45 2027 GMT 2026/07/21 23:19:33.304777553 * subjectAltName: host "pypi.python.org" matched cert's "*.python.org" 2026/07/21 23:19:33.304780969 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:33.304803341 * SSL certificate verify ok. 2026/07/21 23:19:33.304804393 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:33.304821124 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:33.304823498 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:33.304851761 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304853104 } [5 bytes data] 2026/07/21 23:19:33.304880966 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304881947 } [5 bytes data] 2026/07/21 23:19:33.304906613 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304919067 } [5 bytes data] 2026/07/21 23:19:33.304961115 * Using Stream ID: 1 (easy handle 0x5614f2637a40) 2026/07/21 23:19:33.304985270 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.304992704 } [5 bytes data] 2026/07/21 23:19:33.305065349 > GET / HTTP/2 2026/07/21 23:19:33.305067564 > Host: pypi.python.org 2026/07/21 23:19:33.305092450 > user-agent: curl/7.81.0 2026/07/21 23:19:33.305093392 > accept: */* 2026/07/21 23:19:33.305108249 > 2026/07/21 23:19:33.305110464 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.305125331 { [5 bytes data] 2026/07/21 23:19:33.305137414 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:33.305159846 { [193 bytes data] 2026/07/21 23:19:33.310017694 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.310025950 { [5 bytes data] 2026/07/21 23:19:33.310066365 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.310069581 } [5 bytes data] 2026/07/21 23:19:33.310152926 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.310162625 { [5 bytes data] 2026/07/21 23:19:33.310799562 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.310807657 { [5 bytes data] 2026/07/21 23:19:33.310870252 < HTTP/2 301 2026/07/21 23:19:33.310872235 < server: Varnish 2026/07/21 23:19:33.310890920 < retry-after: 0 2026/07/21 23:19:33.310891902 < location: https://pypi.org/ 2026/07/21 23:19:33.310910657 < content-type: text/html; charset=UTF-8 2026/07/21 23:19:33.310911509 < accept-ranges: bytes 2026/07/21 23:19:33.310956142 < date: Tue, 21 Jul 2026 23:19:33 GMT 2026/07/21 23:19:33.310957604 < x-served-by: cache-bfi-krnt7300095-BFI 2026/07/21 23:19:33.310977732 < x-cache: HIT 2026/07/21 23:19:33.310979956 < x-cache-hits: 0 2026/07/21 23:19:33.310994914 < x-timer: S1784675973.308557,VS0,VE0 2026/07/21 23:19:33.310995896 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:33.311015292 < x-frame-options: deny 2026/07/21 23:19:33.311016244 < x-xss-protection: 1; mode=block 2026/07/21 23:19:33.311031593 < x-content-type-options: nosniff 2026/07/21 23:19:33.311070735 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:33.311101613 < permissions-policy: publickey-credentials-create=(self),publickey-credentials-get=(self),accelerometer=(),ambient-light-sensor=(),autoplay=(),battery=(),camera=(),display-capture=(),document-domain=(),encrypted-media=(),execution-while-not-rendered=(),execution-while-out-of-viewport=(),fullscreen=(),gamepad=(),geolocation=(),gyroscope=(),hid=(),identity-credentials-get=(),idle-detection=(),local-fonts=(),magnetometer=(),microphone=(),midi=(),otp-credentials=(),payment=(),picture-in-picture=(),screen-wake-lock=(),serial=(),speaker-selection=(),storage-access=(),usb=(),web-share=(),xr-spatial-tracking=() 2026/07/21 23:19:33.311105320 < content-length: 122 2026/07/21 23:19:33.311181432 < 2026/07/21 23:19:33.311188355 * Ignoring the response-body 2026/07/21 23:19:33.311202722 { [122 bytes data] 2026/07/21 23:19:33.311203623 * Connection #0 to host pypi.python.org left intact 2026/07/21 23:19:33.311234371 * Issue another request to this URL: 'https://pypi.org/' 2026/07/21 23:19:33.313397506 * Trying 151.101.64.223:443... 2026/07/21 23:19:33.318865440 * Connected to pypi.org (151.101.64.223) port 443 (#1) 2026/07/21 23:19:33.319157377 * ALPN, offering h2 2026/07/21 23:19:33.319162717 * ALPN, offering http/1.1 2026/07/21 23:19:33.341216849 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:33.341224042 * CApath: /etc/ssl/certs 2026/07/21 23:19:33.341364867 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:33.341386929 } [5 bytes data] 2026/07/21 23:19:33.341419116 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:33.341422332 } [512 bytes data] 2026/07/21 23:19:33.350051115 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:33.350068137 { [5 bytes data] 2026/07/21 23:19:33.350117829 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:33.350119613 { [122 bytes data] 2026/07/21 23:19:33.350230517 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:33.350236498 { [5 bytes data] 2026/07/21 23:19:33.350285580 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.350287073 { [5 bytes data] 2026/07/21 23:19:33.350313582 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:33.350314764 { [19 bytes data] 2026/07/21 23:19:33.350341113 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.350342345 { [5 bytes data] 2026/07/21 23:19:33.350360078 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:33.350362854 { [2856 bytes data] 2026/07/21 23:19:33.350925175 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.350932939 { [5 bytes data] 2026/07/21 23:19:33.350968455 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:33.350974356 { [264 bytes data] 2026/07/21 23:19:33.351072499 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351075034 { [5 bytes data] 2026/07/21 23:19:33.351113656 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:33.351115038 { [36 bytes data] 2026/07/21 23:19:33.351155193 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:33.351158059 } [5 bytes data] 2026/07/21 23:19:33.351177625 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:33.351178747 } [1 bytes data] 2026/07/21 23:19:33.351199947 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351229181 } [5 bytes data] 2026/07/21 23:19:33.351230594 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:33.351249940 } [36 bytes data] 2026/07/21 23:19:33.351309191 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:33.351310233 * ALPN, server accepted to use h2 2026/07/21 23:19:33.351336101 * Server certificate: 2026/07/21 23:19:33.351338756 * subject: CN=pypi.org 2026/07/21 23:19:33.351354244 * start date: Dec 28 04:33:08 2025 GMT 2026/07/21 23:19:33.351355146 * expire date: Jan 29 04:33:07 2027 GMT 2026/07/21 23:19:33.351377247 * subjectAltName: host "pypi.org" matched cert's "pypi.org" 2026/07/21 23:19:33.351382868 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:33.351439664 * SSL certificate verify ok. 2026/07/21 23:19:33.351464921 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:33.351490849 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:33.351492122 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:33.351514974 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351516006 } [5 bytes data] 2026/07/21 23:19:33.351533479 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351534391 } [5 bytes data] 2026/07/21 23:19:33.351551713 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351552634 } [5 bytes data] 2026/07/21 23:19:33.351603179 * Using Stream ID: 1 (easy handle 0x5614f2637a40) 2026/07/21 23:19:33.351604752 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351628206 } [5 bytes data] 2026/07/21 23:19:33.351657841 > GET / HTTP/2 2026/07/21 23:19:33.351666938 > Host: pypi.org 2026/07/21 23:19:33.351697214 > user-agent: curl/7.81.0 2026/07/21 23:19:33.351700340 > accept: */* 2026/07/21 23:19:33.351717089 > 2026/07/21 23:19:33.351718762 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.351775247 { [5 bytes data] 2026/07/21 23:19:33.351778463 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:33.351795826 { [193 bytes data] 2026/07/21 23:19:33.356713666 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.356724326 { [5 bytes data] 2026/07/21 23:19:33.356775712 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.356780220 } [5 bytes data] 2026/07/21 23:19:33.356811539 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.356832377 { [5 bytes data] 2026/07/21 23:19:33.357698713 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.357708391 { [5 bytes data] 2026/07/21 23:19:33.357808239 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.357810614 { [5 bytes data] 2026/07/21 23:19:33.357852882 < HTTP/2 200 2026/07/21 23:19:33.357854476 < etag: "mEb/tZ6MDOD1WVQj+MobTw" 2026/07/21 23:19:33.357870926 < content-type: text/html; charset=UTF-8 2026/07/21 23:19:33.357872038 < content-security-policy: base-uri 'self'; connect-src 'self' https://api.github.com/repos/ https://api.github.com/search/issues https://gitlab.com/api/ https://analytics.python.org *.ethicalads.io https://api.pwnedpasswords.com https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/sre/mathmaps/ https://2p66nmmycsj3.statuspage.io; default-src 'none'; font-src 'self'; form-action 'self' https://checkout.stripe.com https://billing.stripe.com; frame-ancestors 'none'; frame-src 'none'; img-src 'self' https://pypi-camo.freetls.fastly.net/ *.ethicalads.io ethicalads.blob.core.windows.net; script-src 'self' https://analytics.python.org *.ethicalads.io 'sha256-U3hKDidudIaxBDEzwGJApJgPEf2mWk6cfMWghrAa6i0=' https://cdn.jsdelivr.net/npm/mathjax@3.2.2/ 'sha256-1CldwzdEg2k1wTmf7s5RWVd7NMXI/7nxxjJM2C4DqII='; style-src 'self' *.ethicalads.io 'sha256-2YHqZokjiizkHi1Zt+6ar0XJ0OeEy/egBnlm+MDMtrM=' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-JLEjeN9e5dGsz5475WyRaoA4eQOdNPxDIeUhclnJDCE=' 'sha256-mQyxHEuwZJqpxCw3SLmc4YOySNKXunyu2Oiz1r3/wAE=' 'sha256-OCf+kv5Asiwp++8PIevKBYSgnNLNUZvxAp4a7wMLuKA=' 'sha256-h5LOiLhk6wiJrGsG5ItM0KimwzWQH/yAcmoJDJL//bY=' 2026/07/21 23:19:33.357901651 < server: gunicorn 2026/07/21 23:19:33.358005066 < referrer-policy: origin-when-cross-origin 2026/07/21 23:19:33.358006990 < accept-ranges: bytes 2026/07/21 23:19:33.358056252 < date: Tue, 21 Jul 2026 23:19:33 GMT 2026/07/21 23:19:33.358057684 < x-served-by: cache-iad-kiad7000085-IAD, cache-iad-kiad7000085-IAD, cache-iad-kiad7000100-IAD, cache-bfi-krnt7300027-BFI 2026/07/21 23:19:33.358076249 < x-cache: MISS, HIT, HIT 2026/07/21 23:19:33.358096417 < x-cache-hits: 0, 10, 2 2026/07/21 23:19:33.358097789 < x-timer: S1784675973.355142,VS0,VE0 2026/07/21 23:19:33.358114641 < vary: Cookie, Accept-Encoding 2026/07/21 23:19:33.358115532 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:33.358135489 < x-frame-options: deny 2026/07/21 23:19:33.358136371 < x-xss-protection: 1; mode=block 2026/07/21 23:19:33.358152291 < x-content-type-options: nosniff 2026/07/21 23:19:33.358153193 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:33.358171006 < permissions-policy: publickey-credentials-create=(self),publickey-credentials-get=(self),accelerometer=(),ambient-light-sensor=(),autoplay=(),battery=(),camera=(),display-capture=(),document-domain=(),encrypted-media=(),execution-while-not-rendered=(),execution-while-out-of-viewport=(),fullscreen=(),gamepad=(),geolocation=(),gyroscope=(),hid=(),identity-credentials-get=(),idle-detection=(),local-fonts=(),magnetometer=(),microphone=(),midi=(),otp-credentials=(),payment=(),picture-in-picture=(),screen-wake-lock=(),serial=(),speaker-selection=(),storage-access=(),usb=(),web-share=(),xr-spatial-tracking=() 2026/07/21 23:19:33.358172108 < content-length: 22848 2026/07/21 23:19:33.358243691 < 2026/07/21 23:19:33.358245465 { [958 bytes data] 2026/07/21 23:19:33.358262216 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358264550 { [5 bytes data] 2026/07/21 23:19:33.358282133 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358282694 { [5 bytes data] 2026/07/21 23:19:33.358292783 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358293224 { [5 bytes data] 2026/07/21 23:19:33.358302701 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358303623 { [5 bytes data] 2026/07/21 23:19:33.358335242 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358338498 { [5 bytes data] 2026/07/21 23:19:33.358421172 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358424438 { [5 bytes data] 2026/07/21 23:19:33.358450276 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.358463672 { [5 bytes data] 2026/07/21 23:19:33.359190457 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.359198251 { [5 bytes data] 2026/07/21 23:19:33.359233046 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.359234409 { [5 bytes data] 2026/07/21 23:19:33.359939904 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.359948109 { [5 bytes data] 2026/07/21 23:19:33.359971523 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.359974649 { [5 bytes data] 2026/07/21 23:19:33.360695804 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.360702276 { [5 bytes data] 2026/07/21 23:19:33.360736940 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.360745767 { [5 bytes data] 2026/07/21 23:19:33.361455190 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.361461992 { [5 bytes data] 2026/07/21 23:19:33.361497859 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.361510713 { [5 bytes data] 2026/07/21 23:19:33.362215408 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.362221950 { [5 bytes data] 2026/07/21 23:19:33.362252597 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.362255422 { [5 bytes data] 2026/07/21 23:19:33.362272223 * Connection #1 to host pypi.org left intact 2026/07/21 23:19:33.364630773 2026/07/21 23:19:33.364636995 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://files.pythonhosted.org/ 2026/07/21 23:19:33.377823502 * Trying 151.101.128.223:443... 2026/07/21 23:19:33.383092447 * Connected to files.pythonhosted.org (151.101.128.223) port 443 (#0) 2026/07/21 23:19:33.384524507 * ALPN, offering h2 2026/07/21 23:19:33.384531510 * ALPN, offering http/1.1 2026/07/21 23:19:33.405843521 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:33.405851546 * CApath: /etc/ssl/certs 2026/07/21 23:19:33.406004121 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:33.406014901 } [5 bytes data] 2026/07/21 23:19:33.406085181 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:33.406088939 } [512 bytes data] 2026/07/21 23:19:33.412792158 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:33.412798480 { [5 bytes data] 2026/07/21 23:19:33.412838294 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:33.412839737 { [122 bytes data] 2026/07/21 23:19:33.413045320 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:33.413053856 { [5 bytes data] 2026/07/21 23:19:33.413097708 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.413102276 { [5 bytes data] 2026/07/21 23:19:33.413122394 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): 2026/07/21 23:19:33.413123285 { [19 bytes data] 2026/07/21 23:19:33.413139606 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.413140578 { [5 bytes data] 2026/07/21 23:19:33.413164863 * TLSv1.3 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:33.413165775 { [2842 bytes data] 2026/07/21 23:19:33.413755737 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.413762610 { [5 bytes data] 2026/07/21 23:19:33.413808583 * TLSv1.3 (IN), TLS handshake, CERT verify (15): 2026/07/21 23:19:33.413811178 { [264 bytes data] 2026/07/21 23:19:33.413871310 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.413881439 { [5 bytes data] 2026/07/21 23:19:33.413917046 * TLSv1.3 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:33.413924199 { [36 bytes data] 2026/07/21 23:19:33.413943425 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:33.413958894 } [5 bytes data] 2026/07/21 23:19:33.413974833 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:33.413977368 } [1 bytes data] 2026/07/21 23:19:33.414075263 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414080853 } [5 bytes data] 2026/07/21 23:19:33.414113514 * TLSv1.3 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:33.414115017 } [36 bytes data] 2026/07/21 23:19:33.414158847 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 2026/07/21 23:19:33.414165008 * ALPN, server accepted to use h2 2026/07/21 23:19:33.414212567 * Server certificate: 2026/07/21 23:19:33.414220772 * subject: CN=*.pythonhosted.org 2026/07/21 23:19:33.414241310 * start date: Dec 8 21:08:03 2025 GMT 2026/07/21 23:19:33.414242392 * expire date: Jan 9 21:08:02 2027 GMT 2026/07/21 23:19:33.414258693 * subjectAltName: host "files.pythonhosted.org" matched cert's "*.pythonhosted.org" 2026/07/21 23:19:33.414260145 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4 2026/07/21 23:19:33.414288348 * SSL certificate verify ok. 2026/07/21 23:19:33.414291093 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:33.414306171 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:33.414310670 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:33.414331999 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414333061 } [5 bytes data] 2026/07/21 23:19:33.414343681 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414344192 } [5 bytes data] 2026/07/21 23:19:33.414378115 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414378947 } [5 bytes data] 2026/07/21 23:19:33.414433819 * Using Stream ID: 1 (easy handle 0x557905da2a40) 2026/07/21 23:19:33.414454979 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414473243 } [5 bytes data] 2026/07/21 23:19:33.414503659 > GET / HTTP/2 2026/07/21 23:19:33.414504431 > Host: files.pythonhosted.org 2026/07/21 23:19:33.414517015 > user-agent: curl/7.81.0 2026/07/21 23:19:33.414517515 > accept: */* 2026/07/21 23:19:33.414527504 > 2026/07/21 23:19:33.414528566 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.414566387 { [5 bytes data] 2026/07/21 23:19:33.414578048 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): 2026/07/21 23:19:33.414613597 { [193 bytes data] 2026/07/21 23:19:33.423529229 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.423537885 { [5 bytes data] 2026/07/21 23:19:33.423583170 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:33.423586897 } [5 bytes data] 2026/07/21 23:19:33.423657378 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.423669731 { [5 bytes data] 2026/07/21 23:19:33.423704356 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.423720305 { [5 bytes data] 2026/07/21 23:19:33.423783603 < HTTP/2 200 2026/07/21 23:19:33.423785317 < content-type: text/html 2026/07/21 23:19:33.423819040 < server: Python/3.12 aiohttp/3.14.1 2026/07/21 23:19:33.423820813 < accept-ranges: bytes 2026/07/21 23:19:33.423844988 < date: Tue, 21 Jul 2026 23:19:33 GMT 2026/07/21 23:19:33.423846481 < age: 52 2026/07/21 23:19:33.423915329 < x-served-by: cache-iad-kiad7000058-IAD, cache-bfi-krnt7300079-BFI 2026/07/21 23:19:33.423917734 < x-cache: HIT, HIT 2026/07/21 23:19:33.423951977 < x-cache-hits: 78, 3 2026/07/21 23:19:33.423953210 < x-timer: S1784675973.418224,VS0,VE0 2026/07/21 23:19:33.423968619 < strict-transport-security: max-age=31536000; includeSubDomains; preload 2026/07/21 23:19:33.423969540 < x-frame-options: deny 2026/07/21 23:19:33.424006259 < x-xss-protection: 1; mode=block 2026/07/21 23:19:33.424007651 < x-content-type-options: nosniff 2026/07/21 23:19:33.424028180 < x-permitted-cross-domain-policies: none 2026/07/21 23:19:33.424029282 < x-robots-header: noindex 2026/07/21 23:19:33.424046273 < content-length: 1853 2026/07/21 23:19:33.424047145 < 2026/07/21 23:19:33.424059328 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.424064698 { [5 bytes data] 2026/07/21 23:19:33.424094533 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:33.424095495 { [5 bytes data] 2026/07/21 23:19:33.424117767 * Connection #0 to host files.pythonhosted.org left intact Stopped session pings to http://127.0.0.1:44093 |
| ✅ | packrat-restore-sandbox | R-version | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Performing manifest.json to packrat transformation. 2026/07/21 23:19:33.441541637 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:33.441743714 [connect-session] Job Key: [redacted] 2026/07/21 23:19:33.441753703 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:33.441757330 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:34857 ... Connected to session server http://127.0.0.1:34857 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:33.707450050 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:33.707731665 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/01-R-version.sh 2026/07/21 23:19:33.726384034 2026/07/21 23:19:33.726392500 $ /opt/R/4.4.3/bin/R --version 2026/07/21 23:19:33.726433326 R version 4.4.3 (2025-02-28) -- "Trophy Case" 2026/07/21 23:19:33.726434879 Copyright (C) 2025 The R Foundation for Statistical Computing 2026/07/21 23:19:33.726450488 Platform: x86_64-pc-linux-gnu 2026/07/21 23:19:33.726451330 2026/07/21 23:19:33.726459826 R is free software and comes with ABSOLUTELY NO WARRANTY. 2026/07/21 23:19:33.726460337 You are welcome to redistribute it under the terms of the 2026/07/21 23:19:33.726472068 GNU General Public License versions 2 or 3. 2026/07/21 23:19:33.726472509 For more information about these matters see 2026/07/21 23:19:33.731807027 https://www.gnu.org/licenses/. |
| ✅ | packrat-restore-sandbox | installed-packages | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:33.747496543 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:33.747688922 [connect-session] Job Key: [redacted] 2026/07/21 23:19:33.747700283 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:33.747704310 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:39277 ... Connected to session server http://127.0.0.1:39277 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:33.927458228 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:33.927755873 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/02-installed-packages.sh 2026/07/21 23:19:34.136716343 2026/07/21 23:19:34.136728415 $ /opt/R/4.4.3/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")] 2026/07/21 23:19:34.136787175 Package Version LibPath 2026/07/21 23:19:34.136789519 base "base" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136807282 boot "boot" "1.3-31" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136808234 class "class" "7.3-23" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136824925 cluster "cluster" "2.1.8" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136825656 codetools "codetools" "0.2-20" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136840143 compiler "compiler" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136840875 datasets "datasets" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136854911 foreign "foreign" "0.8-88" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136855643 graphics "graphics" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136869368 grDevices "grDevices" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136870039 grid "grid" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136886861 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136887722 lattice "lattice" "0.22-6" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136906377 MASS "MASS" "7.3-64" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136907299 Matrix "Matrix" "1.7-2" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136929981 methods "methods" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136930873 mgcv "mgcv" "1.9-1" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136947113 nlme "nlme" "3.1-167" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136947824 nnet "nnet" "7.3-20" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136963193 parallel "parallel" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136963934 rpart "rpart" "4.1.24" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136981618 spatial "spatial" "7.3-18" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.136982469 splines "splines" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.137000122 stats "stats" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.137000833 stats4 "stats4" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.137017825 survival "survival" "3.8-3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.137018817 tcltk "tcltk" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.137072026 tools "tools" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:34.142609151 utils "utils" "4.4.3" "/opt/R/4.4.3/lib/R/library" Stopped session pings to http://127.0.0.1:39277 |
| ✅ | packrat-restore-sandbox | options | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:34.158267832 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:34.158459760 [connect-session] Job Key: [redacted] 2026/07/21 23:19:34.158469919 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:34.158473566 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:45083 ... Connected to session server http://127.0.0.1:45083 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:34.339772733 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:34.340079905 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/03-options.R 2026/07/21 23:19:34.340758571 $add.smooth 2026/07/21 23:19:34.340765394 [1] TRUE 2026/07/21 23:19:34.340795821 2026/07/21 23:19:34.340797073 $bitmapType 2026/07/21 23:19:34.340809456 [1] "cairo" 2026/07/21 23:19:34.340810288 2026/07/21 23:19:34.340821278 $browser 2026/07/21 23:19:34.340823943 [1] "xdg-open" 2026/07/21 23:19:34.340836056 2026/07/21 23:19:34.340836897 $browserNLdisabled 2026/07/21 23:19:34.340848699 [1] FALSE 2026/07/21 23:19:34.340849531 2026/07/21 23:19:34.340860652 $catch.script.errors 2026/07/21 23:19:34.340861443 [1] FALSE 2026/07/21 23:19:34.340873946 2026/07/21 23:19:34.340874908 $CBoundsCheck 2026/07/21 23:19:34.340885929 [1] FALSE 2026/07/21 23:19:34.340886690 2026/07/21 23:19:34.340896869 $check.bounds 2026/07/21 23:19:34.340897650 [1] FALSE 2026/07/21 23:19:34.340907840 2026/07/21 23:19:34.340910334 $citation.bibtex.max 2026/07/21 23:19:34.340931323 [1] 1 2026/07/21 23:19:34.340935741 2026/07/21 23:19:34.340948155 $continue 2026/07/21 23:19:34.340949086 [1] "+ " 2026/07/21 23:19:34.340959806 2026/07/21 23:19:34.340960418 $contrasts 2026/07/21 23:19:34.340969394 unordered ordered 2026/07/21 23:19:34.340970045 "contr.treatment" "contr.poly" 2026/07/21 23:19:34.340979613 2026/07/21 23:19:34.340980084 $defaultPackages 2026/07/21 23:19:34.340987689 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods" 2026/07/21 23:19:34.340988330 2026/07/21 23:19:34.340997928 $demo.ask 2026/07/21 23:19:34.340998378 [1] "default" 2026/07/21 23:19:34.341011613 2026/07/21 23:19:34.341012585 $deparse.cutoff 2026/07/21 23:19:34.341051477 [1] 60 2026/07/21 23:19:34.341052960 2026/07/21 23:19:34.341065093 $device 2026/07/21 23:19:34.341388197 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf", 2026/07/21 23:19:34.341389930 width, height, onefile, family, title, fonts, version, paper, 2026/07/21 23:19:34.341422299 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats, 2026/07/21 23:19:34.341424343 useKerning, fillOddEven, compress) 2026/07/21 23:19:34.341442917 { 2026/07/21 23:19:34.341443759 initPSandPDFfonts() 2026/07/21 23:19:34.341455441 new <- list() 2026/07/21 23:19:34.341456332 if (!missing(width)) 2026/07/21 23:19:34.341470829 new$width <- width 2026/07/21 23:19:34.341471641 if (!missing(height)) 2026/07/21 23:19:34.341485126 new$height <- height 2026/07/21 23:19:34.341485918 if (!missing(onefile)) 2026/07/21 23:19:34.341499363 new$onefile <- onefile 2026/07/21 23:19:34.341500284 if (!missing(title)) 2026/07/21 23:19:34.341513148 new$title <- title 2026/07/21 23:19:34.341513890 if (!missing(fonts)) 2026/07/21 23:19:34.341527124 new$fonts <- fonts 2026/07/21 23:19:34.341527936 if (!missing(version)) 2026/07/21 23:19:34.341541261 new$version <- version 2026/07/21 23:19:34.341542062 if (!missing(paper)) 2026/07/21 23:19:34.341555948 new$paper <- paper 2026/07/21 23:19:34.341556790 if (!missing(encoding)) 2026/07/21 23:19:34.341570034 new$encoding <- encoding 2026/07/21 23:19:34.341570846 if (!missing(bg)) 2026/07/21 23:19:34.341584351 new$bg <- bg 2026/07/21 23:19:34.341585313 if (!missing(fg)) 2026/07/21 23:19:34.341597806 new$fg <- fg 2026/07/21 23:19:34.341598568 if (!missing(pointsize)) 2026/07/21 23:19:34.341611171 new$pointsize <- pointsize 2026/07/21 23:19:34.341611973 if (!missing(pagecentre)) 2026/07/21 23:19:34.341626590 new$pagecentre <- pagecentre 2026/07/21 23:19:34.341627371 if (!missing(colormodel)) 2026/07/21 23:19:34.341641738 new$colormodel <- colormodel 2026/07/21 23:19:34.341642650 if (!missing(useDingbats)) 2026/07/21 23:19:34.341657538 new$useDingbats <- useDingbats 2026/07/21 23:19:34.341658409 if (!missing(useKerning)) 2026/07/21 23:19:34.341672808 new$useKerning <- useKerning 2026/07/21 23:19:34.341688886 if (!missing(fillOddEven)) 2026/07/21 23:19:34.341690589 new$fillOddEven <- fillOddEven 2026/07/21 23:19:34.341708342 if (!missing(compress)) 2026/07/21 23:19:34.341709134 new$compress <- compress 2026/07/21 23:19:34.341723090 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv) 2026/07/21 23:19:34.341723981 if (!missing(family) && (inherits(family, "Type1Font") || 2026/07/21 23:19:34.341743318 inherits(family, "CIDFont"))) { 2026/07/21 23:19:34.341744049 enc <- family$encoding 2026/07/21 23:19:34.341758285 if (inherits(family, "Type1Font") && !is.null(enc) && 2026/07/21 23:19:34.341759047 enc != "default" && (is.null(old$encoding) || old$encoding == 2026/07/21 23:19:34.341777431 "default")) 2026/07/21 23:19:34.341778183 old$encoding <- enc 2026/07/21 23:19:34.341791157 family <- family$metrics 2026/07/21 23:19:34.341791928 } 2026/07/21 23:19:34.341804301 if (is.null(old$encoding) || old$encoding == "default") 2026/07/21 23:19:34.341805133 old$encoding <- guessEncoding() 2026/07/21 23:19:34.341821293 if (!missing(family)) { 2026/07/21 23:19:34.341822154 if (length(family) == 4L) { 2026/07/21 23:19:34.341836180 family <- c(family, "Symbol.afm") 2026/07/21 23:19:34.341837002 } 2026/07/21 23:19:34.341850237 else if (length(family) == 5L) { 2026/07/21 23:19:34.341851108 } 2026/07/21 23:19:34.341863902 else if (length(family) == 1L) { 2026/07/21 23:19:34.341865045 pf <- pdfFonts(family)[[1L]] 2026/07/21 23:19:34.341879712 if (is.null(pf)) 2026/07/21 23:19:34.341880443 stop(gettextf("unknown family '%s'", family), 2026/07/21 23:19:34.341895531 domain = NA) 2026/07/21 23:19:34.341896353 matchFont(pf, old$encoding) 2026/07/21 23:19:34.341911381 } 2026/07/21 23:19:34.341912212 else stop("invalid 'family' argument") 2026/07/21 23:19:34.341925587 old$family <- family 2026/07/21 23:19:34.341926439 } 2026/07/21 23:19:34.341938321 version <- old$version 2026/07/21 23:19:34.341939092 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", 2026/07/21 23:19:34.341948592 "2.0") 2026/07/21 23:19:34.341958709 if (version %in% versions) 2026/07/21 23:19:34.341959581 version <- as.integer(strsplit(version, "[.]")[[1L]]) 2026/07/21 23:19:34.341971054 else stop("invalid PDF version") 2026/07/21 23:19:34.341982573 onefile <- old$onefile 2026/07/21 23:19:34.341986020 if (!checkIntFormat(file)) 2026/07/21 23:19:34.342000427 stop(gettextf("invalid 'file' argument '%s'", file), 2026/07/21 23:19:34.342001319 domain = NA) 2026/07/21 23:19:34.342016657 .External(C_PDF, file, old$paper, old$family, old$encoding, 2026/07/21 23:19:34.342017429 old$bg, old$fg, old$width, old$height, old$pointsize, 2026/07/21 23:19:34.342064727 onefile, old$pagecentre, old$title, old$fonts, version[1L], 2026/07/21 23:19:34.342066049 version[2L], old$colormodel, old$useDingbats, old$useKerning, 2026/07/21 23:19:34.342085596 old$fillOddEven, old$compress) 2026/07/21 23:19:34.342088130 invisible() 2026/07/21 23:19:34.342102688 } 2026/07/21 23:19:34.342103519 <bytecode: 0x5560682ad9a0> 2026/07/21 23:19:34.342115652 <environment: namespace:grDevices> 2026/07/21 23:19:34.342116463 2026/07/21 23:19:34.342129227 $device.ask.default 2026/07/21 23:19:34.342130059 [1] FALSE 2026/07/21 23:19:34.342142371 2026/07/21 23:19:34.342143393 $digits 2026/07/21 23:19:34.342155907 [1] 7 2026/07/21 23:19:34.342156849 2026/07/21 23:19:34.342168620 $download.file.extra 2026/07/21 23:19:34.342169933 [1] "-L -f -w 'curl: HTTP %{http_code} %{url_effective}\n' -A 'RStudio R (4.4.3 x86_64-pc-linux-gnu x86_64 linux-gnu)'" 2026/07/21 23:19:34.342194609 2026/07/21 23:19:34.342195781 $download.file.method 2026/07/21 23:19:34.342214847 [1] "curl" 2026/07/21 23:19:34.342215779 2026/07/21 23:19:34.342227009 $dvipscmd 2026/07/21 23:19:34.342227901 [1] "dvips" 2026/07/21 23:19:34.342239903 2026/07/21 23:19:34.342240685 $echo 2026/07/21 23:19:34.342249962 [1] FALSE 2026/07/21 23:19:34.342250733 2026/07/21 23:19:34.342261564 $editor 2026/07/21 23:19:34.342262365 [1] "vi" 2026/07/21 23:19:34.342274388 2026/07/21 23:19:34.342275229 $encoding 2026/07/21 23:19:34.342285859 [1] "native.enc" 2026/07/21 23:19:34.342286620 2026/07/21 23:19:34.342297351 $example.ask 2026/07/21 23:19:34.342298172 [1] "default" 2026/07/21 23:19:34.342311607 2026/07/21 23:19:34.342312509 $expressions 2026/07/21 23:19:34.342325122 [1] 5000 2026/07/21 23:19:34.342325793 2026/07/21 23:19:34.342340581 $help.search.types 2026/07/21 23:19:34.342341803 [1] "vignette" "demo" "help" 2026/07/21 23:19:34.342357793 2026/07/21 23:19:34.342358795 $help.try.all.packages 2026/07/21 23:19:34.342368223 [1] FALSE 2026/07/21 23:19:34.342368673 2026/07/21 23:19:34.342375516 $HTTPUserAgent 2026/07/21 23:19:34.342375967 [1] "R/4.4.3 (ubuntu-22.04) R (4.4.3 x86_64-pc-linux-gnu x86_64 linux-gnu)" 2026/07/21 23:19:34.342385755 2026/07/21 23:19:34.342386206 $internet.info 2026/07/21 23:19:34.342393269 [1] 2 2026/07/21 23:19:34.342393720 2026/07/21 23:19:34.342400303 $keep.parse.data 2026/07/21 23:19:34.342400804 [1] TRUE 2026/07/21 23:19:34.342408327 2026/07/21 23:19:34.342408758 $keep.parse.data.pkgs 2026/07/21 23:19:34.342416222 [1] FALSE 2026/07/21 23:19:34.342416663 2026/07/21 23:19:34.342423516 $keep.source 2026/07/21 23:19:34.342423947 [1] FALSE 2026/07/21 23:19:34.342431180 2026/07/21 23:19:34.342431611 $keep.source.pkgs 2026/07/21 23:19:34.342438794 [1] FALSE 2026/07/21 23:19:34.342439215 2026/07/21 23:19:34.342445928 $locatorBell 2026/07/21 23:19:34.342446358 [1] TRUE 2026/07/21 23:19:34.342459333 2026/07/21 23:19:34.342460144 $mailer 2026/07/21 23:19:34.342472607 [1] "mailto" 2026/07/21 23:19:34.342473519 2026/07/21 23:19:34.342484900 $matprod 2026/07/21 23:19:34.342485682 [1] "default" 2026/07/21 23:19:34.342496081 2026/07/21 23:19:34.342496863 $max.contour.segments 2026/07/21 23:19:34.342507062 [1] 25000 2026/07/21 23:19:34.342507733 2026/07/21 23:19:34.342533621 $max.print 2026/07/21 23:19:34.342534503 [1] 99999 2026/07/21 23:19:34.342545052 2026/07/21 23:19:34.342545844 $menu.graphics 2026/07/21 23:19:34.342557315 [1] TRUE 2026/07/21 23:19:34.342558117 2026/07/21 23:19:34.342568937 $na.action 2026/07/21 23:19:34.342569759 [1] "na.omit" 2026/07/21 23:19:34.342583164 2026/07/21 23:19:34.342584175 $nwarnings 2026/07/21 23:19:34.342596228 [1] 50 2026/07/21 23:19:34.342597119 2026/07/21 23:19:34.342608260 $OutDec 2026/07/21 23:19:34.342609162 [1] "." 2026/07/21 23:19:34.342620914 2026/07/21 23:19:34.342621916 $packrat.authenticated.downloads.use.renv 2026/07/21 23:19:34.342636553 [1] TRUE 2026/07/21 23:19:34.342637325 2026/07/21 23:19:34.342649026 $packrat.connect.timeout 2026/07/21 23:19:34.342649848 [1] 10 2026/07/21 23:19:34.342663053 2026/07/21 23:19:34.342663814 $packrat.untrusted.packages 2026/07/21 23:19:34.342677209 character(0) 2026/07/21 23:19:34.342678121 2026/07/21 23:19:34.342689301 $packrat.verbose.cache 2026/07/21 23:19:34.342690173 [1] TRUE 2026/07/21 23:19:34.342703207 2026/07/21 23:19:34.342704169 $pager 2026/07/21 23:19:34.342715159 [1] "/opt/R/4.4.3/lib/R/bin/pager" 2026/07/21 23:19:34.342716322 2026/07/21 23:19:34.342733524 $papersize 2026/07/21 23:19:34.342734626 [1] "letter" 2026/07/21 23:19:34.342751017 2026/07/21 23:19:34.342752068 $PCRE_limit_recursion 2026/07/21 23:19:34.342767026 [1] NA 2026/07/21 23:19:34.342767798 2026/07/21 23:19:34.342778748 $PCRE_study 2026/07/21 23:19:34.342779510 [1] FALSE 2026/07/21 23:19:34.342792083 2026/07/21 23:19:34.342793025 $PCRE_use_JIT 2026/07/21 23:19:34.342805478 [1] TRUE 2026/07/21 23:19:34.342806390 2026/07/21 23:19:34.342816939 $pdfviewer 2026/07/21 23:19:34.342817711 [1] "/usr/bin/xdg-open" 2026/07/21 23:19:34.342830244 2026/07/21 23:19:34.342831006 $pkgType 2026/07/21 23:19:34.342847246 [1] "source" 2026/07/21 23:19:34.342847987 2026/07/21 23:19:34.342858537 $printcmd 2026/07/21 23:19:34.342859318 [1] "/usr/bin/lpr" 2026/07/21 23:19:34.342871361 2026/07/21 23:19:34.342872152 $prompt 2026/07/21 23:19:34.342882912 [1] "> " 2026/07/21 23:19:34.342883734 2026/07/21 23:19:34.342893973 $repos 2026/07/21 23:19:34.342894765 CRAN 2026/07/21 23:19:34.342906226 "@CRAN@" 2026/07/21 23:19:34.342907057 2026/07/21 23:19:34.342917236 $rl_word_breaks 2026/07/21 23:19:34.342918028 [1] " \t\n\"\\'`><=%;,|&{()}" 2026/07/21 23:19:34.342930661 2026/07/21 23:19:34.342931463 $scipen 2026/07/21 23:19:34.342942093 [1] 0 2026/07/21 23:19:34.342942934 2026/07/21 23:19:34.342952973 $show.coef.Pvalues 2026/07/21 23:19:34.342953855 [1] TRUE 2026/07/21 23:19:34.342965857 2026/07/21 23:19:34.342966639 $show.error.messages 2026/07/21 23:19:34.342978190 [1] TRUE 2026/07/21 23:19:34.342978951 2026/07/21 23:19:34.342990323 $show.signif.stars 2026/07/21 23:19:34.342991174 [1] TRUE 2026/07/21 23:19:34.343004198 2026/07/21 23:19:34.343005070 $showErrorCalls 2026/07/21 23:19:34.343052519 [1] TRUE 2026/07/21 23:19:34.343054162 2026/07/21 23:19:34.343066935 $showNCalls 2026/07/21 23:19:34.343067867 [1] 50 2026/07/21 23:19:34.343080030 2026/07/21 23:19:34.343080852 $showWarnCalls 2026/07/21 23:19:34.343093114 [1] FALSE 2026/07/21 23:19:34.343093806 2026/07/21 23:19:34.343105297 $str 2026/07/21 23:19:34.343106199 $str$strict.width 2026/07/21 23:19:34.343118442 [1] "no" 2026/07/21 23:19:34.343119293 2026/07/21 23:19:34.343130264 $str$digits.d 2026/07/21 23:19:34.343131095 [1] 3 2026/07/21 23:19:34.343141935 2026/07/21 23:19:34.343142787 $str$vec.len 2026/07/21 23:19:34.343153828 [1] 4 2026/07/21 23:19:34.343154629 2026/07/21 23:19:34.343164517 $str$list.len 2026/07/21 23:19:34.343165309 [1] 99 2026/07/21 23:19:34.343177301 2026/07/21 23:19:34.343178083 $str$deparse.lines 2026/07/21 23:19:34.343188953 NULL 2026/07/21 23:19:34.343189735 2026/07/21 23:19:34.343199863 $str$drop.deparse.attr 2026/07/21 23:19:34.343200695 [1] TRUE 2026/07/21 23:19:34.343212778 2026/07/21 23:19:34.343213669 $str$formatNum 2026/07/21 23:19:34.343224850 function (x, ...) 2026/07/21 23:19:34.343225702 format(x, trim = TRUE, drop0trailing = TRUE, ...) 2026/07/21 23:19:34.343239828 <environment: 0x556068a104e8> 2026/07/21 23:19:34.343240559 2026/07/21 23:19:34.343253303 2026/07/21 23:19:34.343254115 $str.dendrogram.last 2026/07/21 23:19:34.343266247 [1] "`" 2026/07/21 23:19:34.343267089 2026/07/21 23:19:34.343278741 $texi2dvi 2026/07/21 23:19:34.343279592 [1] "/usr/bin/texi2dvi" 2026/07/21 23:19:34.343291755 2026/07/21 23:19:34.343292496 $timeout 2026/07/21 23:19:34.343303547 [1] 60 2026/07/21 23:19:34.343304438 2026/07/21 23:19:34.343314307 $ts.eps 2026/07/21 23:19:34.343315048 [1] 1e-05 2026/07/21 23:19:34.343326109 2026/07/21 23:19:34.343327000 $ts.S.compat 2026/07/21 23:19:34.343338412 [1] FALSE 2026/07/21 23:19:34.343339394 2026/07/21 23:19:34.343351216 $unzip 2026/07/21 23:19:34.343352097 [1] "/usr/bin/unzip" 2026/07/21 23:19:34.343366494 2026/07/21 23:19:34.343367596 $useFancyQuotes 2026/07/21 23:19:34.343383205 [1] TRUE 2026/07/21 23:19:34.343384177 2026/07/21 23:19:34.343396570 $verbose 2026/07/21 23:19:34.343399466 [1] FALSE 2026/07/21 23:19:34.343406869 2026/07/21 23:19:34.343407310 $warn 2026/07/21 23:19:34.343414003 [1] 0 2026/07/21 23:19:34.343414434 2026/07/21 23:19:34.343420875 $warning.length 2026/07/21 23:19:34.343421336 [1] 1000 2026/07/21 23:19:34.343428630 2026/07/21 23:19:34.343429141 $warnPartialMatchArgs 2026/07/21 23:19:34.343437547 [1] FALSE 2026/07/21 23:19:34.343437987 2026/07/21 23:19:34.343444830 $warnPartialMatchAttr 2026/07/21 23:19:34.343445271 [1] FALSE 2026/07/21 23:19:34.343452895 2026/07/21 23:19:34.343453336 $warnPartialMatchDollar 2026/07/21 23:19:34.343460630 [1] FALSE 2026/07/21 23:19:34.343461081 2026/07/21 23:19:34.343472291 $width 2026/07/21 23:19:34.343473464 [1] 80 2026/07/21 23:19:34.343484694 |
| ✅ | packrat-restore-sandbox | environment | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:34.364642317 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:34.364823455 [connect-session] Job Key: [redacted] 2026/07/21 23:19:34.364833694 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:34.364837622 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:33245 ... Connected to session server http://127.0.0.1:33245 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:34.546093903 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:34.546410613 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/04-environment.sh 2026/07/21 23:19:34.554261689 2026/07/21 23:19:34.554270576 $ env 2026/07/21 23:19:34.554310730 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:34.554313155 EDITOR=vi 2026/07/21 23:19:34.554336539 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:34.554338132 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:34.554353651 LANG=en_US.UTF-8 2026/07/21 23:19:34.554354452 LANGUAGE=en_US:en 2026/07/21 23:19:34.554365473 LC_ALL=en_US.UTF-8 2026/07/21 23:19:34.554366144 LD_LIBRARY_PATH=/opt/R/4.4.3/lib/R/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-11-openjdk-amd64/lib/server 2026/07/21 23:19:34.554387373 LN_S=ln -s 2026/07/21 23:19:34.554388355 LOGNAME=rstudio-connect 2026/07/21 23:19:34.554401860 MAKEFLAGS=-j1 2026/07/21 23:19:34.554402692 MAKE=make 2026/07/21 23:19:34.554415416 PAGER=/usr/bin/pager 2026/07/21 23:19:34.554416327 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2026/07/21 23:19:34.554435193 POSIT_CONNECT=1 2026/07/21 23:19:34.554436245 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:34.554444961 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:34.554445412 R_ARCH= 2026/07/21 23:19:34.554458857 R_BROWSER=xdg-open 2026/07/21 23:19:34.554459768 R_BZIPCMD=/usr/bin/bzip2 2026/07/21 23:19:34.554485359 R_DOC_DIR=/opt/R/4.4.3/lib/R/doc 2026/07/21 23:19:34.554486731 R_ENVIRON_USER=REDACTED 2026/07/21 23:19:34.554505115 R_GZIPCMD=/usr/bin/gzip 2026/07/21 23:19:34.554506147 R_HOME=/opt/R/4.4.3/lib/R 2026/07/21 23:19:34.554515805 R_INCLUDE_DIR=/opt/R/4.4.3/lib/R/include 2026/07/21 23:19:34.554516667 R_LIBS_SITE=/opt/R/4.4.3/lib/R/site-library 2026/07/21 23:19:34.554526164 R_LIBS_USER=REDACTED 2026/07/21 23:19:34.554526595 R_PACKRAT_CACHE_DIR=/opt/rstudio-connect/mnt/packrat 2026/07/21 23:19:34.554536053 R_PACKRAT_SRC_DIR=/opt/rstudio-connect/mnt/tmp/Rtmp6RIRh4/packrat-src 2026/07/21 23:19:34.554536584 R_PAPERSIZE=letter 2026/07/21 23:19:34.554546703 R_PDFVIEWER=/usr/bin/xdg-open 2026/07/21 23:19:34.554547184 R_PLATFORM=x86_64-pc-linux-gnu 2026/07/21 23:19:34.554564045 R_PRINTCMD=/usr/bin/lpr 2026/07/21 23:19:34.554564867 R_PROFILE_USER=REDACTED 2026/07/21 23:19:34.554577651 R_RD4PDF=times,inconsolata,hyper 2026/07/21 23:19:34.554578452 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/Rtmp6RIRh4 2026/07/21 23:19:34.554596456 R_SHARE_DIR=/opt/R/4.4.3/lib/R/share 2026/07/21 23:19:34.554597508 R_STRIP_SHARED_LIB=strip --strip-unneeded 2026/07/21 23:19:34.554615662 R_STRIP_STATIC_LIB=strip --strip-debug 2026/07/21 23:19:34.554616663 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:34.554632443 R_TEXI2DVICMD=/usr/bin/texi2dvi 2026/07/21 23:19:34.554633334 R_UNZIPCMD=/usr/bin/unzip 2026/07/21 23:19:34.554649625 R_ZIPCMD=/usr/bin/zip 2026/07/21 23:19:34.554650737 SED=/usr/bin/sed 2026/07/21 23:19:34.554665514 SHLVL=2 2026/07/21 23:19:34.554666296 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:34.554682556 TAR=/usr/bin/tar 2026/07/21 23:19:34.554683528 TERM=xterm 2026/07/21 23:19:34.554751635 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:34.554754140 TZ=UTC 2026/07/21 23:19:34.554768206 USERNAME=rstudio-connect 2026/07/21 23:19:34.554769097 USER=rstudio-connect 2026/07/21 23:19:34.560392957 _=/usr/bin/env Stopped session pings to http://127.0.0.1:33245 |
| ✅ | packrat-restore-sandbox | mounts | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:34.575610753 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:34.575791671 [connect-session] Job Key: [redacted] 2026/07/21 23:19:34.575804735 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:34.575808522 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:38291 ... Starting content session token refresher (interval: 12h0m0s) Connected to session server http://127.0.0.1:38291 2026/07/21 23:19:34.758695019 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:34.759030482 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/05-mounts.sh 2026/07/21 23:19:34.766751612 2026/07/21 23:19:34.766759667 $ findmnt --notruncate 2026/07/21 23:19:34.766787549 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:34.766788802 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/BQKBL LQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:34.766860155 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:34.766860816 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:34.766891363 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:34.766892745 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:34.766922954 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:34.766927853 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:34.767003765 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:34.767005417 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:34.767069688 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767073535 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:34.767257886 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:34.767259940 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767451978 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767453501 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767500438 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767503434 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767556445 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/lKr05ZAKmkzG3hkO] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767591027 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/R] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767592220 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/packrat] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:34.767648755 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace2455593886] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:34.767655578 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:34.772134780 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr Stopped session pings to http://127.0.0.1:38291 |
| ✅ | packrat-restore-sandbox | r-package-repository | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:34.787777609 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:34.787960240 [connect-session] Job Key: [redacted] 2026/07/21 23:19:34.787970259 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:34.787973875 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:38265 ... Connected to session server http://127.0.0.1:38265 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:34.969209745 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:34.969492584 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository 2026/07/21 23:19:35.431464345 2026/07/21 23:19:35.431479103 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest 2026/07/21 23:19:35.431551628 * Trying 3.142.16.141:443... 2026/07/21 23:19:35.431553371 * Connected to packagemanager.posit.co (3.142.16.141) port 443 (#0) 2026/07/21 23:19:35.431569331 * ALPN, offering h2 2026/07/21 23:19:35.431570203 * ALPN, offering http/1.1 2026/07/21 23:19:35.431583507 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:35.431584319 * CApath: /etc/ssl/certs 2026/07/21 23:19:35.431602873 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431604136 } [5 bytes data] 2026/07/21 23:19:35.431619905 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:35.431620697 } [512 bytes data] 2026/07/21 23:19:35.431634913 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431635645 { [5 bytes data] 2026/07/21 23:19:35.431650642 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:35.431651464 { [104 bytes data] 2026/07/21 23:19:35.431666061 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431666913 { [5 bytes data] 2026/07/21 23:19:35.431682422 * TLSv1.2 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:35.431683263 { [3880 bytes data] 2026/07/21 23:19:35.431697931 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431698742 { [5 bytes data] 2026/07/21 23:19:35.431721986 * TLSv1.2 (IN), TLS handshake, Server key exchange (12): 2026/07/21 23:19:35.431727866 { [333 bytes data] 2026/07/21 23:19:35.431745018 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431746000 { [5 bytes data] 2026/07/21 23:19:35.431761038 * TLSv1.2 (IN), TLS handshake, Server finished (14): 2026/07/21 23:19:35.431761830 { [4 bytes data] 2026/07/21 23:19:35.431776217 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431776998 } [5 bytes data] 2026/07/21 23:19:35.431791796 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): 2026/07/21 23:19:35.431792557 } [70 bytes data] 2026/07/21 23:19:35.431807154 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:35.431807946 } [5 bytes data] 2026/07/21 23:19:35.431822563 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:35.431823495 } [1 bytes data] 2026/07/21 23:19:35.431838232 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431839144 } [5 bytes data] 2026/07/21 23:19:35.431854152 * TLSv1.2 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:35.431854934 } [16 bytes data] 2026/07/21 23:19:35.431868639 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:35.431869390 { [5 bytes data] 2026/07/21 23:19:35.431908844 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:35.431910106 { [5 bytes data] 2026/07/21 23:19:35.431925695 * TLSv1.2 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:35.431926497 { [16 bytes data] 2026/07/21 23:19:35.431940643 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256 2026/07/21 23:19:35.431941455 * ALPN, server accepted to use h2 2026/07/21 23:19:35.431959629 * Server certificate: 2026/07/21 23:19:35.431960450 * subject: CN=p3m.posit.it 2026/07/21 23:19:35.431974366 * start date: Jul 12 00:00:00 2026 GMT 2026/07/21 23:19:35.431975308 * expire date: Jan 25 23:59:59 2027 GMT 2026/07/21 23:19:35.431990156 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co" 2026/07/21 23:19:35.431991047 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 2026/07/21 23:19:35.432052061 * SSL certificate verify ok. 2026/07/21 23:19:35.432053494 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:35.432069754 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:35.432070626 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:35.432101102 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432102044 } [5 bytes data] 2026/07/21 23:19:35.432143501 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432144654 } [5 bytes data] 2026/07/21 23:19:35.432180801 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432181903 } [5 bytes data] 2026/07/21 23:19:35.432196440 * Using Stream ID: 1 (easy handle 0x5598c79caa40) 2026/07/21 23:19:35.432197232 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432214955 } [5 bytes data] 2026/07/21 23:19:35.432215806 > GET /cran/__linux__/jammy/latest HTTP/2 2026/07/21 23:19:35.432229582 > Host: packagemanager.posit.co 2026/07/21 23:19:35.432230444 > user-agent: curl/7.81.0 2026/07/21 23:19:35.432245061 > accept: */* 2026/07/21 23:19:35.432245892 > 2026/07/21 23:19:35.432256542 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432257394 { [5 bytes data] 2026/07/21 23:19:35.432290055 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! 2026/07/21 23:19:35.432311234 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432312316 } [5 bytes data] 2026/07/21 23:19:35.432342483 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432343545 { [5 bytes data] 2026/07/21 23:19:35.432358152 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432358973 { [5 bytes data] 2026/07/21 23:19:35.432374001 < HTTP/2 400 2026/07/21 23:19:35.432374923 < date: Tue, 21 Jul 2026 23:19:35 GMT 2026/07/21 23:19:35.432387516 < content-type: text/plain; charset=utf-8 2026/07/21 23:19:35.432388328 < content-length: 94 2026/07/21 23:19:35.432416953 < cache-control: max-age=3600 2026/07/21 23:19:35.432427573 < request-id: ea9d41c6-b5ff-4f83-9cde-58af1aa90612 2026/07/21 23:19:35.432460535 < server: Posit Package Manager v2026.06.0 2026/07/21 23:19:35.432462649 < x-content-type-options: nosniff 2026/07/21 23:19:35.432481394 < x-frame-options: DENY 2026/07/21 23:19:35.432482395 < x-repository-type: RSPM 2026/07/21 23:19:35.432497103 < 2026/07/21 23:19:35.432533751 { [94 bytes data] 2026/07/21 23:19:35.432548599 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:35.432549451 { [5 bytes data] 2026/07/21 23:19:35.438209853 * Connection #0 to host packagemanager.posit.co left intact Stopped session pings to http://127.0.0.1:38265 |
| ✅ | packrat-restore-sandbox | r-package-repository | Bundle requested R version 4.4.3; using /opt/R/4.4.3/bin/R from Local which has version 4.4.3 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:35.453559434 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:35.453742725 [connect-session] Job Key: [redacted] 2026/07/21 23:19:35.453751873 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:35.453755720 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:36235 ... Connected to session server http://127.0.0.1:36235 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:35.634894901 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:35.635203851 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository 2026/07/21 23:19:36.006579625 2026/07/21 23:19:36.006594092 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest 2026/07/21 23:19:36.006763678 * Trying 18.224.154.113:443... 2026/07/21 23:19:36.006765982 * Connected to packagemanager.posit.co (18.224.154.113) port 443 (#0) 2026/07/21 23:19:36.006786360 * ALPN, offering h2 2026/07/21 23:19:36.006787242 * ALPN, offering http/1.1 2026/07/21 23:19:36.006805556 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:36.006806318 * CApath: /etc/ssl/certs 2026/07/21 23:19:36.006825704 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:36.006830162 } [5 bytes data] 2026/07/21 23:19:36.006865779 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:36.006867722 } [512 bytes data] 2026/07/21 23:19:36.006883532 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:36.006884383 { [5 bytes data] 2026/07/21 23:19:36.006899592 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:36.006900443 { [104 bytes data] 2026/07/21 23:19:36.006915171 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:36.006915892 { [5 bytes data] 2026/07/21 23:19:36.006930159 * TLSv1.2 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:36.006930920 { [3880 bytes data] 2026/07/21 23:19:36.006946900 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:36.006947792 { [5 bytes data] 2026/07/21 23:19:36.006964052 * TLSv1.2 (IN), TLS handshake, Server key exchange (12): 2026/07/21 23:19:36.006964904 { [333 bytes data] 2026/07/21 23:19:36.006978108 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:36.006978810 { [5 bytes data] 2026/07/21 23:19:36.006991153 * TLSv1.2 (IN), TLS handshake, Server finished (14): 2026/07/21 23:19:36.006991834 { [4 bytes data] 2026/07/21 23:19:36.007004057 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:36.007004698 } [5 bytes data] 2026/07/21 23:19:36.007036918 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): 2026/07/21 23:19:36.007039713 } [70 bytes data] 2026/07/21 23:19:36.007066092 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:36.007067344 } [5 bytes data] 2026/07/21 23:19:36.007085849 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:36.007086711 } [1 bytes data] 2026/07/21 23:19:36.007125623 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:36.007126685 } [5 bytes data] 2026/07/21 23:19:36.007142916 * TLSv1.2 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:36.007143707 } [16 bytes data] 2026/07/21 23:19:36.007158394 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:36.007159126 { [5 bytes data] 2026/07/21 23:19:36.007173021 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:36.007173833 { [5 bytes data] 2026/07/21 23:19:36.007191616 * TLSv1.2 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:36.007192628 { [16 bytes data] 2026/07/21 23:19:36.007207276 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256 2026/07/21 23:19:36.007208157 * ALPN, server accepted to use h2 2026/07/21 23:19:36.007226281 * Server certificate: 2026/07/21 23:19:36.007227062 * subject: CN=p3m.posit.it 2026/07/21 23:19:36.007241079 * start date: Jul 12 00:00:00 2026 GMT 2026/07/21 23:19:36.007241930 * expire date: Jan 25 23:59:59 2027 GMT 2026/07/21 23:19:36.007257018 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co" 2026/07/21 23:19:36.007257820 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 2026/07/21 23:19:36.007278709 * SSL certificate verify ok. 2026/07/21 23:19:36.007279580 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:36.007295179 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:36.007295971 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:36.007336546 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007337608 } [5 bytes data] 2026/07/21 23:19:36.007353418 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007354270 } [5 bytes data] 2026/07/21 23:19:36.007368817 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007369568 } [5 bytes data] 2026/07/21 23:19:36.007384396 * Using Stream ID: 1 (easy handle 0x5612519a1a40) 2026/07/21 23:19:36.007385308 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007402319 } [5 bytes data] 2026/07/21 23:19:36.007403171 > GET /cran/__linux__/jammy/latest HTTP/2 2026/07/21 23:19:36.007417718 > Host: packagemanager.posit.co 2026/07/21 23:19:36.007418539 > user-agent: curl/7.81.0 2026/07/21 23:19:36.007432766 > accept: */* 2026/07/21 23:19:36.007433537 > 2026/07/21 23:19:36.007444758 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007445650 { [5 bytes data] 2026/07/21 23:19:36.007460508 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! 2026/07/21 23:19:36.007461309 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007479152 } [5 bytes data] 2026/07/21 23:19:36.007480014 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007494561 { [5 bytes data] 2026/07/21 23:19:36.007495313 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007509880 { [5 bytes data] 2026/07/21 23:19:36.007510671 < HTTP/2 400 2026/07/21 23:19:36.007522633 < date: Tue, 21 Jul 2026 23:19:35 GMT 2026/07/21 23:19:36.007523445 < content-type: text/plain; charset=utf-8 2026/07/21 23:19:36.007538694 < content-length: 94 2026/07/21 23:19:36.007539505 < cache-control: max-age=3600 2026/07/21 23:19:36.007553681 < request-id: 46cefe9c-7425-49f6-b73d-9c5960ab1f12 2026/07/21 23:19:36.007554643 < server: Posit Package Manager v2026.06.0 2026/07/21 23:19:36.007575452 < x-content-type-options: nosniff 2026/07/21 23:19:36.007576414 < x-frame-options: DENY 2026/07/21 23:19:36.007591492 < x-repository-type: RSPM 2026/07/21 23:19:36.007592243 < 2026/07/21 23:19:36.007604386 { [94 bytes data] 2026/07/21 23:19:36.007605218 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:36.007619845 { [5 bytes data] 2026/07/21 23:19:36.013288307 * Connection #0 to host packagemanager.posit.co left intact Stopped session pings to http://127.0.0.1:36235 |
| ✅ | packrat-restore-sandbox | R-version | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:36.028912637 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:36.029110837 [connect-session] Job Key: [redacted] 2026/07/21 23:19:36.029131696 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:36.029137577 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:40109 ... Connected to session server http://127.0.0.1:40109 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:36.238544311 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:36.238829184 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/01-R-version.sh 2026/07/21 23:19:36.256870954 2026/07/21 23:19:36.256878178 $ /opt/R/4.5.2/bin/R --version 2026/07/21 23:19:36.256918293 R version 4.5.2 (2025-10-31) -- "[Not] Part in a Rumble" 2026/07/21 23:19:36.256919455 Copyright (C) 2025 The R Foundation for Statistical Computing 2026/07/21 23:19:36.256944041 Platform: x86_64-pc-linux-gnu 2026/07/21 23:19:36.256945513 2026/07/21 23:19:36.256960471 R is free software and comes with ABSOLUTELY NO WARRANTY. 2026/07/21 23:19:36.256961503 You are welcome to redistribute it under the terms of the 2026/07/21 23:19:36.256974447 GNU General Public License versions 2 or 3. 2026/07/21 23:19:36.256975079 For more information about these matters see 2026/07/21 23:19:36.261962300 https://www.gnu.org/licenses/. |
| ✅ | packrat-restore-sandbox | installed-packages | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:36.277182481 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:36.277483392 [connect-session] Job Key: [redacted] 2026/07/21 23:19:36.277497559 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:36.277503129 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:46435 ... Connected to session server http://127.0.0.1:46435 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:36.464389062 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:36.464676418 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/02-installed-packages.sh 2026/07/21 23:19:36.682176163 2026/07/21 23:19:36.682190429 $ /opt/R/4.5.2/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")] 2026/07/21 23:19:36.682242136 Package Version LibPath 2026/07/21 23:19:36.682243689 base "base" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682260139 bit "bit" "4.6.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682260921 bit64 "bit64" "4.8.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682277432 blob "blob" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682278353 boot "boot" "1.3-32" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682294744 class "class" "7.3-23" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682295686 cli "cli" "3.6.6" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682313839 cluster "cluster" "2.1.8.1" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682314651 codetools "codetools" "0.2-20" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682332144 compiler "compiler" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682332935 datasets "datasets" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682350007 DBI "DBI" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682350779 foreign "foreign" "0.8-90" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682367680 glue "glue" "1.8.1" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682368501 graphics "graphics" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682385423 grDevices "grDevices" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682386265 grid "grid" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682470033 hms "hms" "1.1.4" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682473710 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682544863 lattice "lattice" "0.22-7" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682546726 lifecycle "lifecycle" "1.0.5" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682566372 MASS "MASS" "7.3-65" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682567314 Matrix "Matrix" "1.7-4" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682585448 methods "methods" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682586410 mgcv "mgcv" "1.9-3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682603943 nlme "nlme" "3.1-168" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682604794 nnet "nnet" "7.3-20" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682661830 odbc "odbc" "1.7.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682663353 parallel "parallel" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682695994 pkgconfig "pkgconfig" "2.0.3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682696986 Rcpp "Rcpp" "1.1.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682714719 rlang "rlang" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682715651 rpart "rpart" "4.1.24" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682765754 spatial "spatial" "7.3-18" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682767117 splines "splines" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682784750 stats "stats" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682785581 stats4 "stats4" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682802523 survival "survival" "3.8-3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682803485 tcltk "tcltk" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682820725 tools "tools" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.682836066 utils "utils" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:36.688265265 vctrs "vctrs" "0.7.3" "/opt/R/4.5.2/lib/R/library" Stopped session pings to http://127.0.0.1:46435 |
| ✅ | packrat-restore-sandbox | options | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:36.703615729 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:36.703835218 [connect-session] Job Key: [redacted] 2026/07/21 23:19:36.703845828 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:36.703849946 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:45747 ... Connected to session server http://127.0.0.1:45747 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:36.887283339 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:36.887620736 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/03-options.R 2026/07/21 23:19:36.888025601 $add.smooth 2026/07/21 23:19:36.888032344 [1] TRUE 2026/07/21 23:19:36.888064063 2026/07/21 23:19:36.888066988 $bitmapType 2026/07/21 23:19:36.888091103 [1] "cairo" 2026/07/21 23:19:36.888092175 2026/07/21 23:19:36.888104097 $browser 2026/07/21 23:19:36.888107013 [1] "xdg-open" 2026/07/21 23:19:36.888119206 2026/07/21 23:19:36.888120107 $browserNLdisabled 2026/07/21 23:19:36.888132120 [1] FALSE 2026/07/21 23:19:36.888133031 2026/07/21 23:19:36.888144192 $catch.script.errors 2026/07/21 23:19:36.888145134 [1] FALSE 2026/07/21 23:19:36.888157758 2026/07/21 23:19:36.888158539 $CBoundsCheck 2026/07/21 23:19:36.888170181 [1] FALSE 2026/07/21 23:19:36.888171062 2026/07/21 23:19:36.888185449 $check.bounds 2026/07/21 23:19:36.888186271 [1] FALSE 2026/07/21 23:19:36.888201870 2026/07/21 23:19:36.888202651 $citation.bibtex.max 2026/07/21 23:19:36.888217549 [1] 1 2026/07/21 23:19:36.888218310 2026/07/21 23:19:36.888228199 $continue 2026/07/21 23:19:36.888230132 [1] "+ " 2026/07/21 23:19:36.888240993 2026/07/21 23:19:36.888241764 $contrasts 2026/07/21 23:19:36.888252414 unordered ordered 2026/07/21 23:19:36.888253406 "contr.treatment" "contr.poly" 2026/07/21 23:19:36.888268835 2026/07/21 23:19:36.888270027 $defaultPackages 2026/07/21 23:19:36.888282240 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods" 2026/07/21 23:19:36.888283142 2026/07/21 23:19:36.888304213 $demo.ask 2026/07/21 23:19:36.888306728 [1] "default" 2026/07/21 23:19:36.888335491 2026/07/21 23:19:36.888336773 $deparse.cutoff 2026/07/21 23:19:36.888350128 [1] 60 2026/07/21 23:19:36.888351000 2026/07/21 23:19:36.888362371 $device 2026/07/21 23:19:36.888624478 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf", 2026/07/21 23:19:36.888633896 width, height, onefile, family, title, fonts, version, paper, 2026/07/21 23:19:36.888673820 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats, 2026/07/21 23:19:36.888675553 useKerning, fillOddEven, compress, timestamp, producer, author) 2026/07/21 23:19:36.888698165 { 2026/07/21 23:19:36.888699468 initPSandPDFfonts() 2026/07/21 23:19:36.888712973 new <- list() 2026/07/21 23:19:36.888713915 if (!missing(width)) 2026/07/21 23:19:36.888727480 new$width <- width 2026/07/21 23:19:36.888728281 if (!missing(height)) 2026/07/21 23:19:36.888743730 new$height <- height 2026/07/21 23:19:36.888744822 if (!missing(onefile)) 2026/07/21 23:19:36.888759880 new$onefile <- onefile 2026/07/21 23:19:36.888760692 if (!missing(title)) 2026/07/21 23:19:36.888774798 new$title <- title 2026/07/21 23:19:36.888775580 if (!missing(fonts)) 2026/07/21 23:19:36.888789406 new$fonts <- fonts 2026/07/21 23:19:36.888790167 if (!missing(version)) 2026/07/21 23:19:36.888804414 new$version <- version 2026/07/21 23:19:36.888805215 if (!missing(paper)) 2026/07/21 23:19:36.888819491 new$paper <- paper 2026/07/21 23:19:36.888820413 if (!missing(encoding)) 2026/07/21 23:19:36.888834820 new$encoding <- encoding 2026/07/21 23:19:36.888835702 if (!missing(bg)) 2026/07/21 23:19:36.888850239 new$bg <- bg 2026/07/21 23:19:36.888851081 if (!missing(fg)) 2026/07/21 23:19:36.888866169 new$fg <- fg 2026/07/21 23:19:36.888867060 if (!missing(pointsize)) 2026/07/21 23:19:36.888880976 new$pointsize <- pointsize 2026/07/21 23:19:36.888883020 if (!missing(pagecentre)) 2026/07/21 23:19:36.888898859 new$pagecentre <- pagecentre 2026/07/21 23:19:36.888899781 if (!missing(colormodel)) 2026/07/21 23:19:36.888915501 new$colormodel <- colormodel 2026/07/21 23:19:36.888916452 if (!missing(useDingbats)) 2026/07/21 23:19:36.888932232 new$useDingbats <- useDingbats 2026/07/21 23:19:36.888933103 if (!missing(useKerning)) 2026/07/21 23:19:36.888958250 new$useKerning <- useKerning 2026/07/21 23:19:36.888959182 if (!missing(fillOddEven)) 2026/07/21 23:19:36.888975092 new$fillOddEven <- fillOddEven 2026/07/21 23:19:36.888975863 if (!missing(compress)) 2026/07/21 23:19:36.888991522 new$compress <- compress 2026/07/21 23:19:36.888992334 if (!missing(timestamp)) 2026/07/21 23:19:36.889005839 new$timestamp <- timestamp 2026/07/21 23:19:36.889008294 if (!missing(producer)) 2026/07/21 23:19:36.889070670 new$producer <- producer 2026/07/21 23:19:36.889072614 if (!missing(author)) 2026/07/21 23:19:36.889090978 new$author <- author 2026/07/21 23:19:36.889091950 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv) 2026/07/21 23:19:36.889119601 if (!missing(family) && (inherits(family, "Type1Font") || 2026/07/21 23:19:36.889120523 inherits(family, "CIDFont"))) { 2026/07/21 23:19:36.889139047 enc <- family$encoding 2026/07/21 23:19:36.889139879 if (inherits(family, "Type1Font") && !is.null(enc) && 2026/07/21 23:19:36.889157692 enc != "default" && (is.null(old$encoding) || old$encoding == 2026/07/21 23:19:36.889158564 "default")) 2026/07/21 23:19:36.889200923 old$encoding <- enc 2026/07/21 23:19:36.889202135 family <- family$metrics 2026/07/21 23:19:36.889216993 } 2026/07/21 23:19:36.889217934 if (is.null(old$encoding) || old$encoding == "default") 2026/07/21 23:19:36.889233454 old$encoding <- guessEncoding() 2026/07/21 23:19:36.889234235 if (!missing(family)) { 2026/07/21 23:19:36.889250916 if (length(family) == 4L) { 2026/07/21 23:19:36.889251708 family <- c(family, "Symbol.afm") 2026/07/21 23:19:36.889267597 } 2026/07/21 23:19:36.889268348 else if (length(family) == 5L) { 2026/07/21 23:19:36.889282144 } 2026/07/21 23:19:36.889283026 else if (length(family) == 1L) { 2026/07/21 23:19:36.889309866 pf <- pdfFonts(family)[[1L]] 2026/07/21 23:19:36.889310868 if (is.null(pf)) 2026/07/21 23:19:36.889344050 stop(gettextf("unknown family '%s'", family), 2026/07/21 23:19:36.889345092 domain = NA) 2026/07/21 23:19:36.889362304 matchFont(pf, old$encoding) 2026/07/21 23:19:36.889363125 } 2026/07/21 23:19:36.889376931 else stop("invalid 'family' argument") 2026/07/21 23:19:36.889377692 old$family <- family 2026/07/21 23:19:36.889416274 } 2026/07/21 23:19:36.889417417 version <- old$version 2026/07/21 23:19:36.889430270 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", 2026/07/21 23:19:36.889431132 "2.0") 2026/07/21 23:19:36.889445529 if (version %in% versions) 2026/07/21 23:19:36.889446331 version <- as.integer(strsplit(version, "[.]")[[1L]]) 2026/07/21 23:19:36.889464204 else stop("invalid PDF version") 2026/07/21 23:19:36.889465005 onefile <- old$onefile 2026/07/21 23:19:36.889480264 if (!checkIntFormat(file)) 2026/07/21 23:19:36.889481075 stop(gettextf("invalid 'file' argument '%s'", file), 2026/07/21 23:19:36.889497626 domain = NA) 2026/07/21 23:19:36.889498438 .External(C_PDF, file, old$paper, old$family, old$encoding, 2026/07/21 23:19:36.889540837 old$bg, old$fg, old$width, old$height, old$pointsize, 2026/07/21 23:19:36.889542149 onefile, old$pagecentre, old$title, old$fonts, version[1L], 2026/07/21 23:19:36.889561064 version[2L], old$colormodel, old$useDingbats, old$useKerning, 2026/07/21 23:19:36.889561906 old$fillOddEven, old$compress, old$timestamp, old$producer, 2026/07/21 23:19:36.889581192 old$author) 2026/07/21 23:19:36.889582084 invisible() 2026/07/21 23:19:36.889594316 } 2026/07/21 23:19:36.889595118 <bytecode: 0x55cc794d4300> 2026/07/21 23:19:36.889607431 <environment: namespace:grDevices> 2026/07/21 23:19:36.889608232 2026/07/21 23:19:36.889626947 $device.ask.default 2026/07/21 23:19:36.889627789 [1] FALSE 2026/07/21 23:19:36.889640252 2026/07/21 23:19:36.889641144 $digits 2026/07/21 23:19:36.889651804 [1] 7 2026/07/21 23:19:36.889652575 2026/07/21 23:19:36.889662303 $download.file.extra 2026/07/21 23:19:36.889663085 [1] "-L -f -w 'curl: HTTP %{http_code} %{url_effective}\n' -A 'RStudio R (4.5.2 x86_64-pc-linux-gnu x86_64 linux-gnu)'" 2026/07/21 23:19:36.889684976 2026/07/21 23:19:36.889685797 $download.file.method 2026/07/21 23:19:36.889697549 [1] "curl" 2026/07/21 23:19:36.889698491 2026/07/21 23:19:36.889709050 $dvipscmd 2026/07/21 23:19:36.889709922 [1] "dvips" 2026/07/21 23:19:36.889721914 2026/07/21 23:19:36.889722716 $echo 2026/07/21 23:19:36.889733215 [1] FALSE 2026/07/21 23:19:36.889734007 2026/07/21 23:19:36.889744176 $editor 2026/07/21 23:19:36.889745068 [1] "vi" 2026/07/21 23:19:36.889756509 2026/07/21 23:19:36.889757250 $encoding 2026/07/21 23:19:36.889767850 [1] "native.enc" 2026/07/21 23:19:36.889768732 2026/07/21 23:19:36.889779672 $example.ask 2026/07/21 23:19:36.889780474 [1] "default" 2026/07/21 23:19:36.889795552 2026/07/21 23:19:36.889796333 $expressions 2026/07/21 23:19:36.889807584 [1] 5000 2026/07/21 23:19:36.889808436 2026/07/21 23:19:36.889818294 $help.search.types 2026/07/21 23:19:36.889819106 [1] "vignette" "demo" "help" 2026/07/21 23:19:36.889833332 2026/07/21 23:19:36.889834184 $help.try.all.packages 2026/07/21 23:19:36.889846266 [1] FALSE 2026/07/21 23:19:36.889847088 2026/07/21 23:19:36.889858068 $HTTPUserAgent 2026/07/21 23:19:36.889858860 [1] "R/4.5.2 (ubuntu-22.04) R (4.5.2 x86_64-pc-linux-gnu x86_64 linux-gnu)" 2026/07/21 23:19:36.889875010 2026/07/21 23:19:36.889875831 $internet.info 2026/07/21 23:19:36.889887092 [1] 2 2026/07/21 23:19:36.889887844 2026/07/21 23:19:36.889897642 $keep.parse.data 2026/07/21 23:19:36.889898434 [1] TRUE 2026/07/21 23:19:36.889910286 2026/07/21 23:19:36.889911057 $keep.parse.data.pkgs 2026/07/21 23:19:36.889922839 [1] FALSE 2026/07/21 23:19:36.889923610 2026/07/21 23:19:36.889933669 $keep.source 2026/07/21 23:19:36.889934401 [1] FALSE 2026/07/21 23:19:36.889946413 2026/07/21 23:19:36.889947205 $keep.source.pkgs 2026/07/21 23:19:36.889970789 [1] FALSE 2026/07/21 23:19:36.889971680 2026/07/21 23:19:36.889982550 $locatorBell 2026/07/21 23:19:36.889983372 [1] TRUE 2026/07/21 23:19:36.889995104 2026/07/21 23:19:36.889995875 $mailer 2026/07/21 23:19:36.890005994 [1] "mailto" 2026/07/21 23:19:36.890006725 2026/07/21 23:19:36.890017606 $matprod 2026/07/21 23:19:36.890018387 [1] "default" 2026/07/21 23:19:36.890057290 2026/07/21 23:19:36.890058592 $max.contour.segments 2026/07/21 23:19:36.890072147 [1] 25000 2026/07/21 23:19:36.890073079 2026/07/21 23:19:36.890084330 $max.print 2026/07/21 23:19:36.890087696 [1] 99999 2026/07/21 23:19:36.890099398 2026/07/21 23:19:36.890100160 $menu.graphics 2026/07/21 23:19:36.890110910 [1] TRUE 2026/07/21 23:19:36.890111681 2026/07/21 23:19:36.890122371 $na.action 2026/07/21 23:19:36.890123122 [1] "na.omit" 2026/07/21 23:19:36.890141697 2026/07/21 23:19:36.890142569 $nwarnings 2026/07/21 23:19:36.890153760 [1] 50 2026/07/21 23:19:36.890154571 2026/07/21 23:19:36.890164249 $OutDec 2026/07/21 23:19:36.890165000 [1] "." 2026/07/21 23:19:36.890176081 2026/07/21 23:19:36.890176863 $packrat.authenticated.downloads.use.renv 2026/07/21 23:19:36.890195137 [1] TRUE 2026/07/21 23:19:36.890196038 2026/07/21 23:19:36.890206729 $packrat.connect.timeout 2026/07/21 23:19:36.890207610 [1] 10 2026/07/21 23:19:36.890219753 2026/07/21 23:19:36.890220514 $packrat.untrusted.packages 2026/07/21 23:19:36.890241102 character(0) 2026/07/21 23:19:36.890241954 2026/07/21 23:19:36.890257353 $packrat.verbose.cache 2026/07/21 23:19:36.890258154 [1] TRUE 2026/07/21 23:19:36.890274685 2026/07/21 23:19:36.890275527 $pager 2026/07/21 23:19:36.890289603 [1] "/opt/R/4.5.2/lib/R/bin/pager" 2026/07/21 23:19:36.890294903 2026/07/21 23:19:36.890310762 $papersize 2026/07/21 23:19:36.890311644 [1] "letter" 2026/07/21 23:19:36.890323236 2026/07/21 23:19:36.890324077 $PCRE_limit_recursion 2026/07/21 23:19:36.890341870 [1] NA 2026/07/21 23:19:36.890342702 2026/07/21 23:19:36.890352530 $PCRE_study 2026/07/21 23:19:36.890353252 [1] FALSE 2026/07/21 23:19:36.890364964 2026/07/21 23:19:36.890365735 $PCRE_use_JIT 2026/07/21 23:19:36.890376254 [1] TRUE 2026/07/21 23:19:36.890377006 2026/07/21 23:19:36.890387546 $pdfviewer 2026/07/21 23:19:36.890388327 [1] "/usr/bin/xdg-open" 2026/07/21 23:19:36.890400940 2026/07/21 23:19:36.890401772 $pkgType 2026/07/21 23:19:36.890412682 [1] "source" 2026/07/21 23:19:36.890413454 2026/07/21 23:19:36.890425436 $printcmd 2026/07/21 23:19:36.890426218 [1] "/usr/bin/lpr" 2026/07/21 23:19:36.890438370 2026/07/21 23:19:36.890439162 $prompt 2026/07/21 23:19:36.890449942 [1] "> " 2026/07/21 23:19:36.890450753 2026/07/21 23:19:36.890461263 $repos 2026/07/21 23:19:36.890462045 CRAN 2026/07/21 23:19:36.890473175 "@CRAN@" 2026/07/21 23:19:36.890473967 2026/07/21 23:19:36.890488374 $rl_word_breaks 2026/07/21 23:19:36.890489155 [1] " \t\n\"\\'`><=%;,|&{()}" 2026/07/21 23:19:36.890502189 2026/07/21 23:19:36.890503001 $scipen 2026/07/21 23:19:36.890513661 [1] 0 2026/07/21 23:19:36.890514462 2026/07/21 23:19:36.890525242 $show.coef.Pvalues 2026/07/21 23:19:36.890526084 [1] TRUE 2026/07/21 23:19:36.890537936 2026/07/21 23:19:36.890538708 $show.error.messages 2026/07/21 23:19:36.890549878 [1] TRUE 2026/07/21 23:19:36.890550660 2026/07/21 23:19:36.890561780 $show.signif.stars 2026/07/21 23:19:36.890562652 [1] TRUE 2026/07/21 23:19:36.890581327 2026/07/21 23:19:36.890582359 $showErrorCalls 2026/07/21 23:19:36.890593890 [1] TRUE 2026/07/21 23:19:36.890594732 2026/07/21 23:19:36.890609008 $showNCalls 2026/07/21 23:19:36.890611754 [1] 50 2026/07/21 23:19:36.890631040 2026/07/21 23:19:36.890632062 $showWarnCalls 2026/07/21 23:19:36.890645777 [1] FALSE 2026/07/21 23:19:36.890646769 2026/07/21 23:19:36.890658681 $str 2026/07/21 23:19:36.890659462 $str$strict.width 2026/07/21 23:19:36.890672507 [1] "no" 2026/07/21 23:19:36.890673288 2026/07/21 23:19:36.890684830 $str$digits.d 2026/07/21 23:19:36.890685651 [1] 3 2026/07/21 23:19:36.890698836 2026/07/21 23:19:36.890735154 $str$vec.len 2026/07/21 23:19:36.890750763 [1] 4 2026/07/21 23:19:36.890751665 2026/07/21 23:19:36.890768135 $str$list.len 2026/07/21 23:19:36.890769448 [1] 99 2026/07/21 23:19:36.890786660 2026/07/21 23:19:36.890788523 $str$deparse.lines 2026/07/21 23:19:36.890804764 NULL 2026/07/21 23:19:36.890805595 2026/07/21 23:19:36.890816636 $str$drop.deparse.attr 2026/07/21 23:19:36.890817467 [1] TRUE 2026/07/21 23:19:36.890830662 2026/07/21 23:19:36.890831443 $str$formatNum 2026/07/21 23:19:36.890843165 function (x, ...) 2026/07/21 23:19:36.890843967 format(x, trim = TRUE, drop0trailing = TRUE, ...) 2026/07/21 23:19:36.890859005 <environment: 0x55cc79d476c8> 2026/07/21 23:19:36.890859826 2026/07/21 23:19:36.890872550 2026/07/21 23:19:36.890873441 $str.dendrogram.last 2026/07/21 23:19:36.890885444 [1] "`" 2026/07/21 23:19:36.890886326 2026/07/21 23:19:36.890896795 $texi2dvi 2026/07/21 23:19:36.890897637 [1] "/usr/bin/texi2dvi" 2026/07/21 23:19:36.890910531 2026/07/21 23:19:36.890911362 $timeout 2026/07/21 23:19:36.890922383 [1] 60 2026/07/21 23:19:36.890923184 2026/07/21 23:19:36.890933904 $ts.eps 2026/07/21 23:19:36.890934676 [1] 1e-05 2026/07/21 23:19:36.890946768 2026/07/21 23:19:36.890947610 $ts.S.compat 2026/07/21 23:19:36.890959041 [1] FALSE 2026/07/21 23:19:36.890959983 2026/07/21 23:19:36.890970873 $unzip 2026/07/21 23:19:36.890971755 [1] "/usr/bin/unzip" 2026/07/21 23:19:36.890983898 2026/07/21 23:19:36.890984739 $useFancyQuotes 2026/07/21 23:19:36.890996641 [1] TRUE 2026/07/21 23:19:36.890997433 2026/07/21 23:19:36.891008614 $verbose 2026/07/21 23:19:36.891009455 [1] FALSE 2026/07/21 23:19:36.891043469 2026/07/21 23:19:36.891044631 $warn 2026/07/21 23:19:36.891060300 [1] 0 2026/07/21 23:19:36.891061142 2026/07/21 23:19:36.891071571 $warning.length 2026/07/21 23:19:36.891072323 [1] 1000 2026/07/21 23:19:36.891084365 2026/07/21 23:19:36.891085196 $warnPartialMatchArgs 2026/07/21 23:19:36.891102689 [1] FALSE 2026/07/21 23:19:36.891103621 2026/07/21 23:19:36.891114641 $warnPartialMatchAttr 2026/07/21 23:19:36.891115483 [1] FALSE 2026/07/21 23:19:36.891130010 2026/07/21 23:19:36.891130832 $warnPartialMatchDollar 2026/07/21 23:19:36.891143575 [1] FALSE 2026/07/21 23:19:36.891144507 2026/07/21 23:19:36.891155638 $width 2026/07/21 23:19:36.891156479 [1] 80 2026/07/21 23:19:36.891167660 |
| ✅ | packrat-restore-sandbox | environment | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:36.911664090 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:36.911977224 [connect-session] Job Key: [redacted] 2026/07/21 23:19:36.911991671 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:36.911997562 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:35577 ... Connected to session server http://127.0.0.1:35577 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:37.096411161 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:37.096741134 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/04-environment.sh 2026/07/21 23:19:37.104484184 2026/07/21 23:19:37.104491879 $ env 2026/07/21 23:19:37.104530711 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:37.104531904 EDITOR=vi 2026/07/21 23:19:37.104546811 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:37.104547493 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:37.104560407 LANG=en_US.UTF-8 2026/07/21 23:19:37.104560878 LANGUAGE=en_US:en 2026/07/21 23:19:37.104632411 LC_ALL=en_US.UTF-8 2026/07/21 23:19:37.104634014 LD_LIBRARY_PATH=/opt/R/4.5.2/lib/R/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-11-openjdk-amd64/lib/server 2026/07/21 23:19:37.104657137 LN_S=ln -s 2026/07/21 23:19:37.104658079 LOGNAME=rstudio-connect 2026/07/21 23:19:37.104679599 MAKEFLAGS=-j1 2026/07/21 23:19:37.104680821 MAKE=make 2026/07/21 23:19:37.104695619 PAGER=/usr/bin/pager 2026/07/21 23:19:37.104696711 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2026/07/21 23:19:37.104708453 POSIT_CONNECT=1 2026/07/21 23:19:37.104708894 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:37.104716929 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:37.104717419 R_ARCH= 2026/07/21 23:19:37.104725574 R_BROWSER=xdg-open 2026/07/21 23:19:37.104725995 R_BZIPCMD=/usr/bin/bzip2 2026/07/21 23:19:37.104734181 R_DOC_DIR=/opt/R/4.5.2/lib/R/doc 2026/07/21 23:19:37.104734602 R_ENVIRON_USER=REDACTED 2026/07/21 23:19:37.104743097 R_GZIPCMD=/usr/bin/gzip 2026/07/21 23:19:37.104743528 R_HOME=/opt/R/4.5.2/lib/R 2026/07/21 23:19:37.104751533 R_INCLUDE_DIR=/opt/R/4.5.2/lib/R/include 2026/07/21 23:19:37.104752154 R_LIBS_SITE=/opt/R/4.5.2/lib/R/site-library 2026/07/21 23:19:37.104761692 R_LIBS_USER=REDACTED 2026/07/21 23:19:37.104762123 R_PACKRAT_CACHE_DIR=/opt/rstudio-connect/mnt/packrat 2026/07/21 23:19:37.104771580 R_PACKRAT_SRC_DIR=/opt/rstudio-connect/mnt/tmp/Rtmp1KEEYP/packrat-src 2026/07/21 23:19:37.104772192 R_PAPERSIZE=letter 2026/07/21 23:19:37.104782270 R_PDFVIEWER=/usr/bin/xdg-open 2026/07/21 23:19:37.104782701 R_PLATFORM=x86_64-pc-linux-gnu 2026/07/21 23:19:37.104799563 R_PRINTCMD=/usr/bin/lpr 2026/07/21 23:19:37.104800484 R_PROFILE_USER=REDACTED 2026/07/21 23:19:37.104827823 R_RD4PDF=times,inconsolata,hyper 2026/07/21 23:19:37.104831650 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/Rtmp1KEEYP 2026/07/21 23:19:37.104860584 R_SHARE_DIR=/opt/R/4.5.2/lib/R/share 2026/07/21 23:19:37.104862498 R_STRIP_SHARED_LIB=strip --strip-unneeded 2026/07/21 23:19:37.104878979 R_STRIP_STATIC_LIB=strip --strip-debug 2026/07/21 23:19:37.104879770 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:37.104894568 R_TEXI2DVICMD=/usr/bin/texi2dvi 2026/07/21 23:19:37.104895349 R_UNZIPCMD=/usr/bin/unzip 2026/07/21 23:19:37.104910177 R_ZIPCMD=/usr/bin/zip 2026/07/21 23:19:37.104911109 SED=/usr/bin/sed 2026/07/21 23:19:37.104924924 SHLVL=2 2026/07/21 23:19:37.104925786 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:37.104937999 TAR=/usr/bin/tar 2026/07/21 23:19:37.104938770 TERM=xterm 2026/07/21 23:19:37.104950943 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:37.104951825 TZ=UTC 2026/07/21 23:19:37.104965360 USERNAME=rstudio-connect 2026/07/21 23:19:37.104966211 USER=rstudio-connect 2026/07/21 23:19:37.109745874 _=/usr/bin/env |
| ✅ | packrat-restore-sandbox | mounts | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:37.125139769 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:37.125327910 [connect-session] Job Key: [redacted] 2026/07/21 23:19:37.125339612 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:37.125343218 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:37451 ... Connected to session server http://127.0.0.1:37451 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:37.307939045 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:37.308245685 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/05-mounts.sh 2026/07/21 23:19:37.315600662 2026/07/21 23:19:37.315607204 $ findmnt --notruncate 2026/07/21 23:19:37.315651407 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:37.315658901 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/BQKBL LQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:37.315804322 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:37.315806256 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:37.315838676 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:37.315839698 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:37.315877228 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:37.315878150 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:37.315910290 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:37.315911201 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:37.315943491 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.315946127 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:37.315993104 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l /BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:37.316259020 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316303583 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316304575 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316348687 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316357834 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316395344 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/IuysTKIT0MIQ7GTt] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316396166 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/R] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316434197 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/packrat] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:37.316435058 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace453519196] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:37.316556915 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:37.322928725 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/overlay2/l/B QKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr |
| ✅ | packrat-restore-sandbox | r-package-repository | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:37.338806743 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:37.339079761 [connect-session] Job Key: [redacted] 2026/07/21 23:19:37.339090962 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:37.339102915 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:37043 ... Connected to session server http://127.0.0.1:37043 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:37.523936830 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:37.524285027 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository 2026/07/21 23:19:37.970303712 2026/07/21 23:19:37.970317267 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest 2026/07/21 23:19:37.970388159 * Trying 3.129.124.187:443... 2026/07/21 23:19:37.970389883 * Connected to packagemanager.posit.co (3.129.124.187) port 443 (#0) 2026/07/21 23:19:37.970405742 * ALPN, offering h2 2026/07/21 23:19:37.970406444 * ALPN, offering http/1.1 2026/07/21 23:19:37.970428543 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:37.970431649 * CApath: /etc/ssl/certs 2026/07/21 23:19:37.970535873 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970537746 } [5 bytes data] 2026/07/21 23:19:37.970557353 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:37.970558565 } [512 bytes data] 2026/07/21 23:19:37.970579364 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970580476 { [5 bytes data] 2026/07/21 23:19:37.970596947 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:37.970597478 { [104 bytes data] 2026/07/21 23:19:37.970607116 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970607537 { [5 bytes data] 2026/07/21 23:19:37.970617235 * TLSv1.2 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:37.970617725 { [3880 bytes data] 2026/07/21 23:19:37.970658008 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970659952 { [5 bytes data] 2026/07/21 23:19:37.970675561 * TLSv1.2 (IN), TLS handshake, Server key exchange (12): 2026/07/21 23:19:37.970676012 { [333 bytes data] 2026/07/21 23:19:37.970705276 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970706358 { [5 bytes data] 2026/07/21 23:19:37.970719423 * TLSv1.2 (IN), TLS handshake, Server finished (14): 2026/07/21 23:19:37.970720144 { [4 bytes data] 2026/07/21 23:19:37.970732437 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970733139 } [5 bytes data] 2026/07/21 23:19:37.970745612 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): 2026/07/21 23:19:37.970746303 } [70 bytes data] 2026/07/21 23:19:37.970758816 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:37.970759868 } [5 bytes data] 2026/07/21 23:19:37.970771640 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:37.970772352 } [1 bytes data] 2026/07/21 23:19:37.970784865 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970785546 } [5 bytes data] 2026/07/21 23:19:37.970798701 * TLSv1.2 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:37.970799472 } [16 bytes data] 2026/07/21 23:19:37.970813298 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:37.970813999 { [5 bytes data] 2026/07/21 23:19:37.970827875 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:37.970828666 { [5 bytes data] 2026/07/21 23:19:37.970844977 * TLSv1.2 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:37.970846109 { [16 bytes data] 2026/07/21 23:19:37.970860746 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256 2026/07/21 23:19:37.970861508 * ALPN, server accepted to use h2 2026/07/21 23:19:37.970878149 * Server certificate: 2026/07/21 23:19:37.970878860 * subject: CN=p3m.posit.it 2026/07/21 23:19:37.970893768 * start date: Jul 12 00:00:00 2026 GMT 2026/07/21 23:19:37.970894660 * expire date: Jan 25 23:59:59 2027 GMT 2026/07/21 23:19:37.970910259 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co" 2026/07/21 23:19:37.970918063 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 2026/07/21 23:19:37.970940505 * SSL certificate verify ok. 2026/07/21 23:19:37.970941397 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:37.970957116 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:37.970957878 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:37.970987553 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:37.970988455 } [5 bytes data] 2026/07/21 23:19:37.971007039 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971008171 } [5 bytes data] 2026/07/21 23:19:37.971055820 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971057233 } [5 bytes data] 2026/07/21 23:19:37.971076208 * Using Stream ID: 1 (easy handle 0x55ddda99ba40) 2026/07/21 23:19:37.971076990 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971094923 } [5 bytes data] 2026/07/21 23:19:37.971095935 > GET /cran/__linux__/jammy/latest HTTP/2 2026/07/21 23:19:37.971110472 > Host: packagemanager.posit.co 2026/07/21 23:19:37.971111394 > user-agent: curl/7.81.0 2026/07/21 23:19:37.971125470 > accept: */* 2026/07/21 23:19:37.971126322 > 2026/07/21 23:19:37.971137322 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971138083 { [5 bytes data] 2026/07/21 23:19:37.971153192 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! 2026/07/21 23:19:37.971154093 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971172908 } [5 bytes data] 2026/07/21 23:19:37.971173680 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971188608 { [5 bytes data] 2026/07/21 23:19:37.971189449 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971203866 { [5 bytes data] 2026/07/21 23:19:37.971204668 < HTTP/2 400 2026/07/21 23:19:37.971216861 < date: Tue, 21 Jul 2026 23:19:37 GMT 2026/07/21 23:19:37.971217722 < content-type: text/plain; charset=utf-8 2026/07/21 23:19:37.971233271 < content-length: 94 2026/07/21 23:19:37.971234042 < cache-control: max-age=3600 2026/07/21 23:19:37.971248079 < request-id: 6102f00e-07dc-4069-9b82-6da7275be52a 2026/07/21 23:19:37.971248930 < server: Posit Package Manager v2026.06.0 2026/07/21 23:19:37.971266433 < x-content-type-options: nosniff 2026/07/21 23:19:37.971267194 < x-frame-options: DENY 2026/07/21 23:19:37.971282573 < x-repository-type: RSPM 2026/07/21 23:19:37.971283485 < 2026/07/21 23:19:37.971295918 { [94 bytes data] 2026/07/21 23:19:37.971296729 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:37.971311998 { [5 bytes data] 2026/07/21 23:19:37.976590984 * Connection #0 to host packagemanager.posit.co left intact Stopping content session token refresher Stopped session pings to http://127.0.0.1:37043 Job completed |
| ✅ | packrat-restore-sandbox | r-package-repository | Bundle requested R version 4.5.2; using /opt/R/4.5.2/bin/R from Local which has version 4.5.2 Removing prior manifest.json to packrat transformation. Performing manifest.json to packrat transformation. 2026/07/21 23:19:37.992473219 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:37.992664516 [connect-session] Job Key: [redacted] 2026/07/21 23:19:37.992674214 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices. 2026/07/21 23:19:37.992679314 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching Job started Determining session server location ... Connecting to session server http://127.0.0.1:41569 ... Connected to session server http://127.0.0.1:41569 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:38.178146325 Configuring packrat to use available credentials for private repository access. 2026/07/21 23:19:38.178445092 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository 2026/07/21 23:19:38.575740430 2026/07/21 23:19:38.575754406 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest 2026/07/21 23:19:38.575820480 * Trying 3.129.124.187:443... 2026/07/21 23:19:38.575822113 * Connected to packagemanager.posit.co (3.129.124.187) port 443 (#0) 2026/07/21 23:19:38.575837722 * ALPN, offering h2 2026/07/21 23:19:38.575838533 * ALPN, offering http/1.1 2026/07/21 23:19:38.575851698 * CAfile: /etc/ssl/certs/ca-certificates.crt 2026/07/21 23:19:38.575852640 * CApath: /etc/ssl/certs 2026/07/21 23:19:38.575871204 * TLSv1.0 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:38.575872507 } [5 bytes data] 2026/07/21 23:19:38.575888306 * TLSv1.3 (OUT), TLS handshake, Client hello (1): 2026/07/21 23:19:38.575889088 } [512 bytes data] 2026/07/21 23:19:38.575903164 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:38.575903915 { [5 bytes data] 2026/07/21 23:19:38.575918633 * TLSv1.3 (IN), TLS handshake, Server hello (2): 2026/07/21 23:19:38.575919594 { [104 bytes data] 2026/07/21 23:19:38.575934141 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:38.575935003 { [5 bytes data] 2026/07/21 23:19:38.575960989 * TLSv1.2 (IN), TLS handshake, Certificate (11): 2026/07/21 23:19:38.575968052 { [3880 bytes data] 2026/07/21 23:19:38.575999461 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:38.576001164 { [5 bytes data] 2026/07/21 23:19:38.576018567 * TLSv1.2 (IN), TLS handshake, Server key exchange (12): 2026/07/21 23:19:38.576019479 { [333 bytes data] 2026/07/21 23:19:38.576079851 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:38.576081464 { [5 bytes data] 2026/07/21 23:19:38.576097213 * TLSv1.2 (IN), TLS handshake, Server finished (14): 2026/07/21 23:19:38.576098025 { [4 bytes data] 2026/07/21 23:19:38.576113263 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:38.576114125 } [5 bytes data] 2026/07/21 23:19:38.576131397 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): 2026/07/21 23:19:38.576132289 } [70 bytes data] 2026/07/21 23:19:38.576149250 * TLSv1.2 (OUT), TLS header, Finished (20): 2026/07/21 23:19:38.576150122 } [5 bytes data] 2026/07/21 23:19:38.576182523 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): 2026/07/21 23:19:38.576183835 } [1 bytes data] 2026/07/21 23:19:38.576200296 * TLSv1.2 (OUT), TLS header, Certificate Status (22): 2026/07/21 23:19:38.576200806 } [5 bytes data] 2026/07/21 23:19:38.576210274 * TLSv1.2 (OUT), TLS handshake, Finished (20): 2026/07/21 23:19:38.576210705 } [16 bytes data] 2026/07/21 23:19:38.576219812 * TLSv1.2 (IN), TLS header, Finished (20): 2026/07/21 23:19:38.576220243 { [5 bytes data] 2026/07/21 23:19:38.576229019 * TLSv1.2 (IN), TLS header, Certificate Status (22): 2026/07/21 23:19:38.576229460 { [5 bytes data] 2026/07/21 23:19:38.576238667 * TLSv1.2 (IN), TLS handshake, Finished (20): 2026/07/21 23:19:38.576239078 { [16 bytes data] 2026/07/21 23:19:38.576247954 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256 2026/07/21 23:19:38.576248415 * ALPN, server accepted to use h2 2026/07/21 23:19:38.576259466 * Server certificate: 2026/07/21 23:19:38.576259927 * subject: CN=p3m.posit.it 2026/07/21 23:19:38.576278121 * start date: Jul 12 00:00:00 2026 GMT 2026/07/21 23:19:38.576279012 * expire date: Jan 25 23:59:59 2027 GMT 2026/07/21 23:19:38.576294411 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co" 2026/07/21 23:19:38.576296695 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 2026/07/21 23:19:38.576322123 * SSL certificate verify ok. 2026/07/21 23:19:38.576323255 * Using HTTP2, server supports multiplexing 2026/07/21 23:19:38.576335197 * Connection state changed (HTTP/2 confirmed) 2026/07/21 23:19:38.576335678 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 2026/07/21 23:19:38.576357529 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576357990 } [5 bytes data] 2026/07/21 23:19:38.576367528 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576367958 } [5 bytes data] 2026/07/21 23:19:38.576377105 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576377556 } [5 bytes data] 2026/07/21 23:19:38.576392804 * Using Stream ID: 1 (easy handle 0x560100123a40) 2026/07/21 23:19:38.576393837 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576412742 } [5 bytes data] 2026/07/21 23:19:38.576413703 > GET /cran/__linux__/jammy/latest HTTP/2 2026/07/21 23:19:38.576428812 > Host: packagemanager.posit.co 2026/07/21 23:19:38.576429573 > user-agent: curl/7.81.0 2026/07/21 23:19:38.576439231 > accept: */* 2026/07/21 23:19:38.576439662 > 2026/07/21 23:19:38.576446725 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576447166 { [5 bytes data] 2026/07/21 23:19:38.576456393 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! 2026/07/21 23:19:38.576456854 * TLSv1.2 (OUT), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576467965 } [5 bytes data] 2026/07/21 23:19:38.576468416 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576477493 { [5 bytes data] 2026/07/21 23:19:38.576477973 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576487100 { [5 bytes data] 2026/07/21 23:19:38.576487631 < HTTP/2 400 2026/07/21 23:19:38.576495215 < date: Tue, 21 Jul 2026 23:19:38 GMT 2026/07/21 23:19:38.576495676 < content-type: text/plain; charset=utf-8 2026/07/21 23:19:38.576505374 < content-length: 94 2026/07/21 23:19:38.576505825 < cache-control: max-age=3600 2026/07/21 23:19:38.576520453 < request-id: 8243dab1-7e67-4e83-aa20-77e939f26598 2026/07/21 23:19:38.576521294 < server: Posit Package Manager v2026.06.0 2026/07/21 23:19:38.576540169 < x-content-type-options: nosniff 2026/07/21 23:19:38.576541021 < x-frame-options: DENY 2026/07/21 23:19:38.576553554 < x-repository-type: RSPM 2026/07/21 23:19:38.576554015 < 2026/07/21 23:19:38.576561850 { [94 bytes data] 2026/07/21 23:19:38.576562291 * TLSv1.2 (IN), TLS header, Supplemental data (23): 2026/07/21 23:19:38.576571438 { [5 bytes data] 2026/07/21 23:19:38.582082444 * Connection #0 to host packagemanager.posit.co left intact Stopped session pings to http://127.0.0.1:41569 |
| ✅ | rmarkdown-sandbox | R-version | Using environment Local Using /opt/R/4.4.3/bin/R with version 4.4.3 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:38.600990406 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:38.601250922 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:46203 ... Connected to session server http://127.0.0.1:46203 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:38.791506701 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:38.791769392 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:38.791846286 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/01-R-version.sh 2026/07/21 23:19:38.810047534 2026/07/21 23:19:38.810063684 $ /opt/R/4.4.3/bin/R --version 2026/07/21 23:19:38.810106083 R version 4.4.3 (2025-02-28) -- "Trophy Case" 2026/07/21 23:19:38.810108397 Copyright (C) 2025 The R Foundation for Statistical Computing 2026/07/21 23:19:38.810127854 Platform: x86_64-pc-linux-gnu 2026/07/21 23:19:38.810128655 2026/07/21 23:19:38.810140026 R is free software and comes with ABSOLUTELY NO WARRANTY. 2026/07/21 23:19:38.810140738 You are welcome to redistribute it under the terms of the 2026/07/21 23:19:38.810156307 GNU General Public License versions 2 or 3. 2026/07/21 23:19:38.810156948 For more information about these matters see 2026/07/21 23:19:38.815362477 https://www.gnu.org/licenses/. Stopping content session token refresher Stopped session pings to http://127.0.0.1:46203 Job completed |
| ✅ | rmarkdown-sandbox | installed-packages | Using environment Local Using /opt/R/4.4.3/bin/R with version 4.4.3 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:38.832969424 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:38.833230721 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:46731 ... Connected to session server http://127.0.0.1:46731 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:39.024260550 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:39.024521094 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.024597759 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/02-installed-packages.sh 2026/07/21 23:19:39.223312971 2026/07/21 23:19:39.223327068 $ /opt/R/4.4.3/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")] 2026/07/21 23:19:39.223386489 Package Version LibPath 2026/07/21 23:19:39.223389654 base "base" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223420582 boot "boot" "1.3-31" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223421794 class "class" "7.3-23" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223442152 cluster "cluster" "2.1.8" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223443315 codetools "codetools" "0.2-20" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223462020 compiler "compiler" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223462861 datasets "datasets" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223480023 foreign "foreign" "0.8-88" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223480915 graphics "graphics" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223498588 grDevices "grDevices" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223499449 grid "grid" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223516912 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223517824 lattice "lattice" "0.22-6" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223535777 MASS "MASS" "7.3-64" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223536679 Matrix "Matrix" "1.7-2" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223554061 methods "methods" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223554903 mgcv "mgcv" "1.9-1" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223572486 nlme "nlme" "3.1-167" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223573537 nnet "nnet" "7.3-20" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223590820 parallel "parallel" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223591661 rpart "rpart" "4.1.24" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223609555 spatial "spatial" "7.3-18" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223610396 splines "splines" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223627588 stats "stats" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223628520 stats4 "stats4" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223674015 survival "survival" "3.8-3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223675618 tcltk "tcltk" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.223706493 tools "tools" "4.4.3" "/opt/R/4.4.3/lib/R/library" 2026/07/21 23:19:39.228799244 utils "utils" "4.4.3" "/opt/R/4.4.3/lib/R/library" Stopped session pings to http://127.0.0.1:46731 Stopping content session token refresher Job completed |
| ✅ | rmarkdown-sandbox | options | Using environment Local Using /opt/R/4.4.3/bin/R with version 4.4.3 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:39.246545245 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:39.246771637 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:35579 ... Connected to session server http://127.0.0.1:35579 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:39.437876712 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:39.438176667 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.438264926 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/03-options.R 2026/07/21 23:19:39.438948396 $add.smooth 2026/07/21 23:19:39.438955599 [1] TRUE 2026/07/21 23:19:39.438987823 2026/07/21 23:19:39.438990528 $bitmapType 2026/07/21 23:19:39.439077078 [1] "cairo" 2026/07/21 23:19:39.439111374 2026/07/21 23:19:39.439112997 $browser 2026/07/21 23:19:39.439132002 function (url) 2026/07/21 23:19:39.439133215 { 2026/07/21 23:19:39.439149164 cat("Cannot visit", url, "because the browseURL function is disabled.\n") 2026/07/21 23:19:39.439150457 } 2026/07/21 23:19:39.439193357 <environment: 0x5648534b4dd0> 2026/07/21 23:19:39.439194288 2026/07/21 23:19:39.439205109 $browserNLdisabled 2026/07/21 23:19:39.439205730 [1] FALSE 2026/07/21 23:19:39.439216810 2026/07/21 23:19:39.439217702 $catch.script.errors 2026/07/21 23:19:39.439226018 [1] FALSE 2026/07/21 23:19:39.439226519 2026/07/21 23:19:39.439233341 $CBoundsCheck 2026/07/21 23:19:39.439233782 [1] FALSE 2026/07/21 23:19:39.439247808 2026/07/21 23:19:39.439248810 $check.bounds 2026/07/21 23:19:39.439262516 [1] FALSE 2026/07/21 23:19:39.439263538 2026/07/21 23:19:39.439275670 $citation.bibtex.max 2026/07/21 23:19:39.439276732 [1] 1 2026/07/21 23:19:39.439290057 2026/07/21 23:19:39.439290879 $continue 2026/07/21 23:19:39.439299615 [1] "+ " 2026/07/21 23:19:39.439300106 2026/07/21 23:19:39.439307179 $contrasts 2026/07/21 23:19:39.439307620 unordered ordered 2026/07/21 23:19:39.439316226 "contr.treatment" "contr.poly" 2026/07/21 23:19:39.439316687 2026/07/21 23:19:39.439324922 $defaultPackages 2026/07/21 23:19:39.439325363 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods" 2026/07/21 23:19:39.439335812 2026/07/21 23:19:39.439336263 $demo.ask 2026/07/21 23:19:39.439343377 [1] "default" 2026/07/21 23:19:39.439343817 2026/07/21 23:19:39.439352093 $deparse.cutoff 2026/07/21 23:19:39.439352554 [1] 60 2026/07/21 23:19:39.439360198 2026/07/21 23:19:39.439360629 $device 2026/07/21 23:19:39.439568496 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf", 2026/07/21 23:19:39.439575419 width, height, onefile, family, title, fonts, version, paper, 2026/07/21 23:19:39.439620674 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats, 2026/07/21 23:19:39.439622226 useKerning, fillOddEven, compress) 2026/07/21 23:19:39.439641793 { 2026/07/21 23:19:39.439642785 initPSandPDFfonts() 2026/07/21 23:19:39.439656049 new <- list() 2026/07/21 23:19:39.439657031 if (!missing(width)) 2026/07/21 23:19:39.439670537 new$width <- width 2026/07/21 23:19:39.439671378 if (!missing(height)) 2026/07/21 23:19:39.439686366 new$height <- height 2026/07/21 23:19:39.439687578 if (!missing(onefile)) 2026/07/21 23:19:39.439703578 new$onefile <- onefile 2026/07/21 23:19:39.439704590 if (!missing(title)) 2026/07/21 23:19:39.439719358 new$title <- title 2026/07/21 23:19:39.439720159 if (!missing(fonts)) 2026/07/21 23:19:39.439734466 new$fonts <- fonts 2026/07/21 23:19:39.439735388 if (!missing(version)) 2026/07/21 23:19:39.439749474 new$version <- version 2026/07/21 23:19:39.439750365 if (!missing(paper)) 2026/07/21 23:19:39.439765313 new$paper <- paper 2026/07/21 23:19:39.439766105 if (!missing(encoding)) 2026/07/21 23:19:39.439780552 new$encoding <- encoding 2026/07/21 23:19:39.439781373 if (!missing(bg)) 2026/07/21 23:19:39.439796992 new$bg <- bg 2026/07/21 23:19:39.439797864 if (!missing(fg)) 2026/07/21 23:19:39.439811760 new$fg <- fg 2026/07/21 23:19:39.439812601 if (!missing(pointsize)) 2026/07/21 23:19:39.439826698 new$pointsize <- pointsize 2026/07/21 23:19:39.439827600 if (!missing(pagecentre)) 2026/07/21 23:19:39.439843529 new$pagecentre <- pagecentre 2026/07/21 23:19:39.439844331 if (!missing(colormodel)) 2026/07/21 23:19:39.439869754 new$colormodel <- colormodel 2026/07/21 23:19:39.439873591 if (!missing(useDingbats)) 2026/07/21 23:19:39.439895692 new$useDingbats <- useDingbats 2026/07/21 23:19:39.439896684 if (!missing(useKerning)) 2026/07/21 23:19:39.439911742 new$useKerning <- useKerning 2026/07/21 23:19:39.439912544 if (!missing(fillOddEven)) 2026/07/21 23:19:39.439932120 new$fillOddEven <- fillOddEven 2026/07/21 23:19:39.439932902 if (!missing(compress)) 2026/07/21 23:19:39.439961865 new$compress <- compress 2026/07/21 23:19:39.439962878 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv) 2026/07/21 23:19:39.439984728 if (!missing(family) && (inherits(family, "Type1Font") || 2026/07/21 23:19:39.439985760 inherits(family, "CIDFont"))) { 2026/07/21 23:19:39.440003383 enc <- family$encoding 2026/07/21 23:19:39.440004164 if (inherits(family, "Type1Font") && !is.null(enc) && 2026/07/21 23:19:39.440020345 enc != "default" && (is.null(old$encoding) || old$encoding == 2026/07/21 23:19:39.440021146 "default")) 2026/07/21 23:19:39.440043829 old$encoding <- enc 2026/07/21 23:19:39.440044951 family <- family$metrics 2026/07/21 23:19:39.440079836 } 2026/07/21 23:19:39.440081328 if (is.null(old$encoding) || old$encoding == "default") 2026/07/21 23:19:39.440100885 old$encoding <- guessEncoding() 2026/07/21 23:19:39.440101967 if (!missing(family)) { 2026/07/21 23:19:39.440117015 if (length(family) == 4L) { 2026/07/21 23:19:39.440117816 family <- c(family, "Symbol.afm") 2026/07/21 23:19:39.440134968 } 2026/07/21 23:19:39.440135860 else if (length(family) == 5L) { 2026/07/21 23:19:39.440148854 } 2026/07/21 23:19:39.440149646 else if (length(family) == 1L) { 2026/07/21 23:19:39.440162580 pf <- pdfFonts(family)[[1L]] 2026/07/21 23:19:39.440163401 if (is.null(pf)) 2026/07/21 23:19:39.440177568 stop(gettextf("unknown family '%s'", family), 2026/07/21 23:19:39.440178449 domain = NA) 2026/07/21 23:19:39.440194910 matchFont(pf, old$encoding) 2026/07/21 23:19:39.440195852 } 2026/07/21 23:19:39.440209447 else stop("invalid 'family' argument") 2026/07/21 23:19:39.440210409 old$family <- family 2026/07/21 23:19:39.440225958 } 2026/07/21 23:19:39.440226830 version <- old$version 2026/07/21 23:19:39.440240685 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", 2026/07/21 23:19:39.440241597 "2.0") 2026/07/21 23:19:39.440256455 if (version %in% versions) 2026/07/21 23:19:39.440257307 version <- as.integer(strsplit(version, "[.]")[[1L]]) 2026/07/21 23:19:39.440279919 else stop("invalid PDF version") 2026/07/21 23:19:39.440280931 onefile <- old$onefile 2026/07/21 23:19:39.440297261 if (!checkIntFormat(file)) 2026/07/21 23:19:39.440298203 stop(gettextf("invalid 'file' argument '%s'", file), 2026/07/21 23:19:39.440315034 domain = NA) 2026/07/21 23:19:39.440315876 .External(C_PDF, file, old$paper, old$family, old$encoding, 2026/07/21 23:19:39.440338803 old$bg, old$fg, old$width, old$height, old$pointsize, 2026/07/21 23:19:39.440340897 onefile, old$pagecentre, old$title, old$fonts, version[1L], 2026/07/21 23:19:39.440367176 version[2L], old$colormodel, old$useDingbats, old$useKerning, 2026/07/21 23:19:39.440368208 old$fillOddEven, old$compress) 2026/07/21 23:19:39.440386562 invisible() 2026/07/21 23:19:39.440387524 } 2026/07/21 23:19:39.440399646 <bytecode: 0x5648517a7108> 2026/07/21 23:19:39.440400558 <environment: namespace:grDevices> 2026/07/21 23:19:39.440458957 2026/07/21 23:19:39.440460560 $device.ask.default 2026/07/21 23:19:39.440513569 [1] FALSE 2026/07/21 23:19:39.440515402 2026/07/21 23:19:39.440528607 $digits 2026/07/21 23:19:39.440529549 [1] 7 2026/07/21 23:19:39.440604298 2026/07/21 23:19:39.440606121 $dvipscmd 2026/07/21 23:19:39.440621891 [1] "dvips" 2026/07/21 23:19:39.440622943 2026/07/21 23:19:39.440631038 $echo 2026/07/21 23:19:39.440631499 [1] FALSE 2026/07/21 23:19:39.440638692 2026/07/21 23:19:39.440639183 $editor 2026/07/21 23:19:39.440645946 [1] "vi" 2026/07/21 23:19:39.440646416 2026/07/21 23:19:39.440653109 $encoding 2026/07/21 23:19:39.440653580 [1] "native.enc" 2026/07/21 23:19:39.440661054 2026/07/21 23:19:39.440661495 $example.ask 2026/07/21 23:19:39.440668417 [1] "default" 2026/07/21 23:19:39.440668858 2026/07/21 23:19:39.440694797 $expressions 2026/07/21 23:19:39.440696059 [1] 5000 2026/07/21 23:19:39.440708512 2026/07/21 23:19:39.440709514 $help.search.types 2026/07/21 23:19:39.440746150 [1] "vignette" "demo" "help" 2026/07/21 23:19:39.440749717 2026/07/21 23:19:39.440770476 $help.try.all.packages 2026/07/21 23:19:39.440771558 [1] FALSE 2026/07/21 23:19:39.440785864 2026/07/21 23:19:39.440786786 $HTTPUserAgent 2026/07/21 23:19:39.440798929 [1] "R/4.4.3 (ubuntu-22.04) R (4.4.3 x86_64-pc-linux-gnu x86_64 linux-gnu)" 2026/07/21 23:19:39.440799830 2026/07/21 23:19:39.440814959 $internet.info 2026/07/21 23:19:39.440815780 [1] 2 2026/07/21 23:19:39.440827121 2026/07/21 23:19:39.440827993 $keep.parse.data 2026/07/21 23:19:39.440839414 [1] TRUE 2026/07/21 23:19:39.440840206 2026/07/21 23:19:39.440850815 $keep.parse.data.pkgs 2026/07/21 23:19:39.440851627 [1] FALSE 2026/07/21 23:19:39.440864401 2026/07/21 23:19:39.440865152 $keep.source 2026/07/21 23:19:39.440876443 [1] FALSE 2026/07/21 23:19:39.440877235 2026/07/21 23:19:39.440887895 $keep.source.pkgs 2026/07/21 23:19:39.440888726 [1] FALSE 2026/07/21 23:19:39.440900899 2026/07/21 23:19:39.440901660 $locatorBell 2026/07/21 23:19:39.440912550 [1] TRUE 2026/07/21 23:19:39.440913282 2026/07/21 23:19:39.440924002 $mailer 2026/07/21 23:19:39.440924783 [1] "mailto" 2026/07/21 23:19:39.440936345 2026/07/21 23:19:39.440937247 $matprod 2026/07/21 23:19:39.440950802 [1] "default" 2026/07/21 23:19:39.440951634 2026/07/21 23:19:39.440963005 $max.contour.segments 2026/07/21 23:19:39.440963866 [1] 25000 2026/07/21 23:19:39.440976740 2026/07/21 23:19:39.440977542 $max.print 2026/07/21 23:19:39.440989173 [1] 99999 2026/07/21 23:19:39.440990105 2026/07/21 23:19:39.441001156 $menu.graphics 2026/07/21 23:19:39.441002088 [1] TRUE 2026/07/21 23:19:39.441014871 2026/07/21 23:19:39.441015733 $na.action 2026/07/21 23:19:39.441079742 [1] "na.omit" 2026/07/21 23:19:39.441082357 2026/07/21 23:19:39.441104889 $nwarnings 2026/07/21 23:19:39.441105981 [1] 50 2026/07/21 23:19:39.441119587 2026/07/21 23:19:39.441120518 $OutDec 2026/07/21 23:19:39.441151566 [1] "." 2026/07/21 23:19:39.441152809 2026/07/21 23:19:39.441168658 $pager 2026/07/21 23:19:39.441169570 [1] "/opt/R/4.4.3/lib/R/bin/pager" 2026/07/21 23:19:39.441187253 2026/07/21 23:19:39.441194516 $papersize 2026/07/21 23:19:39.441206769 [1] "letter" 2026/07/21 23:19:39.441207701 2026/07/21 23:19:39.441219874 $PCRE_limit_recursion 2026/07/21 23:19:39.441220905 [1] NA 2026/07/21 23:19:39.441235713 2026/07/21 23:19:39.441236815 $PCRE_study 2026/07/21 23:19:39.441248317 [1] FALSE 2026/07/21 23:19:39.441249168 2026/07/21 23:19:39.441260700 $PCRE_use_JIT 2026/07/21 23:19:39.441261632 [1] TRUE 2026/07/21 23:19:39.441274045 2026/07/21 23:19:39.441274826 $pdfviewer 2026/07/21 23:19:39.441286438 [1] "/usr/bin/xdg-open" 2026/07/21 23:19:39.441287409 2026/07/21 23:19:39.441299833 $pkgType 2026/07/21 23:19:39.441300684 [1] "source" 2026/07/21 23:19:39.441312837 2026/07/21 23:19:39.441313649 $printcmd 2026/07/21 23:19:39.441325040 [1] "/usr/bin/lpr" 2026/07/21 23:19:39.441325911 2026/07/21 23:19:39.441337743 $prompt 2026/07/21 23:19:39.441338595 [1] "> " 2026/07/21 23:19:39.441350117 2026/07/21 23:19:39.441350908 $repos 2026/07/21 23:19:39.441361197 CRAN 2026/07/21 23:19:39.441361939 "@CRAN@" 2026/07/21 23:19:39.441372488 2026/07/21 23:19:39.441373540 $rl_word_breaks 2026/07/21 23:19:39.441389620 [1] " \t\n\"\\'`><=%;,|&{()}" 2026/07/21 23:19:39.441390562 2026/07/21 23:19:39.441409748 $scipen 2026/07/21 23:19:39.441410699 [1] 0 2026/07/21 23:19:39.441422121 2026/07/21 23:19:39.441422902 $show.coef.Pvalues 2026/07/21 23:19:39.441437109 [1] TRUE 2026/07/21 23:19:39.441437970 2026/07/21 23:19:39.441449161 $show.error.messages 2026/07/21 23:19:39.441449993 [1] TRUE 2026/07/21 23:19:39.441462827 2026/07/21 23:19:39.441463678 $show.signif.stars 2026/07/21 23:19:39.441476141 [1] TRUE 2026/07/21 23:19:39.441477043 2026/07/21 23:19:39.441487974 $showErrorCalls 2026/07/21 23:19:39.441488855 [1] TRUE 2026/07/21 23:19:39.441502401 2026/07/21 23:19:39.441503292 $showNCalls 2026/07/21 23:19:39.441514483 [1] 50 2026/07/21 23:19:39.441515385 2026/07/21 23:19:39.441526165 $showWarnCalls 2026/07/21 23:19:39.441526956 [1] FALSE 2026/07/21 23:19:39.441539450 2026/07/21 23:19:39.441540281 $str 2026/07/21 23:19:39.441551312 $str$strict.width 2026/07/21 23:19:39.441552183 [1] "no" 2026/07/21 23:19:39.441564666 2026/07/21 23:19:39.441565608 $str$digits.d 2026/07/21 23:19:39.441577661 [1] 3 2026/07/21 23:19:39.441578522 2026/07/21 23:19:39.441589413 $str$vec.len 2026/07/21 23:19:39.441590374 [1] 4 2026/07/21 23:19:39.441602317 2026/07/21 23:19:39.441603158 $str$list.len 2026/07/21 23:19:39.441615401 [1] 99 2026/07/21 23:19:39.441616253 2026/07/21 23:19:39.441626813 $str$deparse.lines 2026/07/21 23:19:39.441627684 NULL 2026/07/21 23:19:39.441640498 2026/07/21 23:19:39.441641279 $str$drop.deparse.attr 2026/07/21 23:19:39.441653843 [1] TRUE 2026/07/21 23:19:39.441654664 2026/07/21 23:19:39.441665895 $str$formatNum 2026/07/21 23:19:39.441666727 function (x, ...) 2026/07/21 23:19:39.441679961 format(x, trim = TRUE, drop0trailing = TRUE, ...) 2026/07/21 23:19:39.441680833 <environment: 0x564851f02778> 2026/07/21 23:19:39.441697164 2026/07/21 23:19:39.441697985 2026/07/21 23:19:39.441708545 $str.dendrogram.last 2026/07/21 23:19:39.441709416 [1] "`" 2026/07/21 23:19:39.441722200 2026/07/21 23:19:39.441723022 $texi2dvi 2026/07/21 23:19:39.441740404 [1] "/usr/bin/texi2dvi" 2026/07/21 23:19:39.441741336 2026/07/21 23:19:39.441753609 $timeout 2026/07/21 23:19:39.441754440 [1] 60 2026/07/21 23:19:39.441766092 2026/07/21 23:19:39.441766924 $ts.eps 2026/07/21 23:19:39.441778104 [1] 1e-05 2026/07/21 23:19:39.441778906 2026/07/21 23:19:39.441790317 $ts.S.compat 2026/07/21 23:19:39.441791229 [1] FALSE 2026/07/21 23:19:39.441803362 2026/07/21 23:19:39.441804173 $unzip 2026/07/21 23:19:39.441815144 [1] "/usr/bin/unzip" 2026/07/21 23:19:39.441816035 2026/07/21 23:19:39.441827757 $useFancyQuotes 2026/07/21 23:19:39.441828609 [1] TRUE 2026/07/21 23:19:39.441840861 2026/07/21 23:19:39.441841713 $verbose 2026/07/21 23:19:39.441852954 [1] FALSE 2026/07/21 23:19:39.441853786 2026/07/21 23:19:39.441864816 $warn 2026/07/21 23:19:39.441865608 [1] 0 2026/07/21 23:19:39.441876608 2026/07/21 23:19:39.441877420 $warning.length 2026/07/21 23:19:39.441889222 [1] 1000 2026/07/21 23:19:39.441890173 2026/07/21 23:19:39.441901374 $warnPartialMatchArgs 2026/07/21 23:19:39.441902206 [1] FALSE 2026/07/21 23:19:39.441915230 2026/07/21 23:19:39.441916082 $warnPartialMatchAttr 2026/07/21 23:19:39.441928194 [1] FALSE 2026/07/21 23:19:39.441929036 2026/07/21 23:19:39.441940377 $warnPartialMatchDollar 2026/07/21 23:19:39.441941249 [1] FALSE 2026/07/21 23:19:39.441954614 2026/07/21 23:19:39.441955465 $width 2026/07/21 23:19:39.441966426 [1] 80 2026/07/21 23:19:39.441967217 Stopped session pings to http://127.0.0.1:35579 Stopping content session token refresher Job completed |
| ✅ | rmarkdown-sandbox | environment | Using environment Local Using /opt/R/4.4.3/bin/R with version 4.4.3 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:39.463742569 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:39.463982828 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:42957 ... Connected to session server http://127.0.0.1:42957 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:39.655133038 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:39.655394338 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.655486267 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/04-environment.sh 2026/07/21 23:19:39.663563801 2026/07/21 23:19:39.663571806 $ env 2026/07/21 23:19:39.663610048 CONNECT_API_KEY=REDACTED 2026/07/21 23:19:39.663611520 CONNECT_CONTENT_GUID= 2026/07/21 23:19:39.663641086 CONNECT_CONTENT_JOB_KEY=REDACTED 2026/07/21 23:19:39.663642448 CONNECT_CONTENT_SESSION_TOKEN=REDACTED 2026/07/21 23:19:39.663654180 CONNECT_SERVER=http://localhost:3939/ 2026/07/21 23:19:39.663654741 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:39.663724150 EDITOR=vi 2026/07/21 23:19:39.663725954 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:39.663743777 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:39.663744648 LANG=en_US.UTF-8 2026/07/21 23:19:39.663757162 LANGUAGE=en_US:en 2026/07/21 23:19:39.663757903 LC_ALL=en_US.UTF-8 2026/07/21 23:19:39.663770056 LD_LIBRARY_PATH=/opt/R/4.4.3/lib/R/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-11-openjdk-amd64/lib/server 2026/07/21 23:19:39.663770877 LN_S=ln -s 2026/07/21 23:19:39.663791856 LOGNAME=rstudio-connect 2026/07/21 23:19:39.663792738 MAKE=make 2026/07/21 23:19:39.663806063 PAGER=/usr/bin/pager 2026/07/21 23:19:39.663806995 PATH=/opt/rstudio-connect/mnt/app/python/env/bin:/opt/python/3.13.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.663832833 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:39.663833705 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:39.663855984 R_ARCH= 2026/07/21 23:19:39.663858919 R_BROWSER=xdg-open 2026/07/21 23:19:39.663899513 R_BZIPCMD=/usr/bin/bzip2 2026/07/21 23:19:39.663901316 R_CONFIG_ACTIVE=rsconnect 2026/07/21 23:19:39.663934158 R_DOC_DIR=/opt/R/4.4.3/lib/R/doc 2026/07/21 23:19:39.663935500 RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:39.663976026 R_GZIPCMD=/usr/bin/gzip 2026/07/21 23:19:39.663976887 R_HOME=/opt/R/4.4.3/lib/R 2026/07/21 23:19:39.663985754 R_INCLUDE_DIR=/opt/R/4.4.3/lib/R/include 2026/07/21 23:19:39.663986305 R_LIBS=/opt/rstudio-connect/mnt/R/4.4.3 2026/07/21 23:19:39.663995592 R_LIBS_SITE=/opt/R/4.4.3/lib/R/site-library 2026/07/21 23:19:39.663996053 R_LIBS_USER=REDACTED 2026/07/21 23:19:39.664004879 R_PAPERSIZE=letter 2026/07/21 23:19:39.664005320 R_PDFVIEWER=/usr/bin/xdg-open 2026/07/21 23:19:39.664013816 R_PLATFORM=x86_64-pc-linux-gnu 2026/07/21 23:19:39.664014317 R_PRINTCMD=/usr/bin/lpr 2026/07/21 23:19:39.664027492 R_RD4PDF=times,inconsolata,hyper 2026/07/21 23:19:39.664028454 RSC_EMAIL_SUBJECT=system-check 2026/07/21 23:19:39.664099887 RSC_REPORT_NAME=system-check 2026/07/21 23:19:39.664101229 RSC_REPORT_RENDERING_URL=[[==RSC_REPORT_RENDERING_URL==]] 2026/07/21 23:19:39.664113482 RSC_REPORT_SUBSCRIPTION_URL=[[==RSC_REPORT_SUBSCRIPTION_URL==]] 2026/07/21 23:19:39.664113963 RSC_REPORT_URL=[[==RSC_REPORT_URL==]] 2026/07/21 23:19:39.664124192 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/RtmpzYfNGc 2026/07/21 23:19:39.664124633 R_SHARE_DIR=/opt/R/4.4.3/lib/R/share 2026/07/21 23:19:39.664135062 R_STRIP_SHARED_LIB=strip --strip-unneeded 2026/07/21 23:19:39.664135483 R_STRIP_STATIC_LIB=strip --strip-debug 2026/07/21 23:19:39.664145041 RSTUDIO_PANDOC=/opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.664145492 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:39.664164307 R_TEXI2DVICMD=/usr/bin/texi2dvi 2026/07/21 23:19:39.664165238 R_UNZIPCMD=/usr/bin/unzip 2026/07/21 23:19:39.664197328 R_ZIPCMD=/usr/bin/zip 2026/07/21 23:19:39.664198591 SED=/usr/bin/sed 2026/07/21 23:19:39.664210423 SF_PARTNER=posit_connect 2026/07/21 23:19:39.664210884 SHLVL=2 2026/07/21 23:19:39.664218949 SPARK_CONNECT_USER_AGENT=REDACTED 2026/07/21 23:19:39.664219419 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:39.664228436 TAR=/usr/bin/tar 2026/07/21 23:19:39.664228917 TERM=xterm 2026/07/21 23:19:39.664236461 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:39.664237023 TZ=UTC 2026/07/21 23:19:39.664252351 USERNAME=rstudio-connect 2026/07/21 23:19:39.664252882 USER=rstudio-connect 2026/07/21 23:19:39.668902843 _=/usr/bin/env Stopping content session token refresher Stopped session pings to http://127.0.0.1:42957 Job completed |
| ✅ | rmarkdown-sandbox | mounts | Using environment Local Using /opt/R/4.4.3/bin/R with version 4.4.3 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:39.686716963 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:39.686928157 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:46103 ... Connected to session server http://127.0.0.1:46103 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:39.876692061 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:39.876909015 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:39.876994867 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/05-mounts.sh 2026/07/21 23:19:39.884645914 2026/07/21 23:19:39.884653368 $ findmnt --notruncate 2026/07/21 23:19:39.884728087 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:39.884731143 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/ov erlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:39.884815646 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:39.884880742 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:39.884882585 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:39.884916589 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:39.884917421 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:39.884948659 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:39.884949621 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:39.884987481 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:39.884988723 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885120096 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/doc ker/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:39.885130636 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/doc ker/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:39.885424246 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885426720 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885482464 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885483686 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885540763 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/reports/v2/0/0/temp.source.2166550250] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885542316 ├─/opt/rstudio-connect/mnt/report /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/reports/v2/0/0/temp.output.3378687474] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885590556 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/NeR8pVwWQejn1WGR] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885592008 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/python-environments] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885649836 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/packrat] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885651239 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/R] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:39.885704709 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace1443204453] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:39.885711541 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:39.890398980 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr Stopping content session token refresher Stopped session pings to http://127.0.0.1:46103 Job completed |
| ✅ | rmarkdown-sandbox | R-version | Using environment Local Using /opt/R/4.5.2/bin/R with version 4.5.2 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:39.908121395 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:39.908346895 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:34841 ... Connected to session server http://127.0.0.1:34841 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:40.105115973 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:40.105399121 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:40.105487366 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/01-R-version.sh 2026/07/21 23:19:40.124050783 2026/07/21 23:19:40.124062055 $ /opt/R/4.5.2/bin/R --version 2026/07/21 23:19:40.124111266 R version 4.5.2 (2025-10-31) -- "[Not] Part in a Rumble" 2026/07/21 23:19:40.124112849 Copyright (C) 2025 The R Foundation for Statistical Computing 2026/07/21 23:19:40.124134800 Platform: x86_64-pc-linux-gnu 2026/07/21 23:19:40.124135722 2026/07/21 23:19:40.124153575 R is free software and comes with ABSOLUTELY NO WARRANTY. 2026/07/21 23:19:40.124154537 You are welcome to redistribute it under the terms of the 2026/07/21 23:19:40.124176618 GNU General Public License versions 2 or 3. 2026/07/21 23:19:40.124177860 For more information about these matters see 2026/07/21 23:19:40.129340886 https://www.gnu.org/licenses/. Stopping content session token refresher Stopped session pings to http://127.0.0.1:34841 Job completed |
| ✅ | rmarkdown-sandbox | installed-packages | Using environment Local Using /opt/R/4.5.2/bin/R with version 4.5.2 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:40.147057963 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:40.147292831 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:37119 ... Connected to session server http://127.0.0.1:37119 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:40.343704899 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:40.343969865 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:40.344083004 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/02-installed-packages.sh 2026/07/21 23:19:40.550359599 2026/07/21 23:19:40.550369958 $ /opt/R/4.5.2/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")] 2026/07/21 23:19:40.550436673 Package Version LibPath 2026/07/21 23:19:40.550438526 base "base" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550458183 bit "bit" "4.6.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550459155 bit64 "bit64" "4.8.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550475355 blob "blob" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550476186 boot "boot" "1.3-32" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550492828 class "class" "7.3-23" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550493629 cli "cli" "3.6.6" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550510671 cluster "cluster" "2.1.8.1" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550511522 codetools "codetools" "0.2-20" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550529596 compiler "compiler" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550530608 datasets "datasets" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550547830 DBI "DBI" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550548702 foreign "foreign" "0.8-90" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550565733 glue "glue" "1.8.1" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550566505 graphics "graphics" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550584038 grDevices "grDevices" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550584839 grid "grid" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550602342 hms "hms" "1.1.4" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550603314 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550621468 lattice "lattice" "0.22-7" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550622379 lifecycle "lifecycle" "1.0.5" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550640323 MASS "MASS" "7.3-65" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550641184 Matrix "Matrix" "1.7-4" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550678368 methods "methods" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550686363 mgcv "mgcv" "1.9-3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550722139 nlme "nlme" "3.1-168" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550723502 nnet "nnet" "7.3-20" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550738500 odbc "odbc" "1.7.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550738971 parallel "parallel" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550749741 pkgconfig "pkgconfig" "2.0.3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550750192 Rcpp "Rcpp" "1.1.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550761252 rlang "rlang" "1.3.0" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550761703 rpart "rpart" "4.1.24" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550783995 spatial "spatial" "7.3-18" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550785137 splines "splines" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550803451 stats "stats" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550804002 stats4 "stats4" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550814842 survival "survival" "3.8-3" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550815293 tcltk "tcltk" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550842183 tools "tools" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.550842895 utils "utils" "4.5.2" "/opt/R/4.5.2/lib/R/library" 2026/07/21 23:19:40.556247721 vctrs "vctrs" "0.7.3" "/opt/R/4.5.2/lib/R/library" Stopping content session token refresher Stopped session pings to http://127.0.0.1:37119 Job completed |
| ✅ | rmarkdown-sandbox | options | Using environment Local Using /opt/R/4.5.2/bin/R with version 4.5.2 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:40.573943791 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:40.574209747 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:34695 ... Connected to session server http://127.0.0.1:34695 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:40.771318436 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:40.771565675 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:40.771638932 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/03-options.R 2026/07/21 23:19:40.772079516 $add.smooth 2026/07/21 23:19:40.772088682 [1] TRUE 2026/07/21 23:19:40.772122093 2026/07/21 23:19:40.772124938 $bitmapType 2026/07/21 23:19:40.772143192 [1] "cairo" 2026/07/21 23:19:40.772144254 2026/07/21 23:19:40.772156126 $browser 2026/07/21 23:19:40.772158861 function (url) 2026/07/21 23:19:40.772175793 { 2026/07/21 23:19:40.772177847 cat("Cannot visit", url, "because the browseURL function is disabled.\n") 2026/07/21 23:19:40.772221929 } 2026/07/21 23:19:40.772223382 <environment: 0x55fbbcba5d88> 2026/07/21 23:19:40.772243099 2026/07/21 23:19:40.772244381 $browserNLdisabled 2026/07/21 23:19:40.772257535 [1] FALSE 2026/07/21 23:19:40.772258367 2026/07/21 23:19:40.772270299 $catch.script.errors 2026/07/21 23:19:40.772271161 [1] FALSE 2026/07/21 23:19:40.772284486 2026/07/21 23:19:40.772285267 $CBoundsCheck 2026/07/21 23:19:40.772298201 [1] FALSE 2026/07/21 23:19:40.772299033 2026/07/21 23:19:40.772310855 $check.bounds 2026/07/21 23:19:40.772311756 [1] FALSE 2026/07/21 23:19:40.772324450 2026/07/21 23:19:40.772325352 $citation.bibtex.max 2026/07/21 23:19:40.772338356 [1] 1 2026/07/21 23:19:40.772339318 2026/07/21 23:19:40.772352011 $continue 2026/07/21 23:19:40.772352913 [1] "+ " 2026/07/21 23:19:40.772365226 2026/07/21 23:19:40.772366298 $contrasts 2026/07/21 23:19:40.772378341 unordered ordered 2026/07/21 23:19:40.772380264 "contr.treatment" "contr.poly" 2026/07/21 23:19:40.772396875 2026/07/21 23:19:40.772397757 $defaultPackages 2026/07/21 23:19:40.772410471 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods" 2026/07/21 23:19:40.772411473 2026/07/21 23:19:40.772434195 $demo.ask 2026/07/21 23:19:40.772435297 [1] "default" 2026/07/21 23:19:40.772448531 2026/07/21 23:19:40.772449433 $deparse.cutoff 2026/07/21 23:19:40.772461876 [1] 60 2026/07/21 23:19:40.772462878 2026/07/21 23:19:40.772474239 $device 2026/07/21 23:19:40.772626494 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf", 2026/07/21 23:19:40.772632926 width, height, onefile, family, title, fonts, version, paper, 2026/07/21 23:19:40.772666989 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats, 2026/07/21 23:19:40.772667851 useKerning, fillOddEven, compress, timestamp, producer, author) 2026/07/21 23:19:40.772687708 { 2026/07/21 23:19:40.772688739 initPSandPDFfonts() 2026/07/21 23:19:40.772700572 new <- list() 2026/07/21 23:19:40.772701453 if (!missing(width)) 2026/07/21 23:19:40.772714317 new$width <- width 2026/07/21 23:19:40.772715189 if (!missing(height)) 2026/07/21 23:19:40.772729025 new$height <- height 2026/07/21 23:19:40.772729846 if (!missing(onefile)) 2026/07/21 23:19:40.772743512 new$onefile <- onefile 2026/07/21 23:19:40.772744373 if (!missing(title)) 2026/07/21 23:19:40.772757698 new$title <- title 2026/07/21 23:19:40.772758530 if (!missing(fonts)) 2026/07/21 23:19:40.772771764 new$fonts <- fonts 2026/07/21 23:19:40.772774099 if (!missing(version)) 2026/07/21 23:19:40.772793114 new$version <- version 2026/07/21 23:19:40.772793986 if (!missing(paper)) 2026/07/21 23:19:40.772808252 new$paper <- paper 2026/07/21 23:19:40.772809064 if (!missing(encoding)) 2026/07/21 23:19:40.772822210 new$encoding <- encoding 2026/07/21 23:19:40.772823893 if (!missing(bg)) 2026/07/21 23:19:40.772837970 new$bg <- bg 2026/07/21 23:19:40.772838531 if (!missing(fg)) 2026/07/21 23:19:40.772853449 new$fg <- fg 2026/07/21 23:19:40.772854390 if (!missing(pointsize)) 2026/07/21 23:19:40.772867886 new$pointsize <- pointsize 2026/07/21 23:19:40.772868497 if (!missing(pagecentre)) 2026/07/21 23:19:40.772900236 new$pagecentre <- pagecentre 2026/07/21 23:19:40.772901578 if (!missing(colormodel)) 2026/07/21 23:19:40.772926455 new$colormodel <- colormodel 2026/07/21 23:19:40.772927537 if (!missing(useDingbats)) 2026/07/21 23:19:40.772943206 new$useDingbats <- useDingbats 2026/07/21 23:19:40.772944118 if (!missing(useKerning)) 2026/07/21 23:19:40.772954567 new$useKerning <- useKerning 2026/07/21 23:19:40.772955078 if (!missing(fillOddEven)) 2026/07/21 23:19:40.772964295 new$fillOddEven <- fillOddEven 2026/07/21 23:19:40.772964736 if (!missing(compress)) 2026/07/21 23:19:40.772973913 new$compress <- compress 2026/07/21 23:19:40.772974344 if (!missing(timestamp)) 2026/07/21 23:19:40.772983130 new$timestamp <- timestamp 2026/07/21 23:19:40.772983561 if (!missing(producer)) 2026/07/21 23:19:40.772992418 new$producer <- producer 2026/07/21 23:19:40.772992879 if (!missing(author)) 2026/07/21 23:19:40.773001525 new$author <- author 2026/07/21 23:19:40.773002026 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv) 2026/07/21 23:19:40.773012946 if (!missing(family) && (inherits(family, "Type1Font") || 2026/07/21 23:19:40.773014890 inherits(family, "CIDFont"))) { 2026/07/21 23:19:40.773058641 enc <- family$encoding 2026/07/21 23:19:40.773060054 if (inherits(family, "Type1Font") && !is.null(enc) && 2026/07/21 23:19:40.773078368 enc != "default" && (is.null(old$encoding) || old$encoding == 2026/07/21 23:19:40.773079630 "default")) 2026/07/21 23:19:40.773091933 old$encoding <- enc 2026/07/21 23:19:40.773092394 family <- family$metrics 2026/07/21 23:19:40.773101271 } 2026/07/21 23:19:40.773101812 if (is.null(old$encoding) || old$encoding == "default") 2026/07/21 23:19:40.773110979 old$encoding <- guessEncoding() 2026/07/21 23:19:40.773111490 if (!missing(family)) { 2026/07/21 23:19:40.773120677 if (length(family) == 4L) { 2026/07/21 23:19:40.773121148 family <- c(family, "Symbol.afm") 2026/07/21 23:19:40.773130636 } 2026/07/21 23:19:40.773131076 else if (length(family) == 5L) { 2026/07/21 23:19:40.773139332 } 2026/07/21 23:19:40.773139762 else if (length(family) == 1L) { 2026/07/21 23:19:40.773147838 pf <- pdfFonts(family)[[1L]] 2026/07/21 23:19:40.773148309 if (is.null(pf)) 2026/07/21 23:19:40.773157145 stop(gettextf("unknown family '%s'", family), 2026/07/21 23:19:40.773157626 domain = NA) 2026/07/21 23:19:40.773173736 matchFont(pf, old$encoding) 2026/07/21 23:19:40.773174578 } 2026/07/21 23:19:40.773189686 else stop("invalid 'family' argument") 2026/07/21 23:19:40.773190637 old$family <- family 2026/07/21 23:19:40.773224859 } 2026/07/21 23:19:40.773226292 version <- old$version 2026/07/21 23:19:40.773236271 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", 2026/07/21 23:19:40.773236832 "2.0") 2026/07/21 23:19:40.773248062 if (version %in% versions) 2026/07/21 23:19:40.773248523 version <- as.integer(strsplit(version, "[.]")[[1L]]) 2026/07/21 23:19:40.773259173 else stop("invalid PDF version") 2026/07/21 23:19:40.773259684 onefile <- old$onefile 2026/07/21 23:19:40.773268851 if (!checkIntFormat(file)) 2026/07/21 23:19:40.773269312 stop(gettextf("invalid 'file' argument '%s'", file), 2026/07/21 23:19:40.773279401 domain = NA) 2026/07/21 23:19:40.773279852 .External(C_PDF, file, old$paper, old$family, old$encoding, 2026/07/21 23:19:40.773289800 old$bg, old$fg, old$width, old$height, old$pointsize, 2026/07/21 23:19:40.773290261 onefile, old$pagecentre, old$title, old$fonts, version[1L], 2026/07/21 23:19:40.773333053 version[2L], old$colormodel, old$useDingbats, old$useKerning, 2026/07/21 23:19:40.773362388 old$fillOddEven, old$compress, old$timestamp, old$producer, 2026/07/21 23:19:40.773363540 old$author) 2026/07/21 23:19:40.773384439 invisible() 2026/07/21 23:19:40.773384980 } 2026/07/21 23:19:40.773392414 <bytecode: 0x55fbba99e570> 2026/07/21 23:19:40.773392965 <environment: namespace:grDevices> 2026/07/21 23:19:40.773402813 2026/07/21 23:19:40.773403264 $device.ask.default 2026/07/21 23:19:40.773410818 [1] FALSE 2026/07/21 23:19:40.773411249 2026/07/21 23:19:40.773418212 $digits 2026/07/21 23:19:40.773418653 [1] 7 2026/07/21 23:19:40.773444531 2026/07/21 23:19:40.773445573 $dvipscmd 2026/07/21 23:19:40.773458146 [1] "dvips" 2026/07/21 23:19:40.773459098 2026/07/21 23:19:40.773468265 $echo 2026/07/21 23:19:40.773468756 [1] FALSE 2026/07/21 23:19:40.773475960 2026/07/21 23:19:40.773476400 $editor 2026/07/21 23:19:40.773483273 [1] "vi" 2026/07/21 23:19:40.773483764 2026/07/21 23:19:40.773490817 $encoding 2026/07/21 23:19:40.773491258 [1] "native.enc" 2026/07/21 23:19:40.773498892 2026/07/21 23:19:40.773499353 $example.ask 2026/07/21 23:19:40.773506476 [1] "default" 2026/07/21 23:19:40.773508490 2026/07/21 23:19:40.773515614 $expressions 2026/07/21 23:19:40.773516044 [1] 5000 2026/07/21 23:19:40.773523658 2026/07/21 23:19:40.773524099 $help.search.types 2026/07/21 23:19:40.773531713 [1] "vignette" "demo" "help" 2026/07/21 23:19:40.773532174 2026/07/21 23:19:40.773539969 $help.try.all.packages 2026/07/21 23:19:40.773540410 [1] FALSE 2026/07/21 23:19:40.773548485 2026/07/21 23:19:40.773549016 $HTTPUserAgent 2026/07/21 23:19:40.773564775 [1] "R/4.5.2 (ubuntu-22.04) R (4.5.2 x86_64-pc-linux-gnu x86_64 linux-gnu)" 2026/07/21 23:19:40.773565957 2026/07/21 23:19:40.773582769 $internet.info 2026/07/21 23:19:40.773583620 [1] 2 2026/07/21 23:19:40.773593218 2026/07/21 23:19:40.773593739 $keep.parse.data 2026/07/21 23:19:40.773601223 [1] TRUE 2026/07/21 23:19:40.773601704 2026/07/21 23:19:40.773608667 $keep.parse.data.pkgs 2026/07/21 23:19:40.773609108 [1] FALSE 2026/07/21 23:19:40.773617093 2026/07/21 23:19:40.773617544 $keep.source 2026/07/21 23:19:40.773624647 [1] FALSE 2026/07/21 23:19:40.773625098 2026/07/21 23:19:40.773631940 $keep.source.pkgs 2026/07/21 23:19:40.773632401 [1] FALSE 2026/07/21 23:19:40.773640536 2026/07/21 23:19:40.773640967 $locatorBell 2026/07/21 23:19:40.773648090 [1] TRUE 2026/07/21 23:19:40.773648531 2026/07/21 23:19:40.773655274 $mailer 2026/07/21 23:19:40.773655715 [1] "mailto" 2026/07/21 23:19:40.773663008 2026/07/21 23:19:40.773663449 $matprod 2026/07/21 23:19:40.773670382 [1] "default" 2026/07/21 23:19:40.773670813 2026/07/21 23:19:40.773683787 $max.contour.segments 2026/07/21 23:19:40.773684859 [1] 25000 2026/07/21 23:19:40.773699156 2026/07/21 23:19:40.773700067 $max.print 2026/07/21 23:19:40.773711479 [1] 99999 2026/07/21 23:19:40.773712250 2026/07/21 23:19:40.773724623 $menu.graphics 2026/07/21 23:19:40.773725535 [1] TRUE 2026/07/21 23:19:40.773740463 2026/07/21 23:19:40.773740943 $na.action 2026/07/21 23:19:40.773747947 [1] "na.omit" 2026/07/21 23:19:40.773748388 2026/07/21 23:19:40.773755230 $nwarnings 2026/07/21 23:19:40.773755681 [1] 50 2026/07/21 23:19:40.773762764 2026/07/21 23:19:40.773763215 $OutDec 2026/07/21 23:19:40.773769928 [1] "." 2026/07/21 23:19:40.773770398 2026/07/21 23:19:40.773776901 $pager 2026/07/21 23:19:40.773777371 [1] "/opt/R/4.5.2/lib/R/bin/pager" 2026/07/21 23:19:40.773785246 2026/07/21 23:19:40.773785717 $papersize 2026/07/21 23:19:40.773792580 [1] "letter" 2026/07/21 23:19:40.773793011 2026/07/21 23:19:40.773804622 $PCRE_limit_recursion 2026/07/21 23:19:40.773805434 [1] NA 2026/07/21 23:19:40.773820262 2026/07/21 23:19:40.773821093 $PCRE_study 2026/07/21 23:19:40.773833175 [1] FALSE 2026/07/21 23:19:40.773833957 2026/07/21 23:19:40.773845929 $PCRE_use_JIT 2026/07/21 23:19:40.773846791 [1] TRUE 2026/07/21 23:19:40.773870966 2026/07/21 23:19:40.773871637 $pdfviewer 2026/07/21 23:19:40.773878740 [1] "/usr/bin/xdg-open" 2026/07/21 23:19:40.773879292 2026/07/21 23:19:40.773886695 $pkgType 2026/07/21 23:19:40.773887206 [1] "source" 2026/07/21 23:19:40.773894490 2026/07/21 23:19:40.773894921 $printcmd 2026/07/21 23:19:40.773906001 [1] "/usr/bin/lpr" 2026/07/21 23:19:40.773906462 2026/07/21 23:19:40.773913385 $prompt 2026/07/21 23:19:40.773913846 [1] "> " 2026/07/21 23:19:40.773920789 2026/07/21 23:19:40.773921230 $repos 2026/07/21 23:19:40.773928043 CRAN 2026/07/21 23:19:40.773928543 "@CRAN@" 2026/07/21 23:19:40.773935586 2026/07/21 23:19:40.773936017 $rl_word_breaks 2026/07/21 23:19:40.773944633 [1] " \t\n\"\\'`><=%;,|&{()}" 2026/07/21 23:19:40.773948671 2026/07/21 23:19:40.773962467 $scipen 2026/07/21 23:19:40.773963569 [1] 0 2026/07/21 23:19:40.773979526 2026/07/21 23:19:40.773980879 $show.coef.Pvalues 2026/07/21 23:19:40.773995727 [1] TRUE 2026/07/21 23:19:40.773996718 2026/07/21 23:19:40.774008190 $show.error.messages 2026/07/21 23:19:40.774009021 [1] TRUE 2026/07/21 23:19:40.774023148 2026/07/21 23:19:40.774023819 $show.signif.stars 2026/07/21 23:19:40.774031293 [1] TRUE 2026/07/21 23:19:40.774031744 2026/07/21 23:19:40.774051250 $showErrorCalls 2026/07/21 23:19:40.774052342 [1] TRUE 2026/07/21 23:19:40.774066188 2026/07/21 23:19:40.774066940 $showNCalls 2026/07/21 23:19:40.774088620 [1] 50 2026/07/21 23:19:40.774089231 2026/07/21 23:19:40.774095974 $showWarnCalls 2026/07/21 23:19:40.774096404 [1] FALSE 2026/07/21 23:19:40.774103828 2026/07/21 23:19:40.774104239 $str 2026/07/21 23:19:40.774110911 $str$strict.width 2026/07/21 23:19:40.774111342 [1] "no" 2026/07/21 23:19:40.774124917 2026/07/21 23:19:40.774125709 $str$digits.d 2026/07/21 23:19:40.774138814 [1] 3 2026/07/21 23:19:40.774139675 2026/07/21 23:19:40.774151106 $str$vec.len 2026/07/21 23:19:40.774151948 [1] 4 2026/07/21 23:19:40.774161085 2026/07/21 23:19:40.774161536 $str$list.len 2026/07/21 23:19:40.774168479 [1] 99 2026/07/21 23:19:40.774169030 2026/07/21 23:19:40.774175762 $str$deparse.lines 2026/07/21 23:19:40.774176293 NULL 2026/07/21 23:19:40.774183757 2026/07/21 23:19:40.774184208 $str$drop.deparse.attr 2026/07/21 23:19:40.774191642 [1] TRUE 2026/07/21 23:19:40.774192103 2026/07/21 23:19:40.774198775 $str$formatNum 2026/07/21 23:19:40.774199206 function (x, ...) 2026/07/21 23:19:40.774206930 format(x, trim = TRUE, drop0trailing = TRUE, ...) 2026/07/21 23:19:40.774207522 <environment: 0x55fbbb2134d0> 2026/07/21 23:19:40.774217230 2026/07/21 23:19:40.774217670 2026/07/21 23:19:40.774224073 $str.dendrogram.last 2026/07/21 23:19:40.774224493 [1] "`" 2026/07/21 23:19:40.774231997 2026/07/21 23:19:40.774232498 $texi2dvi 2026/07/21 23:19:40.774239371 [1] "/usr/bin/texi2dvi" 2026/07/21 23:19:40.774239812 2026/07/21 23:19:40.774255170 $timeout 2026/07/21 23:19:40.774256212 [1] 60 2026/07/21 23:19:40.774268866 2026/07/21 23:19:40.774269768 $ts.eps 2026/07/21 23:19:40.774281129 [1] 1e-05 2026/07/21 23:19:40.774282041 2026/07/21 23:19:40.774293762 $ts.S.compat 2026/07/21 23:19:40.774294544 [1] FALSE 2026/07/21 23:19:40.774302058 2026/07/21 23:19:40.774302489 $unzip 2026/07/21 23:19:40.774309161 [1] "/usr/bin/unzip" 2026/07/21 23:19:40.774309692 2026/07/21 23:19:40.774316815 $useFancyQuotes 2026/07/21 23:19:40.774317286 [1] TRUE 2026/07/21 23:19:40.774324830 2026/07/21 23:19:40.774325251 $verbose 2026/07/21 23:19:40.774332064 [1] FALSE 2026/07/21 23:19:40.774332504 2026/07/21 23:19:40.774339207 $warn 2026/07/21 23:19:40.774339648 [1] 0 2026/07/21 23:19:40.774346370 2026/07/21 23:19:40.774346791 $warning.length 2026/07/21 23:19:40.774353965 [1] 1000 2026/07/21 23:19:40.774354405 2026/07/21 23:19:40.774360968 $warnPartialMatchArgs 2026/07/21 23:19:40.774361409 [1] FALSE 2026/07/21 23:19:40.774393669 2026/07/21 23:19:40.774394831 $warnPartialMatchAttr 2026/07/21 23:19:40.774407725 [1] FALSE 2026/07/21 23:19:40.774408717 2026/07/21 23:19:40.774421060 $warnPartialMatchDollar 2026/07/21 23:19:40.774422002 [1] FALSE 2026/07/21 23:19:40.774434014 2026/07/21 23:19:40.774434505 $width 2026/07/21 23:19:40.774441468 [1] 80 2026/07/21 23:19:40.774441919 Stopping content session token refresher Stopped session pings to http://127.0.0.1:34695 Job completed |
| ✅ | rmarkdown-sandbox | environment | Using environment Local Using /opt/R/4.5.2/bin/R with version 4.5.2 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:40.797596144 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:40.797814091 [connect-session] Job Key: [redacted] Job started Determining session server location ... Connecting to session server http://127.0.0.1:33627 ... Connected to session server http://127.0.0.1:33627 Starting content session token refresher (interval: 12h0m0s) 2026/07/21 23:19:40.991753793 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:40.992001994 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:40.992108262 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/04-environment.sh 2026/07/21 23:19:41.000099040 2026/07/21 23:19:41.000107646 $ env 2026/07/21 23:19:41.000145176 CONNECT_API_KEY=REDACTED 2026/07/21 23:19:41.000151738 CONNECT_CONTENT_GUID= 2026/07/21 23:19:41.000175295 CONNECT_CONTENT_JOB_KEY=REDACTED 2026/07/21 23:19:41.000176737 CONNECT_CONTENT_SESSION_TOKEN=REDACTED 2026/07/21 23:19:41.000196614 CONNECT_SERVER=http://localhost:3939/ 2026/07/21 23:19:41.000199310 _DD_ROOT_GO_SESSION_ID=d7cd2196-90ad-4ca5-8550-3e64b9c581a3 2026/07/21 23:19:41.000230347 EDITOR=vi 2026/07/21 23:19:41.000231429 HOME=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:41.000247279 HOSTNAME=6c4839c67a1f 2026/07/21 23:19:41.000248050 LANG=en_US.UTF-8 2026/07/21 23:19:41.000263138 LANGUAGE=en_US:en 2026/07/21 23:19:41.000264090 LC_ALL=en_US.UTF-8 2026/07/21 23:19:41.000279158 LD_LIBRARY_PATH=/opt/R/4.5.2/lib/R/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-11-openjdk-amd64/lib/server 2026/07/21 23:19:41.000284338 LN_S=ln -s 2026/07/21 23:19:41.000315967 LOGNAME=rstudio-connect 2026/07/21 23:19:41.000317059 MAKE=make 2026/07/21 23:19:41.000342787 PAGER=/usr/bin/pager 2026/07/21 23:19:41.000348498 PATH=/opt/rstudio-connect/mnt/app/python/env/bin:/opt/python/3.13.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:41.000385767 POSIT_PRODUCT=CONNECT 2026/07/21 23:19:41.000386989 PWD=/opt/rstudio-connect/mnt/app 2026/07/21 23:19:41.000403340 R_ARCH= 2026/07/21 23:19:41.000404131 R_BROWSER=xdg-open 2026/07/21 23:19:41.000412146 R_BZIPCMD=/usr/bin/bzip2 2026/07/21 23:19:41.000412637 R_CONFIG_ACTIVE=rsconnect 2026/07/21 23:19:41.000421413 R_DOC_DIR=/opt/R/4.5.2/lib/R/doc 2026/07/21 23:19:41.000421874 RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:41.000432324 R_GZIPCMD=/usr/bin/gzip 2026/07/21 23:19:41.000432765 R_HOME=/opt/R/4.5.2/lib/R 2026/07/21 23:19:41.000441020 R_INCLUDE_DIR=/opt/R/4.5.2/lib/R/include 2026/07/21 23:19:41.000441561 R_LIBS=/opt/rstudio-connect/mnt/R/4.5.2 2026/07/21 23:19:41.000456710 R_LIBS_SITE=/opt/R/4.5.2/lib/R/site-library 2026/07/21 23:19:41.000457621 R_LIBS_USER=REDACTED 2026/07/21 23:19:41.000476657 R_PAPERSIZE=letter 2026/07/21 23:19:41.000477608 R_PDFVIEWER=/usr/bin/xdg-open 2026/07/21 23:19:41.000493588 R_PLATFORM=x86_64-pc-linux-gnu 2026/07/21 23:19:41.000494640 R_PRINTCMD=/usr/bin/lpr 2026/07/21 23:19:41.000512984 R_RD4PDF=times,inconsolata,hyper 2026/07/21 23:19:41.000513936 RSC_EMAIL_SUBJECT=system-check 2026/07/21 23:19:41.000544926 RSC_REPORT_NAME=system-check 2026/07/21 23:19:41.000546459 RSC_REPORT_RENDERING_URL=[[==RSC_REPORT_RENDERING_URL==]] 2026/07/21 23:19:41.000566917 RSC_REPORT_SUBSCRIPTION_URL=[[==RSC_REPORT_SUBSCRIPTION_URL==]] 2026/07/21 23:19:41.000567959 RSC_REPORT_URL=[[==RSC_REPORT_URL==]] 2026/07/21 23:19:41.000582466 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/RtmpuuYgC9 2026/07/21 23:19:41.000582957 R_SHARE_DIR=/opt/R/4.5.2/lib/R/share 2026/07/21 23:19:41.000593256 R_STRIP_SHARED_LIB=strip --strip-unneeded 2026/07/21 23:19:41.000593687 R_STRIP_STATIC_LIB=strip --strip-debug 2026/07/21 23:19:41.000603305 RSTUDIO_PANDOC=/opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:41.000603746 RSTUDIO_PRODUCT=CONNECT 2026/07/21 23:19:41.000632920 R_TEXI2DVICMD=/usr/bin/texi2dvi 2026/07/21 23:19:41.000634052 R_UNZIPCMD=/usr/bin/unzip 2026/07/21 23:19:41.000646535 R_ZIPCMD=/usr/bin/zip 2026/07/21 23:19:41.000647076 SED=/usr/bin/sed 2026/07/21 23:19:41.000654931 SF_PARTNER=posit_connect 2026/07/21 23:19:41.000655352 SHLVL=2 2026/07/21 23:19:41.000664148 SPARK_CONNECT_USER_AGENT=REDACTED 2026/07/21 23:19:41.000664980 STARTUP_DEBUG_MODE=0 2026/07/21 23:19:41.000687320 TAR=/usr/bin/tar 2026/07/21 23:19:41.000688422 TERM=xterm 2026/07/21 23:19:41.000702979 TMPDIR=/opt/rstudio-connect/mnt/tmp 2026/07/21 23:19:41.000703940 TZ=UTC 2026/07/21 23:19:41.000728266 USERNAME=rstudio-connect 2026/07/21 23:19:41.000728807 USER=rstudio-connect 2026/07/21 23:19:41.005628944 _=/usr/bin/env Stopping content session token refresher Stopped session pings to http://127.0.0.1:33627 Job completed |
| ✅ | rmarkdown-sandbox | mounts | Using environment Local Using /opt/R/4.5.2/bin/R with version 4.5.2 from Local Using /opt/python/3.13.9/bin/python3.13 with version 3.13.9 from Local 2026/07/21 23:19:41.023770815 [connect-session] Connect Session v2026.06.1 2026/07/21 23:19:41.024080102 [connect-session] Job Key: [redacted] Job started Starting content session token refresher (interval: 12h0m0s) Determining session server location ... Connecting to session server http://127.0.0.1:33463 ... Connected to session server http://127.0.0.1:33463 2026/07/21 23:19:41.221713688 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python 2026/07/21 23:19:41.221984634 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16 2026/07/21 23:19:41.222097011 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/05-mounts.sh 2026/07/21 23:19:41.229742369 2026/07/21 23:19:41.229748952 $ findmnt --notruncate 2026/07/21 23:19:41.229791591 TARGET SOURCE FSTYPE OPTIONS 2026/07/21 23:19:41.229802792 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docker/ov erlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:41.229880557 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:41.229881349 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64 2026/07/21 23:19:41.229903280 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:41.229910333 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:41.229952301 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64 2026/07/21 23:19:41.229953704 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666 2026/07/21 23:19:41.229989440 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime 2026/07/21 23:19:41.229990683 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 2026/07/21 23:19:41.230053289 ├─/data /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230057327 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/doc ker/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:41.230208168 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/doc ker/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:41.230210012 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230345214 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230346767 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/6c4839c67a1f6ba4e8132fb263a126b123fa036e8c7e0ec2ef60e98b940dfa37/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230425013 ├─/var/lib/rstudio-connect/rstudio-connect.lic /dev/sda1[/home/runner/work/vip/vip/rstudio-connect.lic] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230429070 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/reports/v2/0/0/temp.source.785043354] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230456752 ├─/opt/rstudio-connect/mnt/report /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/reports/v2/0/0/temp.output.4230767239] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230457213 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/jobs/0/anyeJVjYPslsG9ko] ext4 rw,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230482530 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/python-environments] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230482990 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/packrat] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230507406 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/fc857c1cb5b46d66981edc3afa94acf1116f53f1f45b20b381513a8853873ef4/_data/R] ext4 ro,relatime,discard,errors=remount-ro,commit=30 2026/07/21 23:19:41.230507907 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace182227254] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:41.230585602 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr 2026/07/21 23:19:41.235755360 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/5AZ5XOJ4OATNX3RCY66TQPF2CC:/var/lib/docker/overlay2/l/K4EXWOADU43WOBXMYUTCLTLBIO:/var/lib/docker/overlay2/l/46LAH5IBKHA4GXURYFSU3J3E47:/var/lib/docker/overlay2/l/2LK7MFRDANTBVJHEVC7SRNZXBA:/var/lib/docker/overlay2/l/BVVTRNO5OHAFLONBNSPM7P2TVT:/var/lib/docker/overlay2/l/JSJPYPBRNCRYH5SRSJV7MSBYBA:/var/lib/docker/overlay2/l/IL3M45B7IAOGEN53LNHKEJ7IPI:/var/lib/docker/overlay2/l/NFLFVZD4AK3IN54NT5FEOPPC62:/var/lib/docker/overlay2/l/E4GF42BEXP2B4U7XIURQDDI4FS:/var/lib/docker/overlay2/l/Y7JFW6PJG7KPWCEXVDYSLXAEHP:/var/lib/docker/overlay2/l/VUCLZS2BMIT7GS3IDU4DKJPMZJ:/var/lib/docker/overlay2/l/L536JLVTSGPKOUOXNPHXGU3MDS:/var/lib/docker/overlay2/l/E4DSR3CBLND2FSLBKMN3TZLJVY:/var/lib/docker/overlay2/l/QK5QAP2YIUPOYDJN7S7STQ6S4W:/var/lib/docke r/overlay2/l/BQKBLLQL463TV44ANG3IK4RTKP:/var/lib/docker/overlay2/l/VLKMTOK44WFOOZE6PC7SVX5CHB:/var/lib/docker/overlay2/l/IT6ELEENYKY76GABQ56N3F4SFP:/var/lib/docker/overlay2/l/IB2KJ5HCYTJ4HH2GYUHKBD7C6F:/var/lib/docker/overlay2/l/DFR7BKEMXIBDRNKGJSWMLWQI54,upperdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/diff,workdir=/var/lib/docker/overlay2/333413a39236707160b5d9db05fd3632dfa03fd869d800fccc97bf8151a4c469/work,nouserxattr Stopped session pings to http://127.0.0.1:33463 Stopping content session token refresher Job completed |