VIP Report

Verified Installation of Posit

Deployment: CI Connect 2026.04.0 + WB 2026.04.0+526.pro2 + PM 2024.08.0-6 Generated: 2026-05-08 23:02:58 UTC

Products Under Test

Product URL Version
Connect http://localhost:3939 2026.04.0
Workbench http://localhost:8787 2026.04.0+526.pro2
Package Manager http://localhost:4242 2024.08.0-6

Summary

Metric Count
Total 25
Passed 18
Failed 1
Skipped 6
Status FAIL

Results

Failed (1)

Connect1 tests

FAILUsers can be listedConnect
As a Posit Team administrator
src/vip_tests/connect/test_users.py::test_list_users0.26s
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 0x7f7aad18b380>
request = <FixtureRequest for <Function test_list_users>>
kwargs = {'test_username': 'testuser', 'user_list': [{'active_time': '2026-05-08T23:01:18Z', 'confirmed': True, 'created_time': '2026-05-08T22:59:51Z', 'email': '', ...}]}

    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.13/site-packages/_pytest/fixtures.py:915: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user_list = [{'active_time': '2026-05-08T23:01:18Z', 'confirmed': True, 'created_time': '2026-05-08T22:59:51Z', 'email': '', ...}]
test_username = 'testuser'

    @then("the test user exists in the user list")
    def check_test_user_in_list(user_list, test_username):
        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:54: AssertionError

Passed (18)

Connect6 tests

PASSAdmin user exists and has admin privilegesConnect
As a Posit Team administrator
src/vip_tests/connect/test_users.py::test_admin_user0.26s
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.26s
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.26s
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
PASSUser can log in via the web UIConnect
As a Posit Team administrator
src/vip_tests/connect/test_auth.py::test_connect_login_ui5.16s
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.26s
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
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_checks31.83s
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.65s
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.05s
Test procedure
  • Given Package Manager is running
  • When I list all repositories
  • Then at least one repository exists

Prerequisites6 tests

PASSConnect server is reachablePrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_components.py::test_product_server_is_reachable[Connect]0.08s
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 reachablePrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_components.py::test_product_server_is_reachable[Workbench]0.19s
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
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 version matches configurationPrerequisites
As a Posit Team administrator
src/vip_tests/prerequisites/test_versions.py::test_connect_version0.14s
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

Security3 tests

PASSInvalid API key returns 401Security
As a Posit Team administrator
src/vip_tests/security/test_error_handling.py::test_invalid_api_key_returns_4012.14s
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
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
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

Workbench1 tests

PASSUser 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]0.73s
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 is shown in the header

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.13s
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.13s
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.05s
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.05s
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.05s
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: 7487772abf07 · Status: done · Passed: 53 · Failed: 2

Group Check Detail
server connect-versions Connect versions on active hosts:

7487772abf07 2026.04.0
server connect-product-support Product version v2026.04.0 end-of-support: 2027-10-31
server connect-deprecated-settings Deprecated settings are not in use.
server connect-notifications-config All Notifications are correctly formatted
server connect-license $ /opt/rstudio-connect/scripts/system-checks/../../bin/license-manager status
RStudio License Manager 2024.12.1-dev+999.pro9

-- License file status --

Status: Activated
Product-Key: A33R-D4BT-JFGA-NBA3-A6VF-AUGQ-PSTA
Has-Key: Yes
Has-Trial: No
Tier: advanced
SKU-Year: 2024
Enable-Launcher: 1
Users: 0
User-Activity-Days: 365
Shiny-Users: 0
Allow-APIs: 1
Anonymous-Servers: 1
Unrestricted-Servers: 1
Licensee: Posit-Team-Test-Suite
License-File: /var/lib/rstudio-connect/rstudio-connect.lic
Expiration: 2027-02-20 00:00:00
Days-Left: 288
License-Engine: 1.0.0.0
License-Scope: System

-- Local license status --

Trial-Type: Verified
Status: Evaluation
Days-Left: 7
License-Scope: System
License-Engine: 4.4.3.0

-- Floating license status --

License server not in use.
/opt/rstudio-connect/scripts/system-checks/server/01-connect-license.sh: line 25: [[: 288
7: syntax error in expression (error token is "7")
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
HOME=/root
HOSTNAME=7487772abf07
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.5Gi 222Mi 51Mi 13Gi 13Gi
Swap: 3.0Gi 0.0Ki 3.0Gi
server disk $ df -h
Filesystem Size Used Avail Use% Mounted on
overlay 145G 75G 70G 52% /
tmpfs 64M 0 64M 0% /dev
shm 64M 0 64M 0% /dev/shm
/dev/root 145G 75G 70G 52% /data
server database-latency Database latency: median 0.000, max 0.000 sec
server queue-depth ID Created Type Hostname Details
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.04.0
< X-Content-Type-Options: nosniff
< X-Correlation-Id: REDACTED
< X-Frame-Options: DENY
< Date: Fri, 08 May 2026 23:02:31 GMT
< Transfer-Encoding: chunked
<
{ [3404 bytes data]
* Connection #0 to host localhost left intact
server self-connectivity Warning: HTTPS.Listen is not configured.
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.04.0
< X-Content-Type-Options: nosniff
< X-Correlation-Id: REDACTED
< X-Frame-Options: DENY
< Date: Fri, 08 May 2026 23:02:31 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: 0x55eaee0b5b50 [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.04.0
< X-Content-Type-Options: nosniff
< X-Correlation-Id: REDACTED
< X-Frame-Options: DENY
< Date: Fri, 08 May 2026 23:02:31 GMT
< Transfer-Encoding: chunked
<
{ [3404 bytes data]
* Connection #0 to host localhost left intact
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/05/08 23:02:31.075150343 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:31.075388909 [connect-session] Job Key: ktGVQvJPuGAN356J
2026/05/08 23:02:31.075402273 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:31.075405991 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:31.075410976 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:31.075415383 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:44863 ...
Connected to session server http://127.0.0.1:44863
2026/05/08 23:02:31.221327383 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/01-python-version.sh'
2026/05/08 23:02:31.226990233
2026/05/08 23:02:31.226997693 $ /opt/python/3.12.11/bin/python3.12 -V
2026/05/08 23:02:31.227043103 Python 3.12.11
Stopped session pings to http://127.0.0.1:44863
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/05/08 23:02:31.621059573 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:31.621284587 [connect-session] Job Key: gusus8Ipj6C0DWC1
2026/05/08 23:02:31.621295475 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:31.621297789 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:31.621300988 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:31.621306645 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:43461 ...
Connected to session server http://127.0.0.1:43461
2026/05/08 23:02:31.729496677 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/03-environment.sh'
2026/05/08 23:02:31.734466417
2026/05/08 23:02:31.734476438 $ env
2026/05/08 23:02:31.734509927 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:31.734510935 HOSTNAME=7487772abf07
2026/05/08 23:02:31.734520968 LANG=en_US.UTF-8
2026/05/08 23:02:31.734521610 LANGUAGE=en_US:en
2026/05/08 23:02:31.734531772 LC_ALL=en_US.UTF-8
2026/05/08 23:02:31.734532426 LOGNAME=rstudio-connect
2026/05/08 23:02:31.734542732 MAKEFLAGS=-j1
2026/05/08 23:02:31.734543523 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026/05/08 23:02:31.734563896 PICOTEL_PREFIX=PICOTEL
2026/05/08 23:02:31.734568761 PICOTEL_SDK_DISABLED=true
2026/05/08 23:02:31.734614568 PICOTEL_SERVICE_NAME=posit-connect-python
2026/05/08 23:02:31.734615758 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:31.734637165 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:31.734638012 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:31.734650052 SHLVL=2
2026/05/08 23:02:31.734650974 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:31.734660647 TERM=xterm
2026/05/08 23:02:31.734661497 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:31.734675744 TZ=UTC
2026/05/08 23:02:31.734676556 USERNAME=rstudio-connect
2026/05/08 23:02:31.734688516 USER=rstudio-connect
2026/05/08 23:02:31.734689209 _=/usr/bin/env
2026/05/08 23:02:31.734699637 UV_CONCURRENT_BUILDS=1
Stopped session pings to http://127.0.0.1:43461
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/05/08 23:02:31.747795307 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:31.748001135 [connect-session] Job Key: mAZoJAoxJO5TthoD
2026/05/08 23:02:31.748009282 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:31.748011654 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:31.748014532 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:31.748017886 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:42831 ...
Connected to session server http://127.0.0.1:42831
2026/05/08 23:02:31.854960228 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/04-mounts.sh'
2026/05/08 23:02:31.858129490
2026/05/08 23:02:31.858137974 $ findmnt --notruncate
2026/05/08 23:02:31.861399614 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:31.861409660 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U3U5H
FR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:31.861534075 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:31.861543882 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:31.861563984 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:31.861565136 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:31.861586490 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:31.861586933 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:31.861601873 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:31.861602342 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:31.861623945 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861626454 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:31.861716088 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:31.861782570 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861853201 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861854353 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861899309 ├─/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/05/08 23:02:31.861901693 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861944393 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/mAZoJAoxJO5TthoD] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861979874 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/python-environments] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:31.861981116 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace3342215771] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:31.862106915 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:31.862110177 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
Stopped session pings to http://127.0.0.1:42831
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/05/08 23:02:31.874313021 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:31.874517697 [connect-session] Job Key: NEuVZK4bZnCXjw3Y
2026/05/08 23:02:31.874526625 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:31.874529139 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:31.874532180 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:31.874535172 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:45787 ...
Connected to session server http://127.0.0.1:45787
2026/05/08 23:02:31.981105387 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/05-pypi-connectivity.sh'
2026/05/08 23:02:31.984107754
2026/05/08 23:02:31.984115899 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://pypi.python.org/
2026/05/08 23:02:32.004023530 * Trying 151.101.64.223:443...
2026/05/08 23:02:32.012199709 * Connected to pypi.python.org (151.101.64.223) port 443 (#0)
2026/05/08 23:02:32.013760087 * ALPN, offering h2
2026/05/08 23:02:32.013768532 * ALPN, offering http/1.1
2026/05/08 23:02:32.054818249 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:32.054829297 * CApath: /etc/ssl/certs
2026/05/08 23:02:32.055003205 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:32.055011637 } [5 bytes data]
2026/05/08 23:02:32.055042744 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:32.055052976 } [512 bytes data]
2026/05/08 23:02:32.064195437 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:32.064204516 { [5 bytes data]
2026/05/08 23:02:32.064289994 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:32.064295275 { [122 bytes data]
2026/05/08 23:02:32.064478940 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:32.064482813 { [5 bytes data]
2026/05/08 23:02:32.064501242 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.064503183 { [5 bytes data]
2026/05/08 23:02:32.064514827 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:32.064516440 { [19 bytes data]
2026/05/08 23:02:32.064528811 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.064530483 { [5 bytes data]
2026/05/08 23:02:32.064543238 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:32.064558188 { [2860 bytes data]
2026/05/08 23:02:32.065501663 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.065505559 { [5 bytes data]
2026/05/08 23:02:32.065531325 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:32.065533333 { [264 bytes data]
2026/05/08 23:02:32.065583664 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.065587930 { [5 bytes data]
2026/05/08 23:02:32.065605343 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:32.065606166 { [36 bytes data]
2026/05/08 23:02:32.065658430 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:32.065669131 } [5 bytes data]
2026/05/08 23:02:32.065714371 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:32.065715430 } [1 bytes data]
2026/05/08 23:02:32.065726154 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.065726870 } [5 bytes data]
2026/05/08 23:02:32.065737627 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:32.065738273 } [36 bytes data]
2026/05/08 23:02:32.065797553 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:32.065803405 * ALPN, server accepted to use h2
2026/05/08 23:02:32.065822520 * Server certificate:
2026/05/08 23:02:32.065824502 * subject: CN=www.python.org
2026/05/08 23:02:32.065842463 * start date: Jan 13 13:03:46 2026 GMT
2026/05/08 23:02:32.065843925 * expire date: Feb 14 13:03:45 2027 GMT
2026/05/08 23:02:32.065864091 * subjectAltName: host "pypi.python.org" matched cert's "*.python.org"
2026/05/08 23:02:32.065865997 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:32.065886290 * SSL certificate verify ok.
2026/05/08 23:02:32.065888188 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:32.065945305 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:32.065947474 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:32.065977439 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.065979163 } [5 bytes data]
2026/05/08 23:02:32.065991697 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.065992501 } [5 bytes data]
2026/05/08 23:02:32.066003684 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.066004487 } [5 bytes data]
2026/05/08 23:02:32.066021020 * Using Stream ID: 1 (easy handle 0x55c89bc5e9f0)
2026/05/08 23:02:32.066021866 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.066040500 } [5 bytes data]
2026/05/08 23:02:32.066041270 > GET / HTTP/2
2026/05/08 23:02:32.066051084 > Host: pypi.python.org
2026/05/08 23:02:32.066051712 > user-agent: curl/7.81.0
2026/05/08 23:02:32.066063309 > accept: */*
2026/05/08 23:02:32.066064115 >
2026/05/08 23:02:32.066073231 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.066073971 { [5 bytes data]
2026/05/08 23:02:32.066086658 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:32.066087339 { [193 bytes data]
2026/05/08 23:02:32.073682453 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.073692193 { [5 bytes data]
2026/05/08 23:02:32.073731284 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.073733535 } [5 bytes data]
2026/05/08 23:02:32.073743316 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.073761363 { [5 bytes data]
2026/05/08 23:02:32.074212920 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.074218231 { [5 bytes data]
2026/05/08 23:02:32.074281422 < HTTP/2 301
2026/05/08 23:02:32.074282853 < server: Varnish
2026/05/08 23:02:32.074302444 < retry-after: 0
2026/05/08 23:02:32.074303203 < location: https://pypi.org/
2026/05/08 23:02:32.074319939 < content-type: text/html; charset=UTF-8
2026/05/08 23:02:32.074324703 < accept-ranges: bytes
2026/05/08 23:02:32.074341269 < date: Fri, 08 May 2026 23:02:32 GMT
2026/05/08 23:02:32.074342110 < x-served-by: cache-bur-kbur8200084-BUR
2026/05/08 23:02:32.074355408 < x-cache: HIT
2026/05/08 23:02:32.074356056 < x-cache-hits: 0
2026/05/08 23:02:32.074364409 < x-timer: S1778281352.070414,VS0,VE0
2026/05/08 23:02:32.074364956 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:32.074378090 < x-frame-options: deny
2026/05/08 23:02:32.074378689 < x-xss-protection: 1; mode=block
2026/05/08 23:02:32.074389062 < x-content-type-options: nosniff
2026/05/08 23:02:32.074389729 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:32.074423312 < 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/05/08 23:02:32.074434091 < content-length: 122
2026/05/08 23:02:32.074481592 <
2026/05/08 23:02:32.074482624 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.074497046 { [5 bytes data]
2026/05/08 23:02:32.074497871 * Ignoring the response-body
2026/05/08 23:02:32.074509388 { [122 bytes data]
2026/05/08 23:02:32.074510033 * Connection #0 to host pypi.python.org left intact
2026/05/08 23:02:32.074526308 * Issue another request to this URL: 'https://pypi.org/'
2026/05/08 23:02:32.076689423 * Trying 151.101.0.223:443...
2026/05/08 23:02:32.085100219 * Connected to pypi.org (151.101.0.223) port 443 (#1)
2026/05/08 23:02:32.085393677 * ALPN, offering h2
2026/05/08 23:02:32.085399714 * ALPN, offering http/1.1
2026/05/08 23:02:32.127394208 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:32.127405720 * CApath: /etc/ssl/certs
2026/05/08 23:02:32.127573424 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:32.127581315 } [5 bytes data]
2026/05/08 23:02:32.127609237 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:32.127611352 } [512 bytes data]
2026/05/08 23:02:32.137169847 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:32.137180462 { [5 bytes data]
2026/05/08 23:02:32.137233405 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:32.137234753 { [122 bytes data]
2026/05/08 23:02:32.137363946 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:32.137371341 { [5 bytes data]
2026/05/08 23:02:32.137404583 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.137405737 { [5 bytes data]
2026/05/08 23:02:32.137419638 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:32.137420440 { [19 bytes data]
2026/05/08 23:02:32.137432885 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.137433659 { [5 bytes data]
2026/05/08 23:02:32.137445398 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:32.137446189 { [2856 bytes data]
2026/05/08 23:02:32.138302035 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138309404 { [5 bytes data]
2026/05/08 23:02:32.138340454 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:32.138341521 { [264 bytes data]
2026/05/08 23:02:32.138389235 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138395343 { [5 bytes data]
2026/05/08 23:02:32.138432167 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:32.138433461 { [36 bytes data]
2026/05/08 23:02:32.138466452 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:32.138468806 } [5 bytes data]
2026/05/08 23:02:32.138492240 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:32.138493125 } [1 bytes data]
2026/05/08 23:02:32.138515054 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138516024 } [5 bytes data]
2026/05/08 23:02:32.138528687 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:32.138529397 } [36 bytes data]
2026/05/08 23:02:32.138614780 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:32.138619712 * ALPN, server accepted to use h2
2026/05/08 23:02:32.138640853 * Server certificate:
2026/05/08 23:02:32.138642454 * subject: CN=pypi.org
2026/05/08 23:02:32.138652697 * start date: Dec 28 04:33:08 2025 GMT
2026/05/08 23:02:32.138653688 * expire date: Jan 29 04:33:07 2027 GMT
2026/05/08 23:02:32.138663964 * subjectAltName: host "pypi.org" matched cert's "pypi.org"
2026/05/08 23:02:32.138665398 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:32.138681743 * SSL certificate verify ok.
2026/05/08 23:02:32.138682544 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:32.138697557 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:32.138698262 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:32.138726335 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138727418 } [5 bytes data]
2026/05/08 23:02:32.138740499 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138741229 } [5 bytes data]
2026/05/08 23:02:32.138756491 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138757312 } [5 bytes data]
2026/05/08 23:02:32.138781482 * Using Stream ID: 1 (easy handle 0x55c89bc5e9f0)
2026/05/08 23:02:32.138791967 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138799278 } [5 bytes data]
2026/05/08 23:02:32.138825904 > GET / HTTP/2
2026/05/08 23:02:32.138830635 > Host: pypi.org
2026/05/08 23:02:32.138848917 > user-agent: curl/7.81.0
2026/05/08 23:02:32.138849845 > accept: */*
2026/05/08 23:02:32.138860496 >
2026/05/08 23:02:32.138861130 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.138875709 { [5 bytes data]
2026/05/08 23:02:32.138893563 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:32.138894824 { [193 bytes data]
2026/05/08 23:02:32.147004101 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.147012355 { [5 bytes data]
2026/05/08 23:02:32.147054685 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.147055969 } [5 bytes data]
2026/05/08 23:02:32.148169185 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148174062 { [5 bytes data]
2026/05/08 23:02:32.148252882 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148256938 { [5 bytes data]
2026/05/08 23:02:32.148271298 < HTTP/2 200
2026/05/08 23:02:32.148272084 < content-type: text/html; charset=UTF-8
2026/05/08 23:02:32.148292632 < referrer-policy: origin-when-cross-origin
2026/05/08 23:02:32.148293118 < server: gunicorn
2026/05/08 23:02:32.148315503 < 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=' 'sha256-0POaN8stWYQxhzjKS+/eOfbbJ/u4YHO5ZagJvLpMypo='; 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/05/08 23:02:32.148323327 < etag: "3AFV+oLmQS82reHn7l3ntg"
2026/05/08 23:02:32.148442122 < accept-ranges: bytes
2026/05/08 23:02:32.148443938 < date: Fri, 08 May 2026 23:02:32 GMT
2026/05/08 23:02:32.148458899 < x-served-by: cache-iad-kjyo7100069-IAD, cache-iad-kjyo7100172-IAD, cache-bur-kbur8200095-BUR
2026/05/08 23:02:32.148459865 < x-cache: MISS, HIT, HIT
2026/05/08 23:02:32.148472963 < x-cache-hits: 0, 28, 2
2026/05/08 23:02:32.148473415 < x-timer: S1778281352.143931,VS0,VE0
2026/05/08 23:02:32.148480533 < vary: Accept-Encoding, Cookie
2026/05/08 23:02:32.148481979 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:32.148491467 < x-frame-options: deny
2026/05/08 23:02:32.148491885 < x-xss-protection: 1; mode=block
2026/05/08 23:02:32.148499042 < x-content-type-options: nosniff
2026/05/08 23:02:32.148499556 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:32.148515151 < 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/05/08 23:02:32.148517000 < content-length: 22793
2026/05/08 23:02:32.148563612 <
2026/05/08 23:02:32.148564127 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148571023 { [5 bytes data]
2026/05/08 23:02:32.148571477 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148585525 { [5 bytes data]
2026/05/08 23:02:32.148586293 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148614433 { [5 bytes data]
2026/05/08 23:02:32.148615083 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148621654 { [5 bytes data]
2026/05/08 23:02:32.148622057 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.148628810 { [5 bytes data]
2026/05/08 23:02:32.149587448 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.149593906 { [5 bytes data]
2026/05/08 23:02:32.149619266 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.149621213 { [5 bytes data]
2026/05/08 23:02:32.150937097 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.150945521 { [5 bytes data]
2026/05/08 23:02:32.150975106 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.150976823 { [5 bytes data]
2026/05/08 23:02:32.152306825 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.152312274 { [5 bytes data]
2026/05/08 23:02:32.152340687 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.152342581 { [5 bytes data]
2026/05/08 23:02:32.153640138 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.153646720 { [5 bytes data]
2026/05/08 23:02:32.153672343 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.153673275 { [5 bytes data]
2026/05/08 23:02:32.155009048 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.155014351 { [5 bytes data]
2026/05/08 23:02:32.155167260 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.155173601 { [5 bytes data]
2026/05/08 23:02:32.156362336 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.156368201 { [5 bytes data]
2026/05/08 23:02:32.156465830 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.156470556 { [5 bytes data]
2026/05/08 23:02:32.157727314 * Connection #1 to host pypi.org left intact
2026/05/08 23:02:32.160564918
2026/05/08 23:02:32.160571285 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://files.pythonhosted.org/
2026/05/08 23:02:32.167656019 * Trying 151.101.0.223:443...
2026/05/08 23:02:32.175857211 * Connected to files.pythonhosted.org (151.101.0.223) port 443 (#0)
2026/05/08 23:02:32.177373173 * ALPN, offering h2
2026/05/08 23:02:32.177379597 * ALPN, offering http/1.1
2026/05/08 23:02:32.219334654 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:32.219348361 * CApath: /etc/ssl/certs
2026/05/08 23:02:32.219517544 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:32.219522609 } [5 bytes data]
2026/05/08 23:02:32.219547937 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:32.219549311 } [512 bytes data]
2026/05/08 23:02:32.229296682 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:32.229308085 { [5 bytes data]
2026/05/08 23:02:32.229353888 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:32.229354891 { [122 bytes data]
2026/05/08 23:02:32.229528064 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:32.229534383 { [5 bytes data]
2026/05/08 23:02:32.229555775 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.229557936 { [5 bytes data]
2026/05/08 23:02:32.229570339 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:32.229571026 { [19 bytes data]
2026/05/08 23:02:32.229617262 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.229618432 { [5 bytes data]
2026/05/08 23:02:32.229636283 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:32.229637199 { [2842 bytes data]
2026/05/08 23:02:32.230480599 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230487306 { [5 bytes data]
2026/05/08 23:02:32.230519290 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:32.230520233 { [264 bytes data]
2026/05/08 23:02:32.230555301 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230556977 { [5 bytes data]
2026/05/08 23:02:32.230576924 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:32.230577822 { [36 bytes data]
2026/05/08 23:02:32.230625200 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:32.230643492 } [5 bytes data]
2026/05/08 23:02:32.230644815 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:32.230659475 } [1 bytes data]
2026/05/08 23:02:32.230660339 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230684803 } [5 bytes data]
2026/05/08 23:02:32.230685314 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:32.230692089 } [36 bytes data]
2026/05/08 23:02:32.230754029 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:32.230761218 * ALPN, server accepted to use h2
2026/05/08 23:02:32.230786953 * Server certificate:
2026/05/08 23:02:32.230787813 * subject: CN=*.pythonhosted.org
2026/05/08 23:02:32.230811317 * start date: Dec 8 21:08:03 2025 GMT
2026/05/08 23:02:32.230812195 * expire date: Jan 9 21:08:02 2027 GMT
2026/05/08 23:02:32.230823567 * subjectAltName: host "files.pythonhosted.org" matched cert's "*.pythonhosted.org"
2026/05/08 23:02:32.230825298 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:32.230843824 * SSL certificate verify ok.
2026/05/08 23:02:32.230844638 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:32.230857163 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:32.230858774 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:32.230881252 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230882214 } [5 bytes data]
2026/05/08 23:02:32.230900949 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230902716 } [5 bytes data]
2026/05/08 23:02:32.230925039 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.230930130 } [5 bytes data]
2026/05/08 23:02:32.230989393 * Using Stream ID: 1 (easy handle 0x55f40f4a29f0)
2026/05/08 23:02:32.230994660 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.231027276 } [5 bytes data]
2026/05/08 23:02:32.231028453 > GET / HTTP/2
2026/05/08 23:02:32.231038859 > Host: files.pythonhosted.org
2026/05/08 23:02:32.231039506 > user-agent: curl/7.81.0
2026/05/08 23:02:32.231051013 > accept: */*
2026/05/08 23:02:32.231051714 >
2026/05/08 23:02:32.231061098 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.231061869 { [5 bytes data]
2026/05/08 23:02:32.231122914 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:32.231124863 { [193 bytes data]
2026/05/08 23:02:32.238667074 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.238683632 { [5 bytes data]
2026/05/08 23:02:32.238717077 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:32.238718030 } [5 bytes data]
2026/05/08 23:02:32.239183146 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.239187832 { [5 bytes data]
2026/05/08 23:02:32.241327460 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.241337023 { [5 bytes data]
2026/05/08 23:02:32.241408850 < HTTP/2 200
2026/05/08 23:02:32.241412179 < content-type: text/html
2026/05/08 23:02:32.241425931 < server: Python/3.12 aiohttp/3.13.4
2026/05/08 23:02:32.241427115 < accept-ranges: bytes
2026/05/08 23:02:32.241438119 < date: Fri, 08 May 2026 23:02:32 GMT
2026/05/08 23:02:32.241438912 < age: 13
2026/05/08 23:02:32.241454963 < x-served-by: cache-iad-kiad7000058-IAD, cache-bur-kbur8200087-BUR
2026/05/08 23:02:32.241455764 < x-cache: HIT, HIT
2026/05/08 23:02:32.241469111 < x-cache-hits: 26, 1
2026/05/08 23:02:32.241469798 < x-timer: S1778281352.235578,VS0,VE2
2026/05/08 23:02:32.241481237 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:32.241483047 < x-frame-options: deny
2026/05/08 23:02:32.241497950 < x-xss-protection: 1; mode=block
2026/05/08 23:02:32.241498869 < x-content-type-options: nosniff
2026/05/08 23:02:32.241511627 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:32.241512551 < x-robots-header: noindex
2026/05/08 23:02:32.241536931 < content-length: 1853
2026/05/08 23:02:32.241537740 <
2026/05/08 23:02:32.241553650 { [1031 bytes data]
2026/05/08 23:02:32.241554436 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:32.241566695 { [5 bytes data]
2026/05/08 23:02:32.241568499 * Connection #0 to host files.pythonhosted.org left intact
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/05/08 23:02:32.257908840 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:32.258156207 [connect-session] Job Key: QFDmRbqcyHKn21Qf
2026/05/08 23:02:32.258168571 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:32.258171892 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:32.258176389 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:32.258180259 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:40957 ...
Connected to session server http://127.0.0.1:40957
2026/05/08 23:02:32.375482074 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/06-virtualenv.sh'
2026/05/08 23:02:32.380216780
2026/05/08 23:02:32.380227472 $ /opt/python/3.12.11/bin/python3.12 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.s6rTelcCnQ/testenv
2026/05/08 23:02:35.139170946
2026/05/08 23:02:35.139180055 $ source /opt/rstudio-connect/mnt/tmp/tmp.s6rTelcCnQ/testenv/bin/activate
2026/05/08 23:02:35.140445457
2026/05/08 23:02:35.140452869 $ python --version
2026/05/08 23:02:35.142106218 Python 3.12.11
2026/05/08 23:02:35.142310256
2026/05/08 23:02:35.142314438 $ python -m site
2026/05/08 23:02:35.153076376 sys.path = [
2026/05/08 23:02:35.153083786 '/opt/rstudio-connect/mnt/app',
2026/05/08 23:02:35.153117922 '/opt/python/3.12.11/lib/python312.zip',
2026/05/08 23:02:35.153118821 '/opt/python/3.12.11/lib/python3.12',
2026/05/08 23:02:35.153129409 '/opt/python/3.12.11/lib/python3.12/lib-dynload',
2026/05/08 23:02:35.153130291 '/opt/rstudio-connect/mnt/tmp/tmp.s6rTelcCnQ/testenv/lib/python3.12/site-packages',
2026/05/08 23:02:35.153146198 '/opt/python/3.12.11/lib/python3.12/site-packages',
2026/05/08 23:02:35.153146987 ]
2026/05/08 23:02:35.153158288 USER_BASE: '/opt/rstudio-connect/mnt/tmp/.local' (doesn't exist)
2026/05/08 23:02:35.153159047 USER_SITE: '/opt/rstudio-connect/mnt/tmp/.local/lib/python3.12/site-packages' (doesn't exist)
2026/05/08 23:02:35.153179360 ENABLE_USER_SITE: True
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/05/08 23:02:35.183522474 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:35.183775333 [connect-session] Job Key: Gd48eNWRsMmnwyzl
2026/05/08 23:02:35.183783362 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:35.183787019 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:35.183791056 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:35.183795012 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:46025 ...
Connected to session server http://127.0.0.1:46025
2026/05/08 23:02:35.292576623 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/07-pip.sh'
2026/05/08 23:02:35.296709193
2026/05/08 23:02:35.296717581 $ /opt/python/3.12.11/bin/python3.12 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv
2026/05/08 23:02:37.676749323
2026/05/08 23:02:37.676762660 $ source /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv/bin/activate
2026/05/08 23:02:37.678123138
2026/05/08 23:02:37.678131353 $ python -m pip --version
2026/05/08 23:02:37.832366824 pip 25.0.1 from /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv/lib/python3.12/site-packages/pip (python 3.12)
2026/05/08 23:02:37.857088796
2026/05/08 23:02:37.857097903 $ python -m pip config debug
2026/05/08 23:02:38.014919462 env_var:
2026/05/08 23:02:38.015214289 env:
2026/05/08 23:02:38.015391496 global:
2026/05/08 23:02:38.015580248 /etc/xdg/pip/pip.conf, exists: False
2026/05/08 23:02:38.015750458 /etc/pip.conf, exists: False
2026/05/08 23:02:38.015888971 site:
2026/05/08 23:02:38.016041843 /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv/pip.conf, exists: False
2026/05/08 23:02:38.016174739 user:
2026/05/08 23:02:38.016342403 /opt/rstudio-connect/mnt/tmp/.pip/pip.conf, exists: False
2026/05/08 23:02:38.016521017 /opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf, exists: False
2026/05/08 23:02:38.043403088
2026/05/08 23:02:38.043411776 $ python -m pip config list -v
2026/05/08 23:02:38.199055395 For variant 'global', will try loading '/etc/xdg/pip/pip.conf'
2026/05/08 23:02:38.199378888 For variant 'global', will try loading '/etc/pip.conf'
2026/05/08 23:02:38.199623125 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.pip/pip.conf'
2026/05/08 23:02:38.199863538 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf'
2026/05/08 23:02:38.200100485 For variant 'site', will try loading '/opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv/pip.conf'
2026/05/08 23:02:38.226605005
2026/05/08 23:02:38.226631812 $ python -m pip._vendor.requests.certs
2026/05/08 23:02:38.362352220 <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/05/08 23:02:38.362577748 /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem
2026/05/08 23:02:38.377400244
2026/05/08 23:02:38.377411859 $ python -m pip download -v --no-cache-dir --dest /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV pip
2026/05/08 23:02:38.834271422 Collecting pip
2026/05/08 23:02:38.834648115 Obtaining dependency information for pip from https://files.pythonhosted.org/packages/3a/eb/fea4d1d51c49832120f7f285d07306db3960f423a2612c6057caf3e8196f/pip-26.1.1-py3-none-any.whl.metadata
2026/05/08 23:02:38.880401148 Downloading pip-26.1.1-py3-none-any.whl.metadata (4.6 kB)
2026/05/08 23:02:38.893165365 Downloading pip-26.1.1-py3-none-any.whl (1.8 MB)
2026/05/08 23:02:38.958847562 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 40.2 MB/s eta 0:00:00
2026/05/08 23:02:38.969677099 Saved /opt/rstudio-connect/mnt/tmp/tmp.Lm1yIDdMQV/pip-26.1.1-py3-none-any.whl
2026/05/08 23:02:38.970030350 Successfully downloaded pip
2026/05/08 23:02:39.084350434
2026/05/08 23:02:39.084362660 [notice] A new release of pip is available: 25.0.1 -> 26.1.1
2026/05/08 23:02:39.084411615 [notice] To update, run: pip install --upgrade pip
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/05/08 23:02:39.166879095 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:39.167087930 [connect-session] Job Key: IzpcFXJPPW3ZA1uH
2026/05/08 23:02:39.167097103 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:39.167099715 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:39.167103043 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:39.167105594 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:42719 ...
Connected to session server http://127.0.0.1:42719
2026/05/08 23:02:39.312212943 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/01-python-version.sh'
2026/05/08 23:02:39.317071916
2026/05/08 23:02:39.317082518 $ /opt/python/3.13.9/bin/python3.13 -V
2026/05/08 23:02:39.317129402 Python 3.13.9
Stopped session pings to http://127.0.0.1:42719
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/05/08 23:02:40.737546730 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:40.737748995 [connect-session] Job Key: EE12ZSbcJJzKSBoQ
2026/05/08 23:02:40.737759708 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:40.737763889 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:40.737768368 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:40.737783134 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:44889 ...
Connected to session server http://127.0.0.1:44889
2026/05/08 23:02:40.846680199 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/03-environment.sh'
2026/05/08 23:02:40.851741783
2026/05/08 23:02:40.851753669 $ env
2026/05/08 23:02:40.851787491 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:40.851788657 HOSTNAME=7487772abf07
2026/05/08 23:02:40.851799026 LANG=en_US.UTF-8
2026/05/08 23:02:40.851799573 LANGUAGE=en_US:en
2026/05/08 23:02:40.851808329 LC_ALL=en_US.UTF-8
2026/05/08 23:02:40.851808930 LOGNAME=rstudio-connect
2026/05/08 23:02:40.851819047 MAKEFLAGS=-j1
2026/05/08 23:02:40.851819776 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026/05/08 23:02:40.851832347 PICOTEL_PREFIX=PICOTEL
2026/05/08 23:02:40.851833084 PICOTEL_SDK_DISABLED=true
2026/05/08 23:02:40.851844159 PICOTEL_SERVICE_NAME=posit-connect-python
2026/05/08 23:02:40.851845009 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:40.851857527 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:40.851858700 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:40.851871728 SHLVL=2
2026/05/08 23:02:40.851872452 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:40.851882507 TERM=xterm
2026/05/08 23:02:40.851883387 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:40.851895211 TZ=UTC
2026/05/08 23:02:40.851895943 USERNAME=rstudio-connect
2026/05/08 23:02:40.851906745 USER=rstudio-connect
2026/05/08 23:02:40.851907520 _=/usr/bin/env
2026/05/08 23:02:40.851918357 UV_CONCURRENT_BUILDS=1
Stopped session pings to http://127.0.0.1:44889
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/05/08 23:02:40.864121989 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:40.864331404 [connect-session] Job Key: ZGwxCmPYJK64RAai
2026/05/08 23:02:40.864343702 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:40.864346999 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:40.864350923 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:40.864354573 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:34983 ...
Connected to session server http://127.0.0.1:34983
2026/05/08 23:02:40.971664119 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/04-mounts.sh'
2026/05/08 23:02:40.974888023
2026/05/08 23:02:40.974897672 $ findmnt --notruncate
2026/05/08 23:02:40.976548418 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:40.976563664 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U3U5H
FR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:40.976681512 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:40.976728991 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:40.976730529 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:40.976759537 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:40.976760566 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:40.976777297 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:40.976807260 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:40.976808084 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:40.976837837 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.976840339 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:40.976964817 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:40.977104601 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977165934 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977167394 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977231644 ├─/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/05/08 23:02:40.977322580 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977393417 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/ZGwxCmPYJK64RAai] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977477191 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/python-environments] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:40.977568094 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace1748474532] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:40.977636230 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:40.977746886 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
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/05/08 23:02:40.990092900 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:40.990329213 [connect-session] Job Key: Ftl53E4ryZg39iwz
2026/05/08 23:02:40.990348329 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:40.990350739 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:40.990353584 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:40.990356692 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:44045 ...
Connected to session server http://127.0.0.1:44045
2026/05/08 23:02:41.096229179 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/05-pypi-connectivity.sh'
2026/05/08 23:02:41.099876558
2026/05/08 23:02:41.099886905 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://pypi.python.org/
2026/05/08 23:02:41.106289696 * Trying 151.101.128.223:443...
2026/05/08 23:02:41.114779562 * Connected to pypi.python.org (151.101.128.223) port 443 (#0)
2026/05/08 23:02:41.116256406 * ALPN, offering h2
2026/05/08 23:02:41.116263637 * ALPN, offering http/1.1
2026/05/08 23:02:41.157525376 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:41.157537611 * CApath: /etc/ssl/certs
2026/05/08 23:02:41.157597076 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:41.157598767 } [5 bytes data]
2026/05/08 23:02:41.157609681 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:41.157610521 } [512 bytes data]
2026/05/08 23:02:41.167365317 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:41.167377439 { [5 bytes data]
2026/05/08 23:02:41.167418268 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:41.167424304 { [122 bytes data]
2026/05/08 23:02:41.167603117 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:41.167609140 { [5 bytes data]
2026/05/08 23:02:41.167636255 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.167638539 { [5 bytes data]
2026/05/08 23:02:41.167651123 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:41.167652080 { [19 bytes data]
2026/05/08 23:02:41.167662573 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.167663275 { [5 bytes data]
2026/05/08 23:02:41.167674347 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:41.167675160 { [2860 bytes data]
2026/05/08 23:02:41.168551830 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.168556708 { [5 bytes data]
2026/05/08 23:02:41.168595622 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:41.168596590 { [264 bytes data]
2026/05/08 23:02:41.168636798 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.168645134 { [5 bytes data]
2026/05/08 23:02:41.168682760 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:41.168687432 { [36 bytes data]
2026/05/08 23:02:41.168708426 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:41.168709908 } [5 bytes data]
2026/05/08 23:02:41.168723134 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:41.168725197 } [1 bytes data]
2026/05/08 23:02:41.168744691 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.168753486 } [5 bytes data]
2026/05/08 23:02:41.168769488 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:41.168770328 } [36 bytes data]
2026/05/08 23:02:41.168837338 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:41.168841980 * ALPN, server accepted to use h2
2026/05/08 23:02:41.168864801 * Server certificate:
2026/05/08 23:02:41.168866495 * subject: CN=www.python.org
2026/05/08 23:02:41.168877704 * start date: Jan 13 13:03:46 2026 GMT
2026/05/08 23:02:41.168878631 * expire date: Feb 14 13:03:45 2027 GMT
2026/05/08 23:02:41.168889026 * subjectAltName: host "pypi.python.org" matched cert's "*.python.org"
2026/05/08 23:02:41.168890604 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:41.168909850 * SSL certificate verify ok.
2026/05/08 23:02:41.168911241 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:41.168924615 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:41.168925365 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:41.168964560 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.168966036 } [5 bytes data]
2026/05/08 23:02:41.168982795 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.168983764 } [5 bytes data]
2026/05/08 23:02:41.168999870 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.169000789 } [5 bytes data]
2026/05/08 23:02:41.169037814 * Using Stream ID: 1 (easy handle 0x560e826219f0)
2026/05/08 23:02:41.169038838 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.169047379 } [5 bytes data]
2026/05/08 23:02:41.169058817 > GET / HTTP/2
2026/05/08 23:02:41.169059567 > Host: pypi.python.org
2026/05/08 23:02:41.169073188 > user-agent: curl/7.81.0
2026/05/08 23:02:41.169074035 > accept: */*
2026/05/08 23:02:41.169084722 >
2026/05/08 23:02:41.169086484 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.169098207 { [5 bytes data]
2026/05/08 23:02:41.169127974 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:41.169140753 { [193 bytes data]
2026/05/08 23:02:41.176774551 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.176782456 { [5 bytes data]
2026/05/08 23:02:41.176811851 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.176812977 } [5 bytes data]
2026/05/08 23:02:41.176902831 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.176909435 { [5 bytes data]
2026/05/08 23:02:41.177499870 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.177504480 { [5 bytes data]
2026/05/08 23:02:41.177560467 < HTTP/2 301
2026/05/08 23:02:41.177564445 < server: Varnish
2026/05/08 23:02:41.177577654 < retry-after: 0
2026/05/08 23:02:41.177578383 < location: https://pypi.org/
2026/05/08 23:02:41.177596324 < content-type: text/html; charset=UTF-8
2026/05/08 23:02:41.177597210 < accept-ranges: bytes
2026/05/08 23:02:41.177610256 < date: Fri, 08 May 2026 23:02:41 GMT
2026/05/08 23:02:41.177611088 < x-served-by: cache-bur-kbur8200084-BUR
2026/05/08 23:02:41.177624156 < x-cache: HIT
2026/05/08 23:02:41.177624728 < x-cache-hits: 0
2026/05/08 23:02:41.177637887 < x-timer: S1778281361.173681,VS0,VE0
2026/05/08 23:02:41.177638611 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:41.177655064 < x-frame-options: deny
2026/05/08 23:02:41.177655787 < x-xss-protection: 1; mode=block
2026/05/08 23:02:41.177668332 < x-content-type-options: nosniff
2026/05/08 23:02:41.177669105 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:41.177686179 < 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/05/08 23:02:41.177691011 < content-length: 122
2026/05/08 23:02:41.177762900 <
2026/05/08 23:02:41.177764679 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.177779280 { [5 bytes data]
2026/05/08 23:02:41.177780043 * Ignoring the response-body
2026/05/08 23:02:41.177791732 { [122 bytes data]
2026/05/08 23:02:41.177792617 * Connection #0 to host pypi.python.org left intact
2026/05/08 23:02:41.177805440 * Issue another request to this URL: 'https://pypi.org/'
2026/05/08 23:02:41.179809148 * Trying 151.101.128.223:443...
2026/05/08 23:02:41.187910160 * Connected to pypi.org (151.101.128.223) port 443 (#1)
2026/05/08 23:02:41.188185633 * ALPN, offering h2
2026/05/08 23:02:41.188189121 * ALPN, offering http/1.1
2026/05/08 23:02:41.230032032 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:41.230039950 * CApath: /etc/ssl/certs
2026/05/08 23:02:41.230207042 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:41.230211064 } [5 bytes data]
2026/05/08 23:02:41.230255468 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:41.230257981 } [512 bytes data]
2026/05/08 23:02:41.239573885 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:41.239579793 { [5 bytes data]
2026/05/08 23:02:41.239611000 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:41.239612014 { [122 bytes data]
2026/05/08 23:02:41.239757301 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:41.239762484 { [5 bytes data]
2026/05/08 23:02:41.239785060 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.239786376 { [5 bytes data]
2026/05/08 23:02:41.239804658 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:41.239805516 { [19 bytes data]
2026/05/08 23:02:41.239818255 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.239818951 { [5 bytes data]
2026/05/08 23:02:41.239832076 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:41.239834412 { [2856 bytes data]
2026/05/08 23:02:41.240689755 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.240695099 { [5 bytes data]
2026/05/08 23:02:41.240717617 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:41.240718560 { [264 bytes data]
2026/05/08 23:02:41.240769840 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.240770986 { [5 bytes data]
2026/05/08 23:02:41.240795637 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:41.240804461 { [36 bytes data]
2026/05/08 23:02:41.240834829 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:41.240835802 } [5 bytes data]
2026/05/08 23:02:41.240848522 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:41.240850352 } [1 bytes data]
2026/05/08 23:02:41.240883762 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.240884886 } [5 bytes data]
2026/05/08 23:02:41.240899257 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:41.240900652 } [36 bytes data]
2026/05/08 23:02:41.240979338 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:41.240985488 * ALPN, server accepted to use h2
2026/05/08 23:02:41.241005642 * Server certificate:
2026/05/08 23:02:41.241008616 * subject: CN=pypi.org
2026/05/08 23:02:41.241034877 * start date: Dec 28 04:33:08 2025 GMT
2026/05/08 23:02:41.241036340 * expire date: Jan 29 04:33:07 2027 GMT
2026/05/08 23:02:41.241049664 * subjectAltName: host "pypi.org" matched cert's "pypi.org"
2026/05/08 23:02:41.241051172 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:41.241062857 * SSL certificate verify ok.
2026/05/08 23:02:41.241063375 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:41.241071453 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:41.241071868 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:41.241100253 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.241101779 } [5 bytes data]
2026/05/08 23:02:41.241109326 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.241109733 } [5 bytes data]
2026/05/08 23:02:41.241117008 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.241120870 } [5 bytes data]
2026/05/08 23:02:41.241151866 * Using Stream ID: 1 (easy handle 0x560e826219f0)
2026/05/08 23:02:41.241160342 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.241182222 } [5 bytes data]
2026/05/08 23:02:41.241201680 > GET / HTTP/2
2026/05/08 23:02:41.241207573 > Host: pypi.org
2026/05/08 23:02:41.241219840 > user-agent: curl/7.81.0
2026/05/08 23:02:41.241220733 > accept: */*
2026/05/08 23:02:41.241237684 >
2026/05/08 23:02:41.241238868 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.241284801 { [5 bytes data]
2026/05/08 23:02:41.241308978 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:41.241311286 { [193 bytes data]
2026/05/08 23:02:41.248934987 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.248942149 { [5 bytes data]
2026/05/08 23:02:41.248979625 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.248981838 } [5 bytes data]
2026/05/08 23:02:41.248997518 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.248998431 { [5 bytes data]
2026/05/08 23:02:41.250289810 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250296606 { [5 bytes data]
2026/05/08 23:02:41.250319821 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250332919 { [5 bytes data]
2026/05/08 23:02:41.250380219 < HTTP/2 200
2026/05/08 23:02:41.250384675 < content-type: text/html; charset=UTF-8
2026/05/08 23:02:41.250402511 < referrer-policy: origin-when-cross-origin
2026/05/08 23:02:41.250403272 < server: gunicorn
2026/05/08 23:02:41.250417102 < 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=' 'sha256-0POaN8stWYQxhzjKS+/eOfbbJ/u4YHO5ZagJvLpMypo='; 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/05/08 23:02:41.250426322 < etag: "3AFV+oLmQS82reHn7l3ntg"
2026/05/08 23:02:41.250540953 < accept-ranges: bytes
2026/05/08 23:02:41.250543649 < date: Fri, 08 May 2026 23:02:41 GMT
2026/05/08 23:02:41.250560288 < x-served-by: cache-iad-kjyo7100069-IAD, cache-iad-kjyo7100172-IAD, cache-bur-kbur8200098-BUR
2026/05/08 23:02:41.250561501 < x-cache: MISS, HIT, HIT
2026/05/08 23:02:41.250583545 < x-cache-hits: 0, 28, 1
2026/05/08 23:02:41.250586132 < x-timer: S1778281361.245491,VS0,VE1
2026/05/08 23:02:41.250600990 < vary: Accept-Encoding, Cookie
2026/05/08 23:02:41.250601799 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:41.250615474 < x-frame-options: deny
2026/05/08 23:02:41.250616003 < x-xss-protection: 1; mode=block
2026/05/08 23:02:41.250623545 < x-content-type-options: nosniff
2026/05/08 23:02:41.250623961 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:41.250631534 < 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/05/08 23:02:41.250633186 < content-length: 22793
2026/05/08 23:02:41.250690024 <
2026/05/08 23:02:41.250692305 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250708599 { [5 bytes data]
2026/05/08 23:02:41.250720555 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250741878 { [5 bytes data]
2026/05/08 23:02:41.250742464 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250752266 { [5 bytes data]
2026/05/08 23:02:41.250752740 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250762253 { [5 bytes data]
2026/05/08 23:02:41.250762681 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.250772292 { [5 bytes data]
2026/05/08 23:02:41.251675609 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.251678581 { [5 bytes data]
2026/05/08 23:02:41.251703766 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.251705693 { [5 bytes data]
2026/05/08 23:02:41.253017929 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.253022008 { [5 bytes data]
2026/05/08 23:02:41.253048219 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.253050204 { [5 bytes data]
2026/05/08 23:02:41.254389623 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.254393095 { [5 bytes data]
2026/05/08 23:02:41.254418094 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.254420238 { [5 bytes data]
2026/05/08 23:02:41.255705629 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.255709662 { [5 bytes data]
2026/05/08 23:02:41.255734367 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.255736274 { [5 bytes data]
2026/05/08 23:02:41.257040763 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.257044082 { [5 bytes data]
2026/05/08 23:02:41.257083826 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.257090391 { [5 bytes data]
2026/05/08 23:02:41.258401219 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.258404535 { [5 bytes data]
2026/05/08 23:02:41.258426756 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.258430272 { [5 bytes data]
2026/05/08 23:02:41.259724458 * Connection #1 to host pypi.org left intact
2026/05/08 23:02:41.262720651
2026/05/08 23:02:41.262725133 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://files.pythonhosted.org/
2026/05/08 23:02:41.282051754 * Trying 151.101.128.223:443...
2026/05/08 23:02:41.290289239 * Connected to files.pythonhosted.org (151.101.128.223) port 443 (#0)
2026/05/08 23:02:41.291872530 * ALPN, offering h2
2026/05/08 23:02:41.291879223 * ALPN, offering http/1.1
2026/05/08 23:02:41.332864746 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:41.332876872 * CApath: /etc/ssl/certs
2026/05/08 23:02:41.333046205 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:41.333051873 } [5 bytes data]
2026/05/08 23:02:41.333080843 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:41.333088087 } [512 bytes data]
2026/05/08 23:02:41.342334172 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:41.342342068 { [5 bytes data]
2026/05/08 23:02:41.342384043 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:41.342386755 { [122 bytes data]
2026/05/08 23:02:41.342558839 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:41.342565356 { [5 bytes data]
2026/05/08 23:02:41.342591524 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.342593530 { [5 bytes data]
2026/05/08 23:02:41.342605908 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:41.342606718 { [19 bytes data]
2026/05/08 23:02:41.342619445 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.342620217 { [5 bytes data]
2026/05/08 23:02:41.342632504 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:41.342633199 { [2842 bytes data]
2026/05/08 23:02:41.343479975 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343484348 { [5 bytes data]
2026/05/08 23:02:41.343509486 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:41.343510536 { [264 bytes data]
2026/05/08 23:02:41.343564192 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343565666 { [5 bytes data]
2026/05/08 23:02:41.343589875 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:41.343590719 { [36 bytes data]
2026/05/08 23:02:41.343620729 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:41.343622706 } [5 bytes data]
2026/05/08 23:02:41.343630718 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:41.343641259 } [1 bytes data]
2026/05/08 23:02:41.343677147 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343681623 } [5 bytes data]
2026/05/08 23:02:41.343697245 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:41.343699284 } [36 bytes data]
2026/05/08 23:02:41.343790472 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:41.343795023 * ALPN, server accepted to use h2
2026/05/08 23:02:41.343817806 * Server certificate:
2026/05/08 23:02:41.343818771 * subject: CN=*.pythonhosted.org
2026/05/08 23:02:41.343829827 * start date: Dec 8 21:08:03 2025 GMT
2026/05/08 23:02:41.343830845 * expire date: Jan 9 21:08:02 2027 GMT
2026/05/08 23:02:41.343844370 * subjectAltName: host "files.pythonhosted.org" matched cert's "*.pythonhosted.org"
2026/05/08 23:02:41.343864275 * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2025 Q4
2026/05/08 23:02:41.343898785 * SSL certificate verify ok.
2026/05/08 23:02:41.343899775 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:41.343932579 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:41.343933571 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:41.343950848 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343951638 } [5 bytes data]
2026/05/08 23:02:41.343964923 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343965774 } [5 bytes data]
2026/05/08 23:02:41.343978037 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.343978728 } [5 bytes data]
2026/05/08 23:02:41.343989973 * Using Stream ID: 1 (easy handle 0x55d96ed769f0)
2026/05/08 23:02:41.343990754 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.344004819 } [5 bytes data]
2026/05/08 23:02:41.344015046 > GET / HTTP/2
2026/05/08 23:02:41.344015857 > Host: files.pythonhosted.org
2026/05/08 23:02:41.344025943 > user-agent: curl/7.81.0
2026/05/08 23:02:41.344026641 > accept: */*
2026/05/08 23:02:41.344035750 >
2026/05/08 23:02:41.344037290 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.344051411 { [5 bytes data]
2026/05/08 23:02:41.344052858 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:41.344064926 { [193 bytes data]
2026/05/08 23:02:41.351761152 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.351772573 { [5 bytes data]
2026/05/08 23:02:41.351851539 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:41.351852774 } [5 bytes data]
2026/05/08 23:02:41.351971764 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.351978388 { [5 bytes data]
2026/05/08 23:02:41.352974799 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.352979867 { [5 bytes data]
2026/05/08 23:02:41.353040407 < HTTP/2 200
2026/05/08 23:02:41.353043952 < content-type: text/html
2026/05/08 23:02:41.353057818 < server: Python/3.12 aiohttp/3.13.4
2026/05/08 23:02:41.353058443 < accept-ranges: bytes
2026/05/08 23:02:41.353071019 < date: Fri, 08 May 2026 23:02:41 GMT
2026/05/08 23:02:41.353071873 < age: 23
2026/05/08 23:02:41.353081297 < x-served-by: cache-iad-kiad7000058-IAD, cache-bur-kbur8200073-BUR
2026/05/08 23:02:41.353082816 < x-cache: HIT, HIT
2026/05/08 23:02:41.353093916 < x-cache-hits: 26, 1
2026/05/08 23:02:41.353094567 < x-timer: S1778281361.348272,VS0,VE1
2026/05/08 23:02:41.353105731 < strict-transport-security: max-age=31536000; includeSubDomains; preload
2026/05/08 23:02:41.353106497 < x-frame-options: deny
2026/05/08 23:02:41.353120177 < x-xss-protection: 1; mode=block
2026/05/08 23:02:41.353120683 < x-content-type-options: nosniff
2026/05/08 23:02:41.353134883 < x-permitted-cross-domain-policies: none
2026/05/08 23:02:41.353135483 < x-robots-header: noindex
2026/05/08 23:02:41.353142861 < content-length: 1853
2026/05/08 23:02:41.353143318 <
2026/05/08 23:02:41.353148550 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.353151513 { [5 bytes data]
2026/05/08 23:02:41.353159802 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:41.353160520 { [5 bytes data]
2026/05/08 23:02:41.353173549 * Connection #0 to host files.pythonhosted.org left intact
Stopped session pings to http://127.0.0.1:44045
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/05/08 23:02:41.367570088 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:41.367762972 [connect-session] Job Key: NjHwDqXfygybsBdV
2026/05/08 23:02:41.367770729 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:41.367773159 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:41.367778968 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:41.367782590 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:37669 ...
Connected to session server http://127.0.0.1:37669
2026/05/08 23:02:41.476383548 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/06-virtualenv.sh'
2026/05/08 23:02:41.480484695
2026/05/08 23:02:41.480495077 $ /opt/python/3.13.9/bin/python3.13 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.Vl18ZNZLsS/testenv
2026/05/08 23:02:43.736658983
2026/05/08 23:02:43.736669293 $ source /opt/rstudio-connect/mnt/tmp/tmp.Vl18ZNZLsS/testenv/bin/activate
2026/05/08 23:02:43.737891951
2026/05/08 23:02:43.737897861 $ python --version
2026/05/08 23:02:43.739158959 Python 3.13.9
2026/05/08 23:02:43.739362326
2026/05/08 23:02:43.739367990 $ python -m site
2026/05/08 23:02:43.750907627 sys.path = [
2026/05/08 23:02:43.750917095 '/opt/rstudio-connect/mnt/app',
2026/05/08 23:02:43.750957340 '/opt/python/3.13.9/lib/python313.zip',
2026/05/08 23:02:43.750958336 '/opt/python/3.13.9/lib/python3.13',
2026/05/08 23:02:43.750971678 '/opt/python/3.13.9/lib/python3.13/lib-dynload',
2026/05/08 23:02:43.750972943 '/opt/rstudio-connect/mnt/tmp/tmp.Vl18ZNZLsS/testenv/lib/python3.13/site-packages',
2026/05/08 23:02:43.750990468 '/opt/python/3.13.9/lib/python3.13/site-packages',
2026/05/08 23:02:43.750991206 ]
2026/05/08 23:02:43.751003564 USER_BASE: '/opt/rstudio-connect/mnt/tmp/.local' (doesn't exist)
2026/05/08 23:02:43.751004263 USER_SITE: '/opt/rstudio-connect/mnt/tmp/.local/lib/python3.13/site-packages' (doesn't exist)
2026/05/08 23:02:43.751030618 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/05/08 23:02:43.779700526 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:43.779901778 [connect-session] Job Key: p1QNajSwEFzEJLAS
2026/05/08 23:02:43.779910524 [connect-session] WARNING: Publishing with rsconnect-python or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:43.779912714 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/python/#python-version-matching
2026/05/08 23:02:43.779915916 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:43.779920876 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:41453 ...
Connected to session server http://127.0.0.1:41453
2026/05/08 23:02:43.885115124 Running system check '/opt/rstudio-connect/scripts/system-checks/python-restore-sandbox/07-pip.sh'
2026/05/08 23:02:43.889358926
2026/05/08 23:02:43.889368557 $ /opt/python/3.13.9/bin/python3.13 -m venv --system-site-packages /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv
2026/05/08 23:02:46.118104244
2026/05/08 23:02:46.118117223 $ source /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv/bin/activate
2026/05/08 23:02:46.119083699
2026/05/08 23:02:46.119088193 $ python -m pip --version
2026/05/08 23:02:46.269539226 pip 25.2 from /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv/lib/python3.13/site-packages/pip (python 3.13)
2026/05/08 23:02:46.294704220
2026/05/08 23:02:46.294713239 $ python -m pip config debug
2026/05/08 23:02:46.449849808 env_var:
2026/05/08 23:02:46.450118428 env:
2026/05/08 23:02:46.450278487 global:
2026/05/08 23:02:46.450435788 /etc/xdg/pip/pip.conf, exists: False
2026/05/08 23:02:46.450601771 /etc/pip.conf, exists: False
2026/05/08 23:02:46.450733027 site:
2026/05/08 23:02:46.450883812 /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv/pip.conf, exists: False
2026/05/08 23:02:46.451012069 user:
2026/05/08 23:02:46.451150972 /opt/rstudio-connect/mnt/tmp/.pip/pip.conf, exists: False
2026/05/08 23:02:46.451299632 /opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf, exists: False
2026/05/08 23:02:46.478808045
2026/05/08 23:02:46.478830558 $ python -m pip config list -v
2026/05/08 23:02:46.631927903 For variant 'global', will try loading '/etc/xdg/pip/pip.conf'
2026/05/08 23:02:46.632194152 For variant 'global', will try loading '/etc/pip.conf'
2026/05/08 23:02:46.632733415 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.pip/pip.conf'
2026/05/08 23:02:46.632978823 For variant 'user', will try loading '/opt/rstudio-connect/mnt/tmp/.config/pip/pip.conf'
2026/05/08 23:02:46.633219121 For variant 'site', will try loading '/opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv/pip.conf'
2026/05/08 23:02:46.659700138
2026/05/08 23:02:46.659711934 $ python -m pip._vendor.requests.certs
2026/05/08 23:02:46.797544576 <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/05/08 23:02:46.797631626 /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/testenv/lib/python3.13/site-packages/pip/_vendor/certifi/cacert.pem
2026/05/08 23:02:46.813360062
2026/05/08 23:02:46.813369530 $ python -m pip download -v --no-cache-dir --dest /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD pip
2026/05/08 23:02:47.244011886 Collecting pip
2026/05/08 23:02:47.244358282 Obtaining dependency information for pip from https://files.pythonhosted.org/packages/3a/eb/fea4d1d51c49832120f7f285d07306db3960f423a2612c6057caf3e8196f/pip-26.1.1-py3-none-any.whl.metadata
2026/05/08 23:02:47.276726876 Downloading pip-26.1.1-py3-none-any.whl.metadata (4.6 kB)
2026/05/08 23:02:47.289081502 Downloading pip-26.1.1-py3-none-any.whl (1.8 MB)
2026/05/08 23:02:47.359827989 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 35.0 MB/s 0:00:00
2026/05/08 23:02:47.370212158 Saved /opt/rstudio-connect/mnt/tmp/tmp.xjfRsxQcsD/pip-26.1.1-py3-none-any.whl
2026/05/08 23:02:47.370560409 Successfully downloaded pip
2026/05/08 23:02:47.453824619
2026/05/08 23:02:47.453832377 [notice] A new release of pip is available: 25.2 -> 26.1.1
2026/05/08 23:02:47.453881806 [notice] To update, run: pip install --upgrade pip
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
Removing prior manifest.json to packrat transformation.
Performing manifest.json to packrat transformation.
2026/05/08 23:02:47.529178773 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:47.529395516 [connect-session] Job Key: DDffXrgRBnthgZUE
2026/05/08 23:02:47.529407713 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:47.529410947 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:47.529415102 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:47.529419265 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:42871 ...
Connected to session server http://127.0.0.1:42871
2026/05/08 23:02:47.731453966 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:47.731498752 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/01-R-version.sh
2026/05/08 23:02:47.747643082
2026/05/08 23:02:47.747655610 $ /opt/R/4.4.3/bin/R --version
2026/05/08 23:02:47.747704726 R version 4.4.3 (2025-02-28) -- "Trophy Case"
2026/05/08 23:02:47.747706354 Copyright (C) 2025 The R Foundation for Statistical Computing
2026/05/08 23:02:47.747722943 Platform: x86_64-pc-linux-gnu
2026/05/08 23:02:47.747723685
2026/05/08 23:02:47.747733107 R is free software and comes with ABSOLUTELY NO WARRANTY.
2026/05/08 23:02:47.747733817 You are welcome to redistribute it under the terms of the
2026/05/08 23:02:47.747747498 GNU General Public License versions 2 or 3.
2026/05/08 23:02:47.747748404 For more information about these matters see
2026/05/08 23:02:47.752001916 https://www.gnu.org/licenses/.
Stopped session pings to http://127.0.0.1:42871
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/05/08 23:02:47.764713980 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:47.764907190 [connect-session] Job Key: J9ojzRMnrgdpAJSc
2026/05/08 23:02:47.764915068 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:47.764917634 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:47.764920804 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:47.764923737 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:46087 ...
Connected to session server http://127.0.0.1:46087
2026/05/08 23:02:47.933104980 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:47.933148404 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/02-installed-packages.sh
2026/05/08 23:02:48.122685967
2026/05/08 23:02:48.122700468 $ /opt/R/4.4.3/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")]
2026/05/08 23:02:48.122748343 Package Version LibPath
2026/05/08 23:02:48.122750411 base "base" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122762192 boot "boot" "1.3-31" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122762819 class "class" "7.3-23" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122775204 cluster "cluster" "2.1.8" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122775875 codetools "codetools" "0.2-20" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122787218 compiler "compiler" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122787860 datasets "datasets" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122800117 foreign "foreign" "0.8-88" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122800877 graphics "graphics" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122814407 grDevices "grDevices" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122815042 grid "grid" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122835330 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122835998 lattice "lattice" "0.22-6" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122849877 MASS "MASS" "7.3-64" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122850676 Matrix "Matrix" "1.7-2" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122866452 methods "methods" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122867154 mgcv "mgcv" "1.9-1" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122881346 nlme "nlme" "3.1-167" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122882094 nnet "nnet" "7.3-20" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122896751 parallel "parallel" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122897508 rpart "rpart" "4.1.24" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122915129 spatial "spatial" "7.3-18" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122915768 splines "splines" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122934963 stats "stats" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122935599 stats4 "stats4" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122950740 survival "survival" "3.8-3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122951428 tcltk "tcltk" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.122966541 tools "tools" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:48.127104228 utils "utils" "4.4.3" "/opt/R/4.4.3/lib/R/library"
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/05/08 23:02:48.139385129 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:48.139568028 [connect-session] Job Key: dfOCNvhmo0EouQq9
2026/05/08 23:02:48.139576318 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:48.139578538 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:48.139581491 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:48.139584381 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:41557 ...
Connected to session server http://127.0.0.1:41557
2026/05/08 23:02:48.307050645 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:48.307096287 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/03-options.R
2026/05/08 23:02:48.307766346 $add.smooth
2026/05/08 23:02:48.307773626 [1] TRUE
2026/05/08 23:02:48.307823863
2026/05/08 23:02:48.307825224 $bitmapType
2026/05/08 23:02:48.307847989 [1] "cairo"
2026/05/08 23:02:48.307848947
2026/05/08 23:02:48.307857575 $browser
2026/05/08 23:02:48.307858371 [1] "xdg-open"
2026/05/08 23:02:48.307868377
2026/05/08 23:02:48.307869052 $browserNLdisabled
2026/05/08 23:02:48.307879607 [1] FALSE
2026/05/08 23:02:48.307880310
2026/05/08 23:02:48.307888406 $catch.script.errors
2026/05/08 23:02:48.307891661 [1] FALSE
2026/05/08 23:02:48.307917758
2026/05/08 23:02:48.307918823 $CBoundsCheck
2026/05/08 23:02:48.307928408 [1] FALSE
2026/05/08 23:02:48.307929160
2026/05/08 23:02:48.307937693 $check.bounds
2026/05/08 23:02:48.307938415 [1] FALSE
2026/05/08 23:02:48.307948302
2026/05/08 23:02:48.307949061 $citation.bibtex.max
2026/05/08 23:02:48.307958609 [1] 1
2026/05/08 23:02:48.307959329
2026/05/08 23:02:48.307967559 $continue
2026/05/08 23:02:48.307968175 [1] "+ "
2026/05/08 23:02:48.307977084
2026/05/08 23:02:48.307977789 $contrasts
2026/05/08 23:02:48.307986498 unordered ordered
2026/05/08 23:02:48.307987441 "contr.treatment" "contr.poly"
2026/05/08 23:02:48.307999971
2026/05/08 23:02:48.308000722 $defaultPackages
2026/05/08 23:02:48.308009808 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods"
2026/05/08 23:02:48.308010706
2026/05/08 23:02:48.308023147 $demo.ask
2026/05/08 23:02:48.308023793 [1] "default"
2026/05/08 23:02:48.308035922
2026/05/08 23:02:48.308036619 $deparse.cutoff
2026/05/08 23:02:48.308046713 [1] 60
2026/05/08 23:02:48.308047505
2026/05/08 23:02:48.308055582 $device
2026/05/08 23:02:48.308283901 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf",
2026/05/08 23:02:48.308289968 width, height, onefile, family, title, fonts, version, paper,
2026/05/08 23:02:48.308335835 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats,
2026/05/08 23:02:48.308337078 useKerning, fillOddEven, compress)
2026/05/08 23:02:48.308353832 {
2026/05/08 23:02:48.308354753 initPSandPDFfonts()
2026/05/08 23:02:48.308363235 new <- list()
2026/05/08 23:02:48.308364090 if (!missing(width))
2026/05/08 23:02:48.308373787 new$width <- width
2026/05/08 23:02:48.308374515 if (!missing(height))
2026/05/08 23:02:48.308385372 new$height <- height
2026/05/08 23:02:48.308386051 if (!missing(onefile))
2026/05/08 23:02:48.308397146 new$onefile <- onefile
2026/05/08 23:02:48.308397776 if (!missing(title))
2026/05/08 23:02:48.308421623 new$title <- title
2026/05/08 23:02:48.308422347 if (!missing(fonts))
2026/05/08 23:02:48.308433539 new$fonts <- fonts
2026/05/08 23:02:48.308434168 if (!missing(version))
2026/05/08 23:02:48.308445148 new$version <- version
2026/05/08 23:02:48.308445868 if (!missing(paper))
2026/05/08 23:02:48.308456887 new$paper <- paper
2026/05/08 23:02:48.308458907 if (!missing(encoding))
2026/05/08 23:02:48.308474978 new$encoding <- encoding
2026/05/08 23:02:48.308475788 if (!missing(bg))
2026/05/08 23:02:48.308487713 new$bg <- bg
2026/05/08 23:02:48.308488488 if (!missing(fg))
2026/05/08 23:02:48.308498995 new$fg <- fg
2026/05/08 23:02:48.308501201 if (!missing(pointsize))
2026/05/08 23:02:48.308532254 new$pointsize <- pointsize
2026/05/08 23:02:48.308533162 if (!missing(pagecentre))
2026/05/08 23:02:48.308545075 new$pagecentre <- pagecentre
2026/05/08 23:02:48.308545765 if (!missing(colormodel))
2026/05/08 23:02:48.308557916 new$colormodel <- colormodel
2026/05/08 23:02:48.308558594 if (!missing(useDingbats))
2026/05/08 23:02:48.308570138 new$useDingbats <- useDingbats
2026/05/08 23:02:48.308570849 if (!missing(useKerning))
2026/05/08 23:02:48.308590321 new$useKerning <- useKerning
2026/05/08 23:02:48.308591151 if (!missing(fillOddEven))
2026/05/08 23:02:48.308606135 new$fillOddEven <- fillOddEven
2026/05/08 23:02:48.308607543 if (!missing(compress))
2026/05/08 23:02:48.308621838 new$compress <- compress
2026/05/08 23:02:48.308623100 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv)
2026/05/08 23:02:48.308640201 if (!missing(family) && (inherits(family, "Type1Font") ||
2026/05/08 23:02:48.308641096 inherits(family, "CIDFont"))) {
2026/05/08 23:02:48.308656058 enc <- family$encoding
2026/05/08 23:02:48.308656766 if (inherits(family, "Type1Font") && !is.null(enc) &&
2026/05/08 23:02:48.308670266 enc != "default" && (is.null(old$encoding) || old$encoding ==
2026/05/08 23:02:48.308671155 "default"))
2026/05/08 23:02:48.308685702 old$encoding <- enc
2026/05/08 23:02:48.308686434 family <- family$metrics
2026/05/08 23:02:48.308698664 }
2026/05/08 23:02:48.308699375 if (is.null(old$encoding) || old$encoding == "default")
2026/05/08 23:02:48.308710433 old$encoding <- guessEncoding()
2026/05/08 23:02:48.308711229 if (!missing(family)) {
2026/05/08 23:02:48.308723657 if (length(family) == 4L) {
2026/05/08 23:02:48.308724481 family <- c(family, "Symbol.afm")
2026/05/08 23:02:48.308738474 }
2026/05/08 23:02:48.308739213 else if (length(family) == 5L) {
2026/05/08 23:02:48.308750868 }
2026/05/08 23:02:48.308751663 else if (length(family) == 1L) {
2026/05/08 23:02:48.308763141 pf <- pdfFonts(family)[[1L]]
2026/05/08 23:02:48.308764043 if (is.null(pf))
2026/05/08 23:02:48.308781671 stop(gettextf("unknown family '%s'", family),
2026/05/08 23:02:48.308782754 domain = NA)
2026/05/08 23:02:48.308801239 matchFont(pf, old$encoding)
2026/05/08 23:02:48.308802061 }
2026/05/08 23:02:48.308813288 else stop("invalid 'family' argument")
2026/05/08 23:02:48.308814021 old$family <- family
2026/05/08 23:02:48.308828008 }
2026/05/08 23:02:48.308828855 version <- old$version
2026/05/08 23:02:48.308839763 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7",
2026/05/08 23:02:48.308840764 "2.0")
2026/05/08 23:02:48.308852932 if (version %in% versions)
2026/05/08 23:02:48.308853644 version <- as.integer(strsplit(version, "[.]")[[1L]])
2026/05/08 23:02:48.308868834 else stop("invalid PDF version")
2026/05/08 23:02:48.308869559 onefile <- old$onefile
2026/05/08 23:02:48.308883477 if (!checkIntFormat(file))
2026/05/08 23:02:48.308884212 stop(gettextf("invalid 'file' argument '%s'", file),
2026/05/08 23:02:48.308900058 domain = NA)
2026/05/08 23:02:48.308900907 .External(C_PDF, file, old$paper, old$family, old$encoding,
2026/05/08 23:02:48.308935275 old$bg, old$fg, old$width, old$height, old$pointsize,
2026/05/08 23:02:48.308936351 onefile, old$pagecentre, old$title, old$fonts, version[1L],
2026/05/08 23:02:48.308951348 version[2L], old$colormodel, old$useDingbats, old$useKerning,
2026/05/08 23:02:48.308952279 old$fillOddEven, old$compress)
2026/05/08 23:02:48.308966246 invisible()
2026/05/08 23:02:48.308967011 }
2026/05/08 23:02:48.308975484 <bytecode: 0x55b2634660b0>
2026/05/08 23:02:48.308976106 <environment: namespace:grDevices>
2026/05/08 23:02:48.308988092
2026/05/08 23:02:48.308988783 $device.ask.default
2026/05/08 23:02:48.308998692 [1] FALSE
2026/05/08 23:02:48.308999479
2026/05/08 23:02:48.309008957 $digits
2026/05/08 23:02:48.309009674 [1] 7
2026/05/08 23:02:48.309018072
2026/05/08 23:02:48.309018920 $download.file.extra
2026/05/08 23:02:48.309031092 [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/05/08 23:02:48.309032873
2026/05/08 23:02:48.309071441 $download.file.method
2026/05/08 23:02:48.309072071 [1] "curl"
2026/05/08 23:02:48.309081538
2026/05/08 23:02:48.309082517 $dvipscmd
2026/05/08 23:02:48.309089719 [1] "dvips"
2026/05/08 23:02:48.309090343
2026/05/08 23:02:48.309098776 $echo
2026/05/08 23:02:48.309099395 [1] FALSE
2026/05/08 23:02:48.309106371
2026/05/08 23:02:48.309107019 $editor
2026/05/08 23:02:48.309117826 [1] "vi"
2026/05/08 23:02:48.309118464
2026/05/08 23:02:48.309124878 $encoding
2026/05/08 23:02:48.309125613 [1] "native.enc"
2026/05/08 23:02:48.309133884
2026/05/08 23:02:48.309134492 $example.ask
2026/05/08 23:02:48.309141642 [1] "default"
2026/05/08 23:02:48.309142278
2026/05/08 23:02:48.309150167 $expressions
2026/05/08 23:02:48.309150884 [1] 5000
2026/05/08 23:02:48.309159370
2026/05/08 23:02:48.309160033 $help.search.types
2026/05/08 23:02:48.309169115 [1] "vignette" "demo" "help"
2026/05/08 23:02:48.309169862
2026/05/08 23:02:48.309178833 $help.try.all.packages
2026/05/08 23:02:48.309179447 [1] FALSE
2026/05/08 23:02:48.309187933
2026/05/08 23:02:48.309188553 $HTTPUserAgent
2026/05/08 23:02:48.309196168 [1] "R/4.4.3 (ubuntu-22.04) R (4.4.3 x86_64-pc-linux-gnu x86_64 linux-gnu)"
2026/05/08 23:02:48.309196924
2026/05/08 23:02:48.309217986 $internet.info
2026/05/08 23:02:48.309218863 [1] 2
2026/05/08 23:02:48.309227001
2026/05/08 23:02:48.309227635 $keep.parse.data
2026/05/08 23:02:48.309235598 [1] TRUE
2026/05/08 23:02:48.309236349
2026/05/08 23:02:48.309267345 $keep.parse.data.pkgs
2026/05/08 23:02:48.309268111 [1] FALSE
2026/05/08 23:02:48.309276349
2026/05/08 23:02:48.309276868 $keep.source
2026/05/08 23:02:48.309283637 [1] FALSE
2026/05/08 23:02:48.309284245
2026/05/08 23:02:48.309291022 $keep.source.pkgs
2026/05/08 23:02:48.309291559 [1] FALSE
2026/05/08 23:02:48.309298924
2026/05/08 23:02:48.309299725 $locatorBell
2026/05/08 23:02:48.309306383 [1] TRUE
2026/05/08 23:02:48.309306922
2026/05/08 23:02:48.309313422 $mailer
2026/05/08 23:02:48.309313941 [1] "mailto"
2026/05/08 23:02:48.309335255
2026/05/08 23:02:48.309335932 $matprod
2026/05/08 23:02:48.309343037 [1] "default"
2026/05/08 23:02:48.309343721
2026/05/08 23:02:48.309351803 $max.contour.segments
2026/05/08 23:02:48.309352388 [1] 25000
2026/05/08 23:02:48.309361031
2026/05/08 23:02:48.309361690 $max.print
2026/05/08 23:02:48.309368875 [1] 99999
2026/05/08 23:02:48.309369505
2026/05/08 23:02:48.309376810 $menu.graphics
2026/05/08 23:02:48.309379395 [1] TRUE
2026/05/08 23:02:48.309405451
2026/05/08 23:02:48.309406332 $na.action
2026/05/08 23:02:48.309414764 [1] "na.omit"
2026/05/08 23:02:48.309415511
2026/05/08 23:02:48.309423719 $nwarnings
2026/05/08 23:02:48.309424390 [1] 50
2026/05/08 23:02:48.309432367
2026/05/08 23:02:48.309433102 $OutDec
2026/05/08 23:02:48.309440587 [1] "."
2026/05/08 23:02:48.309441152
2026/05/08 23:02:48.309448264 $packrat.authenticated.downloads.use.renv
2026/05/08 23:02:48.309448930 [1] TRUE
2026/05/08 23:02:48.309469055
2026/05/08 23:02:48.309471387 $packrat.connect.timeout
2026/05/08 23:02:48.309494907 [1] 10
2026/05/08 23:02:48.309495876
2026/05/08 23:02:48.309504573 $packrat.untrusted.packages
2026/05/08 23:02:48.309505397 character(0)
2026/05/08 23:02:48.309517137
2026/05/08 23:02:48.309517812 $packrat.verbose.cache
2026/05/08 23:02:48.309527376 [1] TRUE
2026/05/08 23:02:48.309528178
2026/05/08 23:02:48.309536571 $pager
2026/05/08 23:02:48.309537202 [1] "/opt/R/4.4.3/lib/R/bin/pager"
2026/05/08 23:02:48.309547428
2026/05/08 23:02:48.309548114 $papersize
2026/05/08 23:02:48.309557264 [1] "letter"
2026/05/08 23:02:48.309557965
2026/05/08 23:02:48.309566507 $PCRE_limit_recursion
2026/05/08 23:02:48.309568264 [1] NA
2026/05/08 23:02:48.309581889
2026/05/08 23:02:48.309582746 $PCRE_study
2026/05/08 23:02:48.309591442 [1] FALSE
2026/05/08 23:02:48.309592138
2026/05/08 23:02:48.309600498 $PCRE_use_JIT
2026/05/08 23:02:48.309601172 [1] TRUE
2026/05/08 23:02:48.309610473
2026/05/08 23:02:48.309611285 $pdfviewer
2026/05/08 23:02:48.309620054 [1] "/usr/bin/xdg-open"
2026/05/08 23:02:48.309620807
2026/05/08 23:02:48.309642099 $pkgType
2026/05/08 23:02:48.309643127 [1] "source"
2026/05/08 23:02:48.309652307
2026/05/08 23:02:48.309653062 $printcmd
2026/05/08 23:02:48.309661446 [1] "/usr/bin/lpr"
2026/05/08 23:02:48.309662124
2026/05/08 23:02:48.309670768 $prompt
2026/05/08 23:02:48.309671496 [1] "> "
2026/05/08 23:02:48.309680335
2026/05/08 23:02:48.309681079 $repos
2026/05/08 23:02:48.309689087 CRAN
2026/05/08 23:02:48.309689756 "@CRAN@"
2026/05/08 23:02:48.309698191
2026/05/08 23:02:48.309698917 $rl_word_breaks
2026/05/08 23:02:48.309707783 [1] " \t\n\"\\'`><=%;,|&{()}"
2026/05/08 23:02:48.309708551
2026/05/08 23:02:48.309717805 $scipen
2026/05/08 23:02:48.309718482 [1] 0
2026/05/08 23:02:48.309727115
2026/05/08 23:02:48.309727796 $show.coef.Pvalues
2026/05/08 23:02:48.309737063 [1] TRUE
2026/05/08 23:02:48.309737785
2026/05/08 23:02:48.309745957 $show.error.messages
2026/05/08 23:02:48.309746762 [1] TRUE
2026/05/08 23:02:48.309755667
2026/05/08 23:02:48.309756386 $show.signif.stars
2026/05/08 23:02:48.309764813 [1] TRUE
2026/05/08 23:02:48.309765528
2026/05/08 23:02:48.309773111 $showErrorCalls
2026/05/08 23:02:48.309773884 [1] TRUE
2026/05/08 23:02:48.309783026
2026/05/08 23:02:48.309783587 $showNCalls
2026/05/08 23:02:48.309792393 [1] 50
2026/05/08 23:02:48.309793136
2026/05/08 23:02:48.309800530 $showWarnCalls
2026/05/08 23:02:48.309801233 [1] FALSE
2026/05/08 23:02:48.309809710
2026/05/08 23:02:48.309810375 $str
2026/05/08 23:02:48.309817390 $str$strict.width
2026/05/08 23:02:48.309818131 [1] "no"
2026/05/08 23:02:48.309826848
2026/05/08 23:02:48.309827616 $str$digits.d
2026/05/08 23:02:48.309835173 [1] 3
2026/05/08 23:02:48.309835831
2026/05/08 23:02:48.309842728 $str$vec.len
2026/05/08 23:02:48.309843505 [1] 4
2026/05/08 23:02:48.309851092
2026/05/08 23:02:48.309851749 $str$list.len
2026/05/08 23:02:48.309859537 [1] 99
2026/05/08 23:02:48.309860196
2026/05/08 23:02:48.309866911 $str$deparse.lines
2026/05/08 23:02:48.309867577 NULL
2026/05/08 23:02:48.309875539
2026/05/08 23:02:48.309876130 $str$drop.deparse.attr
2026/05/08 23:02:48.309884500 [1] TRUE
2026/05/08 23:02:48.309885194
2026/05/08 23:02:48.309892274 $str$formatNum
2026/05/08 23:02:48.309892928 function (x, ...)
2026/05/08 23:02:48.309901885 format(x, trim = TRUE, drop0trailing = TRUE, ...)
2026/05/08 23:02:48.309902541 <environment: 0x55b263bc8d88>
2026/05/08 23:02:48.309914773
2026/05/08 23:02:48.309915418
2026/05/08 23:02:48.309922955 $str.dendrogram.last
2026/05/08 23:02:48.309923665 [1] "`"
2026/05/08 23:02:48.309931930
2026/05/08 23:02:48.309932671 $texi2dvi
2026/05/08 23:02:48.309939783 [1] "/usr/bin/texi2dvi"
2026/05/08 23:02:48.309940399
2026/05/08 23:02:48.309948014 $timeout
2026/05/08 23:02:48.309948684 [1] 60
2026/05/08 23:02:48.309955996
2026/05/08 23:02:48.309956717 $ts.eps
2026/05/08 23:02:48.309964118 [1] 1e-05
2026/05/08 23:02:48.309964904
2026/05/08 23:02:48.309972711 $ts.S.compat
2026/05/08 23:02:48.309973452 [1] FALSE
2026/05/08 23:02:48.309981572
2026/05/08 23:02:48.309982246 $unzip
2026/05/08 23:02:48.309989199 [1] "/usr/bin/unzip"
2026/05/08 23:02:48.309989818
2026/05/08 23:02:48.309998248 $useFancyQuotes
2026/05/08 23:02:48.309998852 [1] TRUE
2026/05/08 23:02:48.310006594
2026/05/08 23:02:48.310007234 $verbose
2026/05/08 23:02:48.310013831 [1] FALSE
2026/05/08 23:02:48.310014485
2026/05/08 23:02:48.310021552 $warn
2026/05/08 23:02:48.310022197 [1] 0
2026/05/08 23:02:48.310031183
2026/05/08 23:02:48.310031987 $warning.length
2026/05/08 23:02:48.310038936 [1] 1000
2026/05/08 23:02:48.310039574
2026/05/08 23:02:48.310046495 $warnPartialMatchArgs
2026/05/08 23:02:48.310047178 [1] FALSE
2026/05/08 23:02:48.310055808
2026/05/08 23:02:48.310056418 $warnPartialMatchAttr
2026/05/08 23:02:48.310064643 [1] FALSE
2026/05/08 23:02:48.310065275
2026/05/08 23:02:48.310072343 $warnPartialMatchDollar
2026/05/08 23:02:48.310073072 [1] FALSE
2026/05/08 23:02:48.310081921
2026/05/08 23:02:48.310082652 $width
2026/05/08 23:02:48.310089860 [1] 80
2026/05/08 23:02:48.310090517
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/05/08 23:02:48.326210566 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:48.326407314 [connect-session] Job Key: BzbV2nSZ6V6SLCcm
2026/05/08 23:02:48.326419336 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:48.326422401 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:48.326426650 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:48.326430504 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:43377 ...
Connected to session server http://127.0.0.1:43377
2026/05/08 23:02:48.493579180 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:48.493601132 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/04-environment.sh
2026/05/08 23:02:48.500471266
2026/05/08 23:02:48.500482352 $ env
2026/05/08 23:02:48.500528473 EDITOR=vi
2026/05/08 23:02:48.500529856 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:48.500547914 HOSTNAME=7487772abf07
2026/05/08 23:02:48.500548745 LANG=en_US.UTF-8
2026/05/08 23:02:48.500563467 LANGUAGE=en_US:en
2026/05/08 23:02:48.500564277 LC_ALL=en_US.UTF-8
2026/05/08 23:02:48.500579162 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/05/08 23:02:48.500581390 LN_S=ln -s
2026/05/08 23:02:48.500599047 LOGNAME=rstudio-connect
2026/05/08 23:02:48.500599803 MAKEFLAGS=-j1
2026/05/08 23:02:48.500609376 MAKE=make
2026/05/08 23:02:48.500610077 PAGER=/usr/bin/pager
2026/05/08 23:02:48.500622274 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026/05/08 23:02:48.500623230 POSIT_CONNECT=1
2026/05/08 23:02:48.500644586 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:48.500645412 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:48.500662103 R_ARCH=
2026/05/08 23:02:48.500662943 R_BROWSER=xdg-open
2026/05/08 23:02:48.500671470 R_BZIPCMD=/usr/bin/bzip2
2026/05/08 23:02:48.500671893 R_DOC_DIR=/opt/R/4.4.3/lib/R/doc
2026/05/08 23:02:48.500678729 R_ENVIRON_USER=REDACTED
2026/05/08 23:02:48.500679147 R_GZIPCMD=/usr/bin/gzip
2026/05/08 23:02:48.500686114 R_HOME=/opt/R/4.4.3/lib/R
2026/05/08 23:02:48.500686521 R_INCLUDE_DIR=/opt/R/4.4.3/lib/R/include
2026/05/08 23:02:48.500697306 R_LIBS_SITE=/opt/R/4.4.3/lib/R/site-library
2026/05/08 23:02:48.500698042 R_LIBS_USER=REDACTED
2026/05/08 23:02:48.500709164 R_PACKRAT_CACHE_DIR=/opt/rstudio-connect/mnt/packrat
2026/05/08 23:02:48.500709852 R_PACKRAT_SRC_DIR=/opt/rstudio-connect/mnt/tmp/RtmpfWH58J/packrat-src
2026/05/08 23:02:48.500730294 R_PAPERSIZE=letter
2026/05/08 23:02:48.500732598 R_PDFVIEWER=/usr/bin/xdg-open
2026/05/08 23:02:48.500750085 R_PLATFORM=x86_64-pc-linux-gnu
2026/05/08 23:02:48.500750783 R_PRINTCMD=/usr/bin/lpr
2026/05/08 23:02:48.500760996 R_PROFILE_USER=REDACTED
2026/05/08 23:02:48.500761572 R_RD4PDF=times,inconsolata,hyper
2026/05/08 23:02:48.500779749 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/RtmpfWH58J
2026/05/08 23:02:48.500780924 R_SHARE_DIR=/opt/R/4.4.3/lib/R/share
2026/05/08 23:02:48.500797088 R_STRIP_SHARED_LIB=strip --strip-unneeded
2026/05/08 23:02:48.500798316 R_STRIP_STATIC_LIB=strip --strip-debug
2026/05/08 23:02:48.500817308 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:48.500818246 R_TEXI2DVICMD=/usr/bin/texi2dvi
2026/05/08 23:02:48.500833467 R_UNZIPCMD=/usr/bin/unzip
2026/05/08 23:02:48.500834292 R_ZIPCMD=/usr/bin/zip
2026/05/08 23:02:48.500845551 SED=/usr/bin/sed
2026/05/08 23:02:48.500846711 SHLVL=2
2026/05/08 23:02:48.500855917 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:48.500856542 TAR=/usr/bin/tar
2026/05/08 23:02:48.500873325 TERM=xterm
2026/05/08 23:02:48.500877423 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:48.500904383 TZ=UTC
2026/05/08 23:02:48.500905286 USERNAME=rstudio-connect
2026/05/08 23:02:48.500916211 USER=rstudio-connect
2026/05/08 23:02:48.504677692 _=/usr/bin/env
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/05/08 23:02:48.516835346 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:48.517025112 [connect-session] Job Key: mC91YxYi33lBelqM
2026/05/08 23:02:48.517034737 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:48.517038441 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:48.517043094 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:48.517047126 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:42779 ...
Connected to session server http://127.0.0.1:42779
2026/05/08 23:02:48.686148016 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:48.686188817 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/05-mounts.sh
2026/05/08 23:02:48.692964529
2026/05/08 23:02:48.692976597 $ findmnt --notruncate
2026/05/08 23:02:48.693033877 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:48.693042134 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U3U5H
FR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:48.693112588 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:48.693198829 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:48.693200148 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:48.693222624 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:48.693223576 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:48.693263288 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:48.693295758 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:48.693296812 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:48.693340584 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693343778 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:48.693434121 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:48.693582244 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693690626 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693691532 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693752855 ├─/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/05/08 23:02:48.693765931 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693811728 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/mC91YxYi33lBelqM] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693812463 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/R] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693873614 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/packrat] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:48.693874811 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace1503733585] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:48.693939012 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:48.697509548 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
packrat-restore-sandbox cran-connectivity 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/05/08 23:02:48.710062793 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:48.710293852 [connect-session] Job Key: xE0NDef3gVleG2dM
2026/05/08 23:02:48.710305890 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:48.710309018 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:48.710313460 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:48.710317133 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:42741 ...
Connected to session server http://127.0.0.1:42741
2026/05/08 23:02:48.877485333 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:48.877521217 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/06-cran-connectivity.sh
2026/05/08 23:02:49.149003645
2026/05/08 23:02:49.149014984 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://cran.rstudio.com
2026/05/08 23:02:49.149399154 * Trying 3.163.125.36:443...
2026/05/08 23:02:49.149401430 * Connected to cran.rstudio.com (3.163.125.36) port 443 (#0)
2026/05/08 23:02:49.149418238 * ALPN, offering h2
2026/05/08 23:02:49.149418997 * ALPN, offering http/1.1
2026/05/08 23:02:49.149429061 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:49.149429783 * CApath: /etc/ssl/certs
2026/05/08 23:02:49.149442486 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:49.149443199 } [5 bytes data]
2026/05/08 23:02:49.149456241 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:49.149456907 } [512 bytes data]
2026/05/08 23:02:49.149469690 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.149470504 { [5 bytes data]
2026/05/08 23:02:49.149483419 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:49.149484116 { [122 bytes data]
2026/05/08 23:02:49.149500088 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:49.149500909 { [5 bytes data]
2026/05/08 23:02:49.149516913 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149517575 { [5 bytes data]
2026/05/08 23:02:49.149530518 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:49.149531141 { [19 bytes data]
2026/05/08 23:02:49.149544304 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149545060 { [5 bytes data]
2026/05/08 23:02:49.149557228 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:49.149557896 { [3836 bytes data]
2026/05/08 23:02:49.149575028 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149587649 { [5 bytes data]
2026/05/08 23:02:49.149618839 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:49.149620384 { [264 bytes data]
2026/05/08 23:02:49.149641181 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149654329 { [5 bytes data]
2026/05/08 23:02:49.149655142 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:49.149666124 { [36 bytes data]
2026/05/08 23:02:49.149666852 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:49.149676806 } [5 bytes data]
2026/05/08 23:02:49.149677334 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:49.149687700 } [1 bytes data]
2026/05/08 23:02:49.149688924 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149704902 } [5 bytes data]
2026/05/08 23:02:49.149705736 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:49.149719267 } [36 bytes data]
2026/05/08 23:02:49.149719926 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:49.149734757 * ALPN, server accepted to use h2
2026/05/08 23:02:49.149735512 * Server certificate:
2026/05/08 23:02:49.149748920 * subject: CN=cran.rstudio.com
2026/05/08 23:02:49.149749702 * start date: May 1 00:00:00 2026 GMT
2026/05/08 23:02:49.149763723 * expire date: Nov 14 23:59:59 2026 GMT
2026/05/08 23:02:49.149764410 * subjectAltName: host "cran.rstudio.com" matched cert's "cran.rstudio.com"
2026/05/08 23:02:49.149783077 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M01
2026/05/08 23:02:49.149783737 * SSL certificate verify ok.
2026/05/08 23:02:49.149798631 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:49.149799299 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:49.149816612 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:49.149817407 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149835554 } [5 bytes data]
2026/05/08 23:02:49.149836283 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149849700 } [5 bytes data]
2026/05/08 23:02:49.149850346 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149873993 } [5 bytes data]
2026/05/08 23:02:49.149875083 * Using Stream ID: 1 (easy handle 0x565318ea09f0)
2026/05/08 23:02:49.149888427 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149889164 } [5 bytes data]
2026/05/08 23:02:49.149903439 > GET / HTTP/2
2026/05/08 23:02:49.149904394 > Host: cran.rstudio.com
2026/05/08 23:02:49.149915907 > user-agent: curl/7.81.0
2026/05/08 23:02:49.149916559 > accept: */*
2026/05/08 23:02:49.149927228 >
2026/05/08 23:02:49.149927898 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149940842 { [5 bytes data]
2026/05/08 23:02:49.149941683 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:49.149955609 { [157 bytes data]
2026/05/08 23:02:49.149956327 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149970647 { [5 bytes data]
2026/05/08 23:02:49.149971322 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:49.149986377 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.149987176 } [5 bytes data]
2026/05/08 23:02:49.150000331 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.150001059 { [5 bytes data]
2026/05/08 23:02:49.150015618 < HTTP/2 200
2026/05/08 23:02:49.150016437 < content-type: text/html
2026/05/08 23:02:49.150028058 < content-length: 866
2026/05/08 23:02:49.150028752 < server: Apache/2.4.65 (Unix)
2026/05/08 23:02:49.150041790 < last-modified: Mon, 04 Mar 2024 19:47:19 GMT
2026/05/08 23:02:49.150042541 < accept-ranges: bytes
2026/05/08 23:02:49.150055673 < date: Fri, 08 May 2026 23:02:49 GMT
2026/05/08 23:02:49.150056351 < expires: Fri, 08 May 2026 23:28:00 GMT
2026/05/08 23:02:49.150069477 < cache-control: max-age=1800
2026/05/08 23:02:49.150070115 < etag: "362-612dafe59ac63"
2026/05/08 23:02:49.150083086 < x-cache: Hit from cloudfront
2026/05/08 23:02:49.150083827 < via: 1.1 0ef7f058b6800e1f8ea404e35f354a4e.cloudfront.net (CloudFront)
2026/05/08 23:02:49.150102217 < x-amz-cf-pop: LAX54-P1
2026/05/08 23:02:49.150102946 < x-amz-cf-id: Y9H0JvD80rr-drsyzB_HIcPbJwsY3UzXeveC7vDm8uOl6IvciZ1uxQ==
2026/05/08 23:02:49.150121560 < age: 289
2026/05/08 23:02:49.150122274 <
2026/05/08 23:02:49.150132373 { [866 bytes data]
2026/05/08 23:02:49.150133168 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.150146519 { [5 bytes data]
2026/05/08 23:02:49.153291058 * Connection #0 to host cran.rstudio.com left intact
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/05/08 23:02:49.165372672 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:49.165534278 [connect-session] Job Key: EtHw7aRGUywA0MPr
2026/05/08 23:02:49.165541469 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:49.165543611 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:49.165546546 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:49.165549566 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:44053 ...
Connected to session server http://127.0.0.1:44053
2026/05/08 23:02:49.332226258 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:49.332267565 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository
2026/05/08 23:02:49.669596663
2026/05/08 23:02:49.669606074 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest
2026/05/08 23:02:49.669674860 * Trying 16.59.197.170:443...
2026/05/08 23:02:49.669676040 * Connected to packagemanager.posit.co (16.59.197.170) port 443 (#0)
2026/05/08 23:02:49.669688079 * ALPN, offering h2
2026/05/08 23:02:49.669688798 * ALPN, offering http/1.1
2026/05/08 23:02:49.669709491 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:49.669710323 * CApath: /etc/ssl/certs
2026/05/08 23:02:49.669724924 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669725704 } [5 bytes data]
2026/05/08 23:02:49.669743023 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:49.669743645 } [512 bytes data]
2026/05/08 23:02:49.669751172 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669751724 { [5 bytes data]
2026/05/08 23:02:49.669758805 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:49.669759208 { [104 bytes data]
2026/05/08 23:02:49.669765931 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669766336 { [5 bytes data]
2026/05/08 23:02:49.669773222 * TLSv1.2 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:49.669773747 { [3880 bytes data]
2026/05/08 23:02:49.669783121 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669783895 { [5 bytes data]
2026/05/08 23:02:49.669795507 * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
2026/05/08 23:02:49.669796276 { [333 bytes data]
2026/05/08 23:02:49.669815973 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669817809 { [5 bytes data]
2026/05/08 23:02:49.669833305 * TLSv1.2 (IN), TLS handshake, Server finished (14):
2026/05/08 23:02:49.669834122 { [4 bytes data]
2026/05/08 23:02:49.669850743 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:49.669854472 } [5 bytes data]
2026/05/08 23:02:49.669876753 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
2026/05/08 23:02:49.669877580 } [70 bytes data]
2026/05/08 23:02:49.669894199 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:49.669895548 } [5 bytes data]
2026/05/08 23:02:49.670268988 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:49.670271335 } [1 bytes data]
2026/05/08 23:02:49.670285995 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:49.670289687 } [5 bytes data]
2026/05/08 23:02:49.670315847 * TLSv1.2 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:49.670318891 } [16 bytes data]
2026/05/08 23:02:49.670347066 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:49.670347948 { [5 bytes data]
2026/05/08 23:02:49.670359245 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:49.670360050 { [5 bytes data]
2026/05/08 23:02:49.670380813 * TLSv1.2 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:49.670385949 { [16 bytes data]
2026/05/08 23:02:49.670414572 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
2026/05/08 23:02:49.670418419 * ALPN, server accepted to use h2
2026/05/08 23:02:49.670438007 * Server certificate:
2026/05/08 23:02:49.670438745 * subject: CN=p3m.posit.it
2026/05/08 23:02:49.670452126 * start date: Feb 24 00:00:00 2026 GMT
2026/05/08 23:02:49.670452597 * expire date: Sep 9 23:59:59 2026 GMT
2026/05/08 23:02:49.670459294 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co"
2026/05/08 23:02:49.670459934 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04
2026/05/08 23:02:49.670470603 * SSL certificate verify ok.
2026/05/08 23:02:49.670471246 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:49.670478609 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:49.670479045 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:49.670500102 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670501059 } [5 bytes data]
2026/05/08 23:02:49.670517503 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670517946 } [5 bytes data]
2026/05/08 23:02:49.670524496 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670524904 } [5 bytes data]
2026/05/08 23:02:49.670531578 * Using Stream ID: 1 (easy handle 0x564525e309f0)
2026/05/08 23:02:49.670532004 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670540187 } [5 bytes data]
2026/05/08 23:02:49.670540622 > GET /cran/__linux__/jammy/latest HTTP/2
2026/05/08 23:02:49.670547191 > Host: packagemanager.posit.co
2026/05/08 23:02:49.670547638 > user-agent: curl/7.81.0
2026/05/08 23:02:49.670554255 > accept: */*
2026/05/08 23:02:49.670554688 >
2026/05/08 23:02:49.670559742 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670560151 { [5 bytes data]
2026/05/08 23:02:49.670566827 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:49.670567559 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670583678 } [5 bytes data]
2026/05/08 23:02:49.670584350 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670599388 { [5 bytes data]
2026/05/08 23:02:49.670599794 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670606175 { [5 bytes data]
2026/05/08 23:02:49.670606596 < HTTP/2 400
2026/05/08 23:02:49.670611846 < date: Fri, 08 May 2026 23:02:49 GMT
2026/05/08 23:02:49.670612256 < content-type: text/plain; charset=utf-8
2026/05/08 23:02:49.670619664 < content-length: 94
2026/05/08 23:02:49.670620094 < cache-control: max-age=3600
2026/05/08 23:02:49.670626632 < request-id: bf83f591-8c99-45a1-a692-f049d16db4c0
2026/05/08 23:02:49.670627057 < server: Posit Package Manager v2026.04.2
2026/05/08 23:02:49.670635950 < x-content-type-options: nosniff
2026/05/08 23:02:49.670636376 < x-frame-options: DENY
2026/05/08 23:02:49.670643319 < x-repository-type: RSPM
2026/05/08 23:02:49.670643764 <
2026/05/08 23:02:49.670652129 { [94 bytes data]
2026/05/08 23:02:49.670652946 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:49.670665069 { [5 bytes data]
2026/05/08 23:02:49.674779767 * Connection #0 to host packagemanager.posit.co left intact
Stopped session pings to http://127.0.0.1:44053
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/05/08 23:02:49.687480207 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:49.687665812 [connect-session] Job Key: zkd3usIJEWrzc6KL
2026/05/08 23:02:49.687788484 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:49.687790720 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:49.687793659 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:49.687796611 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:40417 ...
Connected to session server http://127.0.0.1:40417
2026/05/08 23:02:49.858565007 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:49.858581743 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository
2026/05/08 23:02:50.183738997
2026/05/08 23:02:50.183750565 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest
2026/05/08 23:02:50.183820817 * Trying 18.221.101.59:443...
2026/05/08 23:02:50.183823188 * Connected to packagemanager.posit.co (18.221.101.59) port 443 (#0)
2026/05/08 23:02:50.183835000 * ALPN, offering h2
2026/05/08 23:02:50.183835653 * ALPN, offering http/1.1
2026/05/08 23:02:50.183845344 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:50.183846350 * CApath: /etc/ssl/certs
2026/05/08 23:02:50.183857995 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:50.183859213 } [5 bytes data]
2026/05/08 23:02:50.183873864 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:50.183874662 } [512 bytes data]
2026/05/08 23:02:50.183891117 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:50.183891874 { [5 bytes data]
2026/05/08 23:02:50.183906913 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:50.183907666 { [104 bytes data]
2026/05/08 23:02:50.183920404 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:50.183921160 { [5 bytes data]
2026/05/08 23:02:50.183935548 * TLSv1.2 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:50.183936318 { [3880 bytes data]
2026/05/08 23:02:50.183948916 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:50.183949551 { [5 bytes data]
2026/05/08 23:02:50.183970300 * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
2026/05/08 23:02:50.183980317 { [333 bytes data]
2026/05/08 23:02:50.184012605 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:50.184013676 { [5 bytes data]
2026/05/08 23:02:50.184035511 * TLSv1.2 (IN), TLS handshake, Server finished (14):
2026/05/08 23:02:50.184051281 { [4 bytes data]
2026/05/08 23:02:50.184052175 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:50.184062449 } [5 bytes data]
2026/05/08 23:02:50.184063103 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
2026/05/08 23:02:50.184073194 } [70 bytes data]
2026/05/08 23:02:50.184073775 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:50.184083536 } [5 bytes data]
2026/05/08 23:02:50.184084659 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:50.184099739 } [1 bytes data]
2026/05/08 23:02:50.184100493 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:50.184112703 } [5 bytes data]
2026/05/08 23:02:50.184113305 * TLSv1.2 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:50.184124330 } [16 bytes data]
2026/05/08 23:02:50.184124996 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:50.184136315 { [5 bytes data]
2026/05/08 23:02:50.184137032 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:50.184165288 { [5 bytes data]
2026/05/08 23:02:50.184166130 * TLSv1.2 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:50.184181675 { [16 bytes data]
2026/05/08 23:02:50.184182324 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
2026/05/08 23:02:50.184194999 * ALPN, server accepted to use h2
2026/05/08 23:02:50.184195765 * Server certificate:
2026/05/08 23:02:50.184207822 * subject: CN=p3m.posit.it
2026/05/08 23:02:50.184208572 * start date: Feb 24 00:00:00 2026 GMT
2026/05/08 23:02:50.184253358 * expire date: Sep 9 23:59:59 2026 GMT
2026/05/08 23:02:50.184255277 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co"
2026/05/08 23:02:50.184282109 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04
2026/05/08 23:02:50.184282913 * SSL certificate verify ok.
2026/05/08 23:02:50.184296093 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:50.184296897 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:50.184311865 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:50.184312716 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184339776 } [5 bytes data]
2026/05/08 23:02:50.184340654 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184351459 } [5 bytes data]
2026/05/08 23:02:50.184352185 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184363798 } [5 bytes data]
2026/05/08 23:02:50.184364506 * Using Stream ID: 1 (easy handle 0x55c325ea79f0)
2026/05/08 23:02:50.184375485 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184376291 } [5 bytes data]
2026/05/08 23:02:50.184387576 > GET /cran/__linux__/jammy/latest HTTP/2
2026/05/08 23:02:50.184388396 > Host: packagemanager.posit.co
2026/05/08 23:02:50.184403130 > user-agent: curl/7.81.0
2026/05/08 23:02:50.184403896 > accept: */*
2026/05/08 23:02:50.184414582 >
2026/05/08 23:02:50.184415419 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184427421 { [5 bytes data]
2026/05/08 23:02:50.184428232 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:50.184442141 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184442919 } [5 bytes data]
2026/05/08 23:02:50.184455510 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184456222 { [5 bytes data]
2026/05/08 23:02:50.184467788 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184468566 { [5 bytes data]
2026/05/08 23:02:50.184481553 < HTTP/2 400
2026/05/08 23:02:50.184482347 < date: Fri, 08 May 2026 23:02:50 GMT
2026/05/08 23:02:50.184493359 < content-type: text/plain; charset=utf-8
2026/05/08 23:02:50.184494146 < content-length: 94
2026/05/08 23:02:50.184507322 < cache-control: max-age=3600
2026/05/08 23:02:50.184508066 < request-id: 690014ba-d4c3-43d8-a8a6-d89b7cb961a7
2026/05/08 23:02:50.184521941 < server: Posit Package Manager v2026.04.2
2026/05/08 23:02:50.184522766 < x-content-type-options: nosniff
2026/05/08 23:02:50.184537290 < x-frame-options: DENY
2026/05/08 23:02:50.184538072 < x-repository-type: RSPM
2026/05/08 23:02:50.184550596 <
2026/05/08 23:02:50.184551447 { [94 bytes data]
2026/05/08 23:02:50.184560797 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:50.184561693 { [5 bytes data]
2026/05/08 23:02:50.190212337 * Connection #0 to host packagemanager.posit.co left intact
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/05/08 23:02:50.202216877 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:50.202403374 [connect-session] Job Key: qZrv7Xa2phGo7e4o
2026/05/08 23:02:50.202413051 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:50.202415265 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:50.202418061 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:50.202421333 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:38861 ...
Connected to session server http://127.0.0.1:38861
2026/05/08 23:02:50.389272181 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:50.389329113 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/01-R-version.sh
2026/05/08 23:02:50.405629601
2026/05/08 23:02:50.405641319 $ /opt/R/4.5.2/bin/R --version
2026/05/08 23:02:50.405689194 R version 4.5.2 (2025-10-31) -- "[Not] Part in a Rumble"
2026/05/08 23:02:50.405690440 Copyright (C) 2025 The R Foundation for Statistical Computing
2026/05/08 23:02:50.405706667 Platform: x86_64-pc-linux-gnu
2026/05/08 23:02:50.405710504
2026/05/08 23:02:50.405723094 R is free software and comes with ABSOLUTELY NO WARRANTY.
2026/05/08 23:02:50.405724075 You are welcome to redistribute it under the terms of the
2026/05/08 23:02:50.405738835 GNU General Public License versions 2 or 3.
2026/05/08 23:02:50.405739614 For more information about these matters see
2026/05/08 23:02:50.409975957 https://www.gnu.org/licenses/.
Stopped session pings to http://127.0.0.1:38861
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/05/08 23:02:50.421864867 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:50.422061953 [connect-session] Job Key: yNpw0p1w0734tXRZ
2026/05/08 23:02:50.422071677 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:50.422074721 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:50.422078888 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:50.422082558 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:41459 ...
Connected to session server http://127.0.0.1:41459
2026/05/08 23:02:50.592931220 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:50.592973938 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/02-installed-packages.sh
2026/05/08 23:02:50.791237288
2026/05/08 23:02:50.791262259 $ /opt/R/4.5.2/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")]
2026/05/08 23:02:50.791327409 Package Version LibPath
2026/05/08 23:02:50.791332448 base "base" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791358578 bit "bit" "4.6.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791359426 bit64 "bit64" "4.8.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791370475 blob "blob" "1.3.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791371149 boot "boot" "1.3-32" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791382388 class "class" "7.3-23" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791383096 cli "cli" "3.6.6" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791400264 cluster "cluster" "2.1.8.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791401257 codetools "codetools" "0.2-20" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791415447 compiler "compiler" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791416169 datasets "datasets" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791432474 DBI "DBI" "1.3.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791433519 foreign "foreign" "0.8-90" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791450636 glue "glue" "1.8.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791451380 graphics "graphics" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791472074 grDevices "grDevices" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791476224 grid "grid" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791497902 hms "hms" "1.1.4" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791498659 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791512292 lattice "lattice" "0.22-7" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791513057 lifecycle "lifecycle" "1.0.5" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791527071 MASS "MASS" "7.3-65" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791527919 Matrix "Matrix" "1.7-4" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791540579 methods "methods" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791541353 mgcv "mgcv" "1.9-3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791557285 nlme "nlme" "3.1-168" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791557801 nnet "nnet" "7.3-20" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791566115 odbc "odbc" "1.6.4.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791566573 parallel "parallel" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791574749 pkgconfig "pkgconfig" "2.0.3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791575258 Rcpp "Rcpp" "1.1.1-1.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791584033 rlang "rlang" "1.2.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791584474 rpart "rpart" "4.1.24" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791592238 spatial "spatial" "7.3-18" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791592676 splines "splines" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791600548 stats "stats" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791600994 stats4 "stats4" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791609017 survival "survival" "3.8-3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791609438 tcltk "tcltk" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791631250 tools "tools" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.791632138 utils "utils" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:50.795456818 vctrs "vctrs" "0.7.3" "/opt/R/4.5.2/lib/R/library"
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/05/08 23:02:50.807610626 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:50.807794444 [connect-session] Job Key: LGKXOKTkNnFEMcIM
2026/05/08 23:02:50.807804214 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:50.807807445 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:50.807811304 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:50.807815559 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:45297 ...
Connected to session server http://127.0.0.1:45297
2026/05/08 23:02:50.990271694 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:50.990299474 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/03-options.R
2026/05/08 23:02:50.990732722 $add.smooth
2026/05/08 23:02:50.990737006 [1] TRUE
2026/05/08 23:02:50.990759074
2026/05/08 23:02:50.990760098 $bitmapType
2026/05/08 23:02:50.990768347 [1] "cairo"
2026/05/08 23:02:50.990769000
2026/05/08 23:02:50.990775951 $browser
2026/05/08 23:02:50.990776526 [1] "xdg-open"
2026/05/08 23:02:50.990783780
2026/05/08 23:02:50.990784348 $browserNLdisabled
2026/05/08 23:02:50.990792567 [1] FALSE
2026/05/08 23:02:50.990793219
2026/05/08 23:02:50.990800708 $catch.script.errors
2026/05/08 23:02:50.990801389 [1] FALSE
2026/05/08 23:02:50.990810677
2026/05/08 23:02:50.990811348 $CBoundsCheck
2026/05/08 23:02:50.990819623 [1] FALSE
2026/05/08 23:02:50.990820368
2026/05/08 23:02:50.990828985 $check.bounds
2026/05/08 23:02:50.990829580 [1] FALSE
2026/05/08 23:02:50.990839282
2026/05/08 23:02:50.990840966 $citation.bibtex.max
2026/05/08 23:02:50.990850412 [1] 1
2026/05/08 23:02:50.990851244
2026/05/08 23:02:50.990859407 $continue
2026/05/08 23:02:50.990860238 [1] "+ "
2026/05/08 23:02:50.990869038
2026/05/08 23:02:50.990869811 $contrasts
2026/05/08 23:02:50.990878320 unordered ordered
2026/05/08 23:02:50.990879285 "contr.treatment" "contr.poly"
2026/05/08 23:02:50.990892366
2026/05/08 23:02:50.990893097 $defaultPackages
2026/05/08 23:02:50.990902532 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods"
2026/05/08 23:02:50.990903542
2026/05/08 23:02:50.990916264 $demo.ask
2026/05/08 23:02:50.990917035 [1] "default"
2026/05/08 23:02:50.990926065
2026/05/08 23:02:50.990926812 $deparse.cutoff
2026/05/08 23:02:50.990935559 [1] 60
2026/05/08 23:02:50.990943255
2026/05/08 23:02:50.990955119 $device
2026/05/08 23:02:50.991197281 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf",
2026/05/08 23:02:50.991201645 width, height, onefile, family, title, fonts, version, paper,
2026/05/08 23:02:50.991233341 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats,
2026/05/08 23:02:50.991234290 useKerning, fillOddEven, compress, timestamp, producer, author)
2026/05/08 23:02:50.991270634 {
2026/05/08 23:02:50.991271585 initPSandPDFfonts()
2026/05/08 23:02:50.991278850 new <- list()
2026/05/08 23:02:50.991281034 if (!missing(width))
2026/05/08 23:02:50.991290131 new$width <- width
2026/05/08 23:02:50.991291504 if (!missing(height))
2026/05/08 23:02:50.991304848 new$height <- height
2026/05/08 23:02:50.991305651 if (!missing(onefile))
2026/05/08 23:02:50.991316150 new$onefile <- onefile
2026/05/08 23:02:50.991316867 if (!missing(title))
2026/05/08 23:02:50.991327765 new$title <- title
2026/05/08 23:02:50.991328545 if (!missing(fonts))
2026/05/08 23:02:50.991339490 new$fonts <- fonts
2026/05/08 23:02:50.991339953 if (!missing(version))
2026/05/08 23:02:50.991346025 new$version <- version
2026/05/08 23:02:50.991346418 if (!missing(paper))
2026/05/08 23:02:50.991352344 new$paper <- paper
2026/05/08 23:02:50.991352824 if (!missing(encoding))
2026/05/08 23:02:50.991364138 new$encoding <- encoding
2026/05/08 23:02:50.991364830 if (!missing(bg))
2026/05/08 23:02:50.991375227 new$bg <- bg
2026/05/08 23:02:50.991376051 if (!missing(fg))
2026/05/08 23:02:50.991386746 new$fg <- fg
2026/05/08 23:02:50.991387734 if (!missing(pointsize))
2026/05/08 23:02:50.991396486 new$pointsize <- pointsize
2026/05/08 23:02:50.991397134 if (!missing(pagecentre))
2026/05/08 23:02:50.991403705 new$pagecentre <- pagecentre
2026/05/08 23:02:50.991404101 if (!missing(colormodel))
2026/05/08 23:02:50.991410445 new$colormodel <- colormodel
2026/05/08 23:02:50.991410836 if (!missing(useDingbats))
2026/05/08 23:02:50.991417341 new$useDingbats <- useDingbats
2026/05/08 23:02:50.991417740 if (!missing(useKerning))
2026/05/08 23:02:50.991449193 new$useKerning <- useKerning
2026/05/08 23:02:50.991450219 if (!missing(fillOddEven))
2026/05/08 23:02:50.991464881 new$fillOddEven <- fillOddEven
2026/05/08 23:02:50.991465636 if (!missing(compress))
2026/05/08 23:02:50.991476606 new$compress <- compress
2026/05/08 23:02:50.991477286 if (!missing(timestamp))
2026/05/08 23:02:50.991489040 new$timestamp <- timestamp
2026/05/08 23:02:50.991490247 if (!missing(producer))
2026/05/08 23:02:50.991520534 new$producer <- producer
2026/05/08 23:02:50.991521192 if (!missing(author))
2026/05/08 23:02:50.991528006 new$author <- author
2026/05/08 23:02:50.991528438 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv)
2026/05/08 23:02:50.991536649 if (!missing(family) && (inherits(family, "Type1Font") ||
2026/05/08 23:02:50.991537287 inherits(family, "CIDFont"))) {
2026/05/08 23:02:50.991555667 enc <- family$encoding
2026/05/08 23:02:50.991556372 if (inherits(family, "Type1Font") && !is.null(enc) &&
2026/05/08 23:02:50.991565304 enc != "default" && (is.null(old$encoding) || old$encoding ==
2026/05/08 23:02:50.991565766 "default"))
2026/05/08 23:02:50.991573221 old$encoding <- enc
2026/05/08 23:02:50.991573620 family <- family$metrics
2026/05/08 23:02:50.991579846 }
2026/05/08 23:02:50.991580283 if (is.null(old$encoding) || old$encoding == "default")
2026/05/08 23:02:50.991592099 old$encoding <- guessEncoding()
2026/05/08 23:02:50.991592860 if (!missing(family)) {
2026/05/08 23:02:50.991604155 if (length(family) == 4L) {
2026/05/08 23:02:50.991606026 family <- c(family, "Symbol.afm")
2026/05/08 23:02:50.991617809 }
2026/05/08 23:02:50.991618499 else if (length(family) == 5L) {
2026/05/08 23:02:50.991631442 }
2026/05/08 23:02:50.991631900 else if (length(family) == 1L) {
2026/05/08 23:02:50.991637518 pf <- pdfFonts(family)[[1L]]
2026/05/08 23:02:50.991637920 if (is.null(pf))
2026/05/08 23:02:50.991644422 stop(gettextf("unknown family '%s'", family),
2026/05/08 23:02:50.991644848 domain = NA)
2026/05/08 23:02:50.991651944 matchFont(pf, old$encoding)
2026/05/08 23:02:50.991652479 }
2026/05/08 23:02:50.991658392 else stop("invalid 'family' argument")
2026/05/08 23:02:50.991658882 old$family <- family
2026/05/08 23:02:50.991670165 }
2026/05/08 23:02:50.991670927 version <- old$version
2026/05/08 23:02:50.991680063 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7",
2026/05/08 23:02:50.991680941 "2.0")
2026/05/08 23:02:50.991688492 if (version %in% versions)
2026/05/08 23:02:50.991688908 version <- as.integer(strsplit(version, "[.]")[[1L]])
2026/05/08 23:02:50.991696429 else stop("invalid PDF version")
2026/05/08 23:02:50.991696805 onefile <- old$onefile
2026/05/08 23:02:50.991703294 if (!checkIntFormat(file))
2026/05/08 23:02:50.991703705 stop(gettextf("invalid 'file' argument '%s'", file),
2026/05/08 23:02:50.991711215 domain = NA)
2026/05/08 23:02:50.991711674 .External(C_PDF, file, old$paper, old$family, old$encoding,
2026/05/08 23:02:50.991719145 old$bg, old$fg, old$width, old$height, old$pointsize,
2026/05/08 23:02:50.991719558 onefile, old$pagecentre, old$title, old$fonts, version[1L],
2026/05/08 23:02:50.991728262 version[2L], old$colormodel, old$useDingbats, old$useKerning,
2026/05/08 23:02:50.991728682 old$fillOddEven, old$compress, old$timestamp, old$producer,
2026/05/08 23:02:50.991739457 old$author)
2026/05/08 23:02:50.991749120 invisible()
2026/05/08 23:02:50.991749823 }
2026/05/08 23:02:50.991768052 <bytecode: 0x563675fccbb0>
2026/05/08 23:02:50.991768712 <environment: namespace:grDevices>
2026/05/08 23:02:50.991780448
2026/05/08 23:02:50.991781173 $device.ask.default
2026/05/08 23:02:50.991794401 [1] FALSE
2026/05/08 23:02:50.991795168
2026/05/08 23:02:50.991804030 $digits
2026/05/08 23:02:50.991804779 [1] 7
2026/05/08 23:02:50.991813024
2026/05/08 23:02:50.991813661 $download.file.extra
2026/05/08 23:02:50.991824834 [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/05/08 23:02:50.991826869
2026/05/08 23:02:50.991843189 $download.file.method
2026/05/08 23:02:50.991852740 [1] "curl"
2026/05/08 23:02:50.991863364
2026/05/08 23:02:50.991863891 $dvipscmd
2026/05/08 23:02:50.991875906 [1] "dvips"
2026/05/08 23:02:50.991876317
2026/05/08 23:02:50.991880978 $echo
2026/05/08 23:02:50.991881378 [1] FALSE
2026/05/08 23:02:50.991886172
2026/05/08 23:02:50.991886562 $editor
2026/05/08 23:02:50.991891086 [1] "vi"
2026/05/08 23:02:50.991891484
2026/05/08 23:02:50.991896096 $encoding
2026/05/08 23:02:50.991896522 [1] "native.enc"
2026/05/08 23:02:50.991906054
2026/05/08 23:02:50.991906804 $example.ask
2026/05/08 23:02:50.991914937 [1] "default"
2026/05/08 23:02:50.991915674
2026/05/08 23:02:50.991923269 $expressions
2026/05/08 23:02:50.991923693 [1] 5000
2026/05/08 23:02:50.991928701
2026/05/08 23:02:50.991929100 $help.search.types
2026/05/08 23:02:50.991934166 [1] "vignette" "demo" "help"
2026/05/08 23:02:50.991934607
2026/05/08 23:02:50.991940899 $help.try.all.packages
2026/05/08 23:02:50.991941328 [1] FALSE
2026/05/08 23:02:50.991947011
2026/05/08 23:02:50.991947410 $HTTPUserAgent
2026/05/08 23:02:50.991952401 [1] "R/4.5.2 (ubuntu-22.04) R (4.5.2 x86_64-pc-linux-gnu x86_64 linux-gnu)"
2026/05/08 23:02:50.991952846
2026/05/08 23:02:50.991959826 $internet.info
2026/05/08 23:02:50.991960221 [1] 2
2026/05/08 23:02:50.991965213
2026/05/08 23:02:50.991965777 $keep.parse.data
2026/05/08 23:02:50.991975107 [1] TRUE
2026/05/08 23:02:50.991976149
2026/05/08 23:02:50.991985504 $keep.parse.data.pkgs
2026/05/08 23:02:50.991986272 [1] FALSE
2026/05/08 23:02:50.991996196
2026/05/08 23:02:50.991996952 $keep.source
2026/05/08 23:02:50.992017719 [1] FALSE
2026/05/08 23:02:50.992018400
2026/05/08 23:02:50.992023337 $keep.source.pkgs
2026/05/08 23:02:50.992024156 [1] FALSE
2026/05/08 23:02:50.992029634
2026/05/08 23:02:50.992030299 $locatorBell
2026/05/08 23:02:50.992039827 [1] TRUE
2026/05/08 23:02:50.992040482
2026/05/08 23:02:50.992049970 $mailer
2026/05/08 23:02:50.992050655 [1] "mailto"
2026/05/08 23:02:50.992062336
2026/05/08 23:02:50.992063064 $matprod
2026/05/08 23:02:50.992079204 [1] "default"
2026/05/08 23:02:50.992079651
2026/05/08 23:02:50.992084648 $max.contour.segments
2026/05/08 23:02:50.992085129 [1] 25000
2026/05/08 23:02:50.992090940
2026/05/08 23:02:50.992091346 $max.print
2026/05/08 23:02:50.992095955 [1] 99999
2026/05/08 23:02:50.992096346
2026/05/08 23:02:50.992100850 $menu.graphics
2026/05/08 23:02:50.992101272 [1] TRUE
2026/05/08 23:02:50.992109758
2026/05/08 23:02:50.992110322 $na.action
2026/05/08 23:02:50.992117737 [1] "na.omit"
2026/05/08 23:02:50.992118450
2026/05/08 23:02:50.992126476 $nwarnings
2026/05/08 23:02:50.992127238 [1] 50
2026/05/08 23:02:50.992141787
2026/05/08 23:02:50.992144945 $OutDec
2026/05/08 23:02:50.992162622 [1] "."
2026/05/08 23:02:50.992163395
2026/05/08 23:02:50.992171859 $packrat.authenticated.downloads.use.renv
2026/05/08 23:02:50.992172731 [1] TRUE
2026/05/08 23:02:50.992185929
2026/05/08 23:02:50.992186594 $packrat.connect.timeout
2026/05/08 23:02:50.992197675 [1] 10
2026/05/08 23:02:50.992198403
2026/05/08 23:02:50.992206676 $packrat.untrusted.packages
2026/05/08 23:02:50.992207429 character(0)
2026/05/08 23:02:50.992219257
2026/05/08 23:02:50.992219916 $packrat.verbose.cache
2026/05/08 23:02:50.992229987 [1] TRUE
2026/05/08 23:02:50.992230701
2026/05/08 23:02:50.992254423 $pager
2026/05/08 23:02:50.992255344 [1] "/opt/R/4.5.2/lib/R/bin/pager"
2026/05/08 23:02:50.992275149
2026/05/08 23:02:50.992279241 $papersize
2026/05/08 23:02:50.992291938 [1] "letter"
2026/05/08 23:02:50.992292811
2026/05/08 23:02:50.992308750 $PCRE_limit_recursion
2026/05/08 23:02:50.992309490 [1] NA
2026/05/08 23:02:50.992319973
2026/05/08 23:02:50.992320682 $PCRE_study
2026/05/08 23:02:50.992329835 [1] FALSE
2026/05/08 23:02:50.992330639
2026/05/08 23:02:50.992342015 $PCRE_use_JIT
2026/05/08 23:02:50.992343856 [1] TRUE
2026/05/08 23:02:50.992356146
2026/05/08 23:02:50.992356732 $pdfviewer
2026/05/08 23:02:50.992364023 [1] "/usr/bin/xdg-open"
2026/05/08 23:02:50.992364759
2026/05/08 23:02:50.992372752 $pkgType
2026/05/08 23:02:50.992375302 [1] "source"
2026/05/08 23:02:50.992393042
2026/05/08 23:02:50.992393881 $printcmd
2026/05/08 23:02:50.992401640 [1] "/usr/bin/lpr"
2026/05/08 23:02:50.992402236
2026/05/08 23:02:50.992435514 $prompt
2026/05/08 23:02:50.992436437 [1] "> "
2026/05/08 23:02:50.992445988
2026/05/08 23:02:50.992447412 $repos
2026/05/08 23:02:50.992458336 CRAN
2026/05/08 23:02:50.992459008 "@CRAN@"
2026/05/08 23:02:50.992468073
2026/05/08 23:02:50.992468791 $rl_word_breaks
2026/05/08 23:02:50.992477878 [1] " \t\n\"\\'`><=%;,|&{()}"
2026/05/08 23:02:50.992478665
2026/05/08 23:02:50.992487930 $scipen
2026/05/08 23:02:50.992488686 [1] 0
2026/05/08 23:02:50.992497759
2026/05/08 23:02:50.992498534 $show.coef.Pvalues
2026/05/08 23:02:50.992508021 [1] TRUE
2026/05/08 23:02:50.992508768
2026/05/08 23:02:50.992517127 $show.error.messages
2026/05/08 23:02:50.992517798 [1] TRUE
2026/05/08 23:02:50.992528101
2026/05/08 23:02:50.992528759 $show.signif.stars
2026/05/08 23:02:50.992538366 [1] TRUE
2026/05/08 23:02:50.992539098
2026/05/08 23:02:50.992547495 $showErrorCalls
2026/05/08 23:02:50.992548178 [1] TRUE
2026/05/08 23:02:50.992557558
2026/05/08 23:02:50.992558266 $showNCalls
2026/05/08 23:02:50.992567252 [1] 50
2026/05/08 23:02:50.992567945
2026/05/08 23:02:50.992575852 $showWarnCalls
2026/05/08 23:02:50.992576670 [1] FALSE
2026/05/08 23:02:50.992586691
2026/05/08 23:02:50.992587453 $str
2026/05/08 23:02:50.992595742 $str$strict.width
2026/05/08 23:02:50.992596427 [1] "no"
2026/05/08 23:02:50.992606205
2026/05/08 23:02:50.992606908 $str$digits.d
2026/05/08 23:02:50.992618896 [1] 3
2026/05/08 23:02:50.992619686
2026/05/08 23:02:50.992627759 $str$vec.len
2026/05/08 23:02:50.992628494 [1] 4
2026/05/08 23:02:50.992637497
2026/05/08 23:02:50.992638270 $str$list.len
2026/05/08 23:02:50.992647318 [1] 99
2026/05/08 23:02:50.992648089
2026/05/08 23:02:50.992655900 $str$deparse.lines
2026/05/08 23:02:50.992656629 NULL
2026/05/08 23:02:50.992666560
2026/05/08 23:02:50.992667249 $str$drop.deparse.attr
2026/05/08 23:02:50.992677077 [1] TRUE
2026/05/08 23:02:50.992677942
2026/05/08 23:02:50.992686275 $str$formatNum
2026/05/08 23:02:50.992687074 function (x, ...)
2026/05/08 23:02:50.992697548 format(x, trim = TRUE, drop0trailing = TRUE, ...)
2026/05/08 23:02:50.992698419 <environment: 0x56367683ff68>
2026/05/08 23:02:50.992713086
2026/05/08 23:02:50.992713896
2026/05/08 23:02:50.992721708 $str.dendrogram.last
2026/05/08 23:02:50.992722394 [1] "`"
2026/05/08 23:02:50.992737638
2026/05/08 23:02:50.992738419 $texi2dvi
2026/05/08 23:02:50.992747176 [1] "/usr/bin/texi2dvi"
2026/05/08 23:02:50.992747835
2026/05/08 23:02:50.992757478 $timeout
2026/05/08 23:02:50.992758251 [1] 60
2026/05/08 23:02:50.992766986
2026/05/08 23:02:50.992767655 $ts.eps
2026/05/08 23:02:50.992774378 [1] 1e-05
2026/05/08 23:02:50.992774989
2026/05/08 23:02:50.992781628 $ts.S.compat
2026/05/08 23:02:50.992782236 [1] FALSE
2026/05/08 23:02:50.992790325
2026/05/08 23:02:50.992790987 $unzip
2026/05/08 23:02:50.992798894 [1] "/usr/bin/unzip"
2026/05/08 23:02:50.992799643
2026/05/08 23:02:50.992808888 $useFancyQuotes
2026/05/08 23:02:50.992809561 [1] TRUE
2026/05/08 23:02:50.992819616
2026/05/08 23:02:50.992820331 $verbose
2026/05/08 23:02:50.992829085 [1] FALSE
2026/05/08 23:02:50.992829761
2026/05/08 23:02:50.992838273 $warn
2026/05/08 23:02:50.992839113 [1] 0
2026/05/08 23:02:50.992847728
2026/05/08 23:02:50.992848488 $warning.length
2026/05/08 23:02:50.992857636 [1] 1000
2026/05/08 23:02:50.992858341
2026/05/08 23:02:50.992866429 $warnPartialMatchArgs
2026/05/08 23:02:50.992867090 [1] FALSE
2026/05/08 23:02:50.992881105
2026/05/08 23:02:50.992881831 $warnPartialMatchAttr
2026/05/08 23:02:50.992891711 [1] FALSE
2026/05/08 23:02:50.992892357
2026/05/08 23:02:50.992900846 $warnPartialMatchDollar
2026/05/08 23:02:50.992901742 [1] FALSE
2026/05/08 23:02:50.992911002
2026/05/08 23:02:50.992911692 $width
2026/05/08 23:02:50.992919801 [1] 80
2026/05/08 23:02:50.992920547
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/05/08 23:02:51.009067829 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:51.009287968 [connect-session] Job Key: PrmljuPu11iFld78
2026/05/08 23:02:51.009300327 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:51.009304556 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:51.009309417 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:51.009313492 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:45909 ...
Connected to session server http://127.0.0.1:45909
2026/05/08 23:02:51.180922515 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:51.180961900 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/04-environment.sh
2026/05/08 23:02:51.187642401
2026/05/08 23:02:51.187652976 $ env
2026/05/08 23:02:51.187697068 EDITOR=vi
2026/05/08 23:02:51.187697951 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:51.187707803 HOSTNAME=7487772abf07
2026/05/08 23:02:51.187708443 LANG=en_US.UTF-8
2026/05/08 23:02:51.187717525 LANGUAGE=en_US:en
2026/05/08 23:02:51.187718141 LC_ALL=en_US.UTF-8
2026/05/08 23:02:51.187727305 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/05/08 23:02:51.187732886 LN_S=ln -s
2026/05/08 23:02:51.187748822 LOGNAME=rstudio-connect
2026/05/08 23:02:51.187749636 MAKEFLAGS=-j1
2026/05/08 23:02:51.187760350 MAKE=make
2026/05/08 23:02:51.187761133 PAGER=/usr/bin/pager
2026/05/08 23:02:51.187784013 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026/05/08 23:02:51.187792082 POSIT_CONNECT=1
2026/05/08 23:02:51.187820379 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:51.187821422 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:51.187833089 R_ARCH=
2026/05/08 23:02:51.187833565 R_BROWSER=xdg-open
2026/05/08 23:02:51.187839804 R_BZIPCMD=/usr/bin/bzip2
2026/05/08 23:02:51.187840207 R_DOC_DIR=/opt/R/4.5.2/lib/R/doc
2026/05/08 23:02:51.187847795 R_ENVIRON_USER=REDACTED
2026/05/08 23:02:51.187848206 R_GZIPCMD=/usr/bin/gzip
2026/05/08 23:02:51.187863132 R_HOME=/opt/R/4.5.2/lib/R
2026/05/08 23:02:51.187864981 R_INCLUDE_DIR=/opt/R/4.5.2/lib/R/include
2026/05/08 23:02:51.187878584 R_LIBS_SITE=/opt/R/4.5.2/lib/R/site-library
2026/05/08 23:02:51.187879153 R_LIBS_USER=REDACTED
2026/05/08 23:02:51.187886488 R_PACKRAT_CACHE_DIR=/opt/rstudio-connect/mnt/packrat
2026/05/08 23:02:51.187887124 R_PACKRAT_SRC_DIR=/opt/rstudio-connect/mnt/tmp/Rtmp8lB7m3/packrat-src
2026/05/08 23:02:51.187897851 R_PAPERSIZE=letter
2026/05/08 23:02:51.187898290 R_PDFVIEWER=/usr/bin/xdg-open
2026/05/08 23:02:51.187905329 R_PLATFORM=x86_64-pc-linux-gnu
2026/05/08 23:02:51.187905779 R_PRINTCMD=/usr/bin/lpr
2026/05/08 23:02:51.187912479 R_PROFILE_USER=REDACTED
2026/05/08 23:02:51.187912904 R_RD4PDF=times,inconsolata,hyper
2026/05/08 23:02:51.187922769 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/Rtmp8lB7m3
2026/05/08 23:02:51.187923579 R_SHARE_DIR=/opt/R/4.5.2/lib/R/share
2026/05/08 23:02:51.187939778 R_STRIP_SHARED_LIB=strip --strip-unneeded
2026/05/08 23:02:51.187943922 R_STRIP_STATIC_LIB=strip --strip-debug
2026/05/08 23:02:51.187958938 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:51.187962202 R_TEXI2DVICMD=/usr/bin/texi2dvi
2026/05/08 23:02:51.187978746 R_UNZIPCMD=/usr/bin/unzip
2026/05/08 23:02:51.187980765 R_ZIPCMD=/usr/bin/zip
2026/05/08 23:02:51.188010664 SED=/usr/bin/sed
2026/05/08 23:02:51.188011725 SHLVL=2
2026/05/08 23:02:51.188020807 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:51.188021529 TAR=/usr/bin/tar
2026/05/08 23:02:51.188036269 TERM=xterm
2026/05/08 23:02:51.188037067 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:51.188049122 TZ=UTC
2026/05/08 23:02:51.188049883 USERNAME=rstudio-connect
2026/05/08 23:02:51.188060901 USER=rstudio-connect
2026/05/08 23:02:51.191464091 _=/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/05/08 23:02:51.203453028 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:51.203640213 [connect-session] Job Key: w0zga060aCNIHJAH
2026/05/08 23:02:51.203656472 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:51.203658711 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:51.203661821 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:51.203665510 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:35939 ...
Connected to session server http://127.0.0.1:35939
2026/05/08 23:02:51.374108095 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:51.374147462 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/05-mounts.sh
2026/05/08 23:02:51.381045824
2026/05/08 23:02:51.381055610 $ findmnt --notruncate
2026/05/08 23:02:51.381116175 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:51.381121643 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U3U5H
FR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:51.381216019 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:51.381216920 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:51.381238143 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:51.381239038 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:51.381293930 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:51.381294791 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:51.381319824 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:51.381320621 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:51.381366311 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381369615 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:51.381406736 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l
/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:51.381578514 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381679213 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381680568 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381726340 ├─/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/05/08 23:02:51.381729304 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/apps/0/0] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381768464 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/w0zga060aCNIHJAH] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381769464 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/R] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381807925 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/packrat] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:51.381808764 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace2114153281] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:51.381902312 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:51.385316848 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/overlay2/l/U
3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
packrat-restore-sandbox cran-connectivity 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/05/08 23:02:51.397540913 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:51.397722995 [connect-session] Job Key: CCx4eUYXBuw6Qmly
2026/05/08 23:02:51.397732717 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:51.397736213 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:51.397740310 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:51.397743865 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:39763 ...
Connected to session server http://127.0.0.1:39763
2026/05/08 23:02:51.567225266 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:51.567261569 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/06-cran-connectivity.sh
2026/05/08 23:02:51.665967133
2026/05/08 23:02:51.665978440 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://cran.rstudio.com
2026/05/08 23:02:51.666066015 * Trying 3.163.125.119:443...
2026/05/08 23:02:51.666067257 * Connected to cran.rstudio.com (3.163.125.119) port 443 (#0)
2026/05/08 23:02:51.666086641 * ALPN, offering h2
2026/05/08 23:02:51.666087296 * ALPN, offering http/1.1
2026/05/08 23:02:51.666103642 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:51.666104413 * CApath: /etc/ssl/certs
2026/05/08 23:02:51.666117565 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:51.666118276 } [5 bytes data]
2026/05/08 23:02:51.666153677 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:51.666164984 } [512 bytes data]
2026/05/08 23:02:51.666200826 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:51.666201841 { [5 bytes data]
2026/05/08 23:02:51.666238581 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:51.666250361 { [122 bytes data]
2026/05/08 23:02:51.666272498 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:51.666274881 { [5 bytes data]
2026/05/08 23:02:51.666292016 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666292830 { [5 bytes data]
2026/05/08 23:02:51.666327632 * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
2026/05/08 23:02:51.666328441 { [19 bytes data]
2026/05/08 23:02:51.666343158 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666343865 { [5 bytes data]
2026/05/08 23:02:51.666353910 * TLSv1.3 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:51.666354750 { [3836 bytes data]
2026/05/08 23:02:51.666364284 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666365025 { [5 bytes data]
2026/05/08 23:02:51.666374716 * TLSv1.3 (IN), TLS handshake, CERT verify (15):
2026/05/08 23:02:51.666375446 { [264 bytes data]
2026/05/08 23:02:51.666393870 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666394600 { [5 bytes data]
2026/05/08 23:02:51.666407441 * TLSv1.3 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:51.666408808 { [36 bytes data]
2026/05/08 23:02:51.666426442 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:51.666427145 } [5 bytes data]
2026/05/08 23:02:51.666438546 * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:51.666439301 } [1 bytes data]
2026/05/08 23:02:51.666452806 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666453499 } [5 bytes data]
2026/05/08 23:02:51.666465807 * TLSv1.3 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:51.666466545 } [36 bytes data]
2026/05/08 23:02:51.666502083 * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256
2026/05/08 23:02:51.666502968 * ALPN, server accepted to use h2
2026/05/08 23:02:51.666517957 * Server certificate:
2026/05/08 23:02:51.666518661 * subject: CN=cran.rstudio.com
2026/05/08 23:02:51.666530733 * start date: May 1 00:00:00 2026 GMT
2026/05/08 23:02:51.666531524 * expire date: Nov 14 23:59:59 2026 GMT
2026/05/08 23:02:51.666543677 * subjectAltName: host "cran.rstudio.com" matched cert's "cran.rstudio.com"
2026/05/08 23:02:51.666544526 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M01
2026/05/08 23:02:51.666569319 * SSL certificate verify ok.
2026/05/08 23:02:51.666570128 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:51.666584546 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:51.666585219 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:51.666603204 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666604040 } [5 bytes data]
2026/05/08 23:02:51.666616567 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666617267 } [5 bytes data]
2026/05/08 23:02:51.666640731 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666641515 } [5 bytes data]
2026/05/08 23:02:51.666661333 * Using Stream ID: 1 (easy handle 0x55f04e2c19f0)
2026/05/08 23:02:51.666664099 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666689650 } [5 bytes data]
2026/05/08 23:02:51.666690797 > GET / HTTP/2
2026/05/08 23:02:51.666701808 > Host: cran.rstudio.com
2026/05/08 23:02:51.666702666 > user-agent: curl/7.81.0
2026/05/08 23:02:51.666715028 > accept: */*
2026/05/08 23:02:51.666715743 >
2026/05/08 23:02:51.666739722 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666740571 { [5 bytes data]
2026/05/08 23:02:51.666754083 * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
2026/05/08 23:02:51.666755432 { [157 bytes data]
2026/05/08 23:02:51.666770276 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666770951 { [5 bytes data]
2026/05/08 23:02:51.666783294 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:51.666784046 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666800346 } [5 bytes data]
2026/05/08 23:02:51.666808004 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666820740 { [5 bytes data]
2026/05/08 23:02:51.666821551 < HTTP/2 200
2026/05/08 23:02:51.666831757 < content-type: text/html
2026/05/08 23:02:51.666832493 < content-length: 866
2026/05/08 23:02:51.666844599 < server: Apache/2.4.65 (Unix)
2026/05/08 23:02:51.666845237 < last-modified: Mon, 04 Mar 2024 19:47:19 GMT
2026/05/08 23:02:51.666858087 < accept-ranges: bytes
2026/05/08 23:02:51.666858719 < date: Fri, 08 May 2026 23:02:49 GMT
2026/05/08 23:02:51.666870904 < expires: Fri, 08 May 2026 23:28:00 GMT
2026/05/08 23:02:51.666871719 < cache-control: max-age=1800
2026/05/08 23:02:51.666884220 < etag: "362-612dafe59ac63"
2026/05/08 23:02:51.666884949 < x-cache: Hit from cloudfront
2026/05/08 23:02:51.666897205 < via: 1.1 38a0e16b658298ce8c2511f8b7f3dc4a.cloudfront.net (CloudFront)
2026/05/08 23:02:51.666898197 < x-amz-cf-pop: LAX54-P1
2026/05/08 23:02:51.666914111 < x-amz-cf-id: hRfJ4or6AiXcOEHFonaXKuVtQNKeFhWpv2f73QAFPPpTZFAuxpeBrw==
2026/05/08 23:02:51.666914839 < age: 291
2026/05/08 23:02:51.666929747 <
2026/05/08 23:02:51.666930417 { [866 bytes data]
2026/05/08 23:02:51.666939859 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:51.666940492 { [5 bytes data]
2026/05/08 23:02:51.670122675 * Connection #0 to host cran.rstudio.com left intact
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/05/08 23:02:51.682536690 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:51.682719852 [connect-session] Job Key: qyzmJNtgFqXuPy8R
2026/05/08 23:02:51.682737415 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:51.682739965 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:51.682743274 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:51.682746573 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:41949 ...
Connected to session server http://127.0.0.1:41949
2026/05/08 23:02:51.852059945 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:51.852109383 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository
2026/05/08 23:02:52.153312578
2026/05/08 23:02:52.153325035 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest
2026/05/08 23:02:52.153383459 * Trying 18.217.247.19:443...
2026/05/08 23:02:52.153384711 * Connected to packagemanager.posit.co (18.217.247.19) port 443 (#0)
2026/05/08 23:02:52.153398322 * ALPN, offering h2
2026/05/08 23:02:52.153399059 * ALPN, offering http/1.1
2026/05/08 23:02:52.153409975 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:52.153410724 * CApath: /etc/ssl/certs
2026/05/08 23:02:52.153421845 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153422722 } [5 bytes data]
2026/05/08 23:02:52.153441261 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:52.153442076 } [512 bytes data]
2026/05/08 23:02:52.153465620 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153466435 { [5 bytes data]
2026/05/08 23:02:52.153480462 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:52.153481113 { [104 bytes data]
2026/05/08 23:02:52.153492073 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153492798 { [5 bytes data]
2026/05/08 23:02:52.153502989 * TLSv1.2 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:52.153503806 { [3880 bytes data]
2026/05/08 23:02:52.153513368 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153514245 { [5 bytes data]
2026/05/08 23:02:52.153524638 * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
2026/05/08 23:02:52.153525337 { [333 bytes data]
2026/05/08 23:02:52.153540473 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153541313 { [5 bytes data]
2026/05/08 23:02:52.153552719 * TLSv1.2 (IN), TLS handshake, Server finished (14):
2026/05/08 23:02:52.153553545 { [4 bytes data]
2026/05/08 23:02:52.153565483 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153566124 } [5 bytes data]
2026/05/08 23:02:52.153578568 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
2026/05/08 23:02:52.153579156 } [70 bytes data]
2026/05/08 23:02:52.153589972 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:52.153590599 } [5 bytes data]
2026/05/08 23:02:52.153600845 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:52.153601497 } [1 bytes data]
2026/05/08 23:02:52.153615385 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153616016 } [5 bytes data]
2026/05/08 23:02:52.153627107 * TLSv1.2 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:52.153627719 } [16 bytes data]
2026/05/08 23:02:52.153638765 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:52.153639629 { [5 bytes data]
2026/05/08 23:02:52.153656920 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.153657347 { [5 bytes data]
2026/05/08 23:02:52.153664354 * TLSv1.2 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:52.153664875 { [16 bytes data]
2026/05/08 23:02:52.153672007 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
2026/05/08 23:02:52.153672587 * ALPN, server accepted to use h2
2026/05/08 23:02:52.153750483 * Server certificate:
2026/05/08 23:02:52.153752637 * subject: CN=p3m.posit.it
2026/05/08 23:02:52.153777525 * start date: Feb 24 00:00:00 2026 GMT
2026/05/08 23:02:52.153780473 * expire date: Sep 9 23:59:59 2026 GMT
2026/05/08 23:02:52.153811524 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co"
2026/05/08 23:02:52.153815279 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04
2026/05/08 23:02:52.153834214 * SSL certificate verify ok.
2026/05/08 23:02:52.153835532 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:52.153857236 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:52.153857838 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:52.153878362 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153879337 } [5 bytes data]
2026/05/08 23:02:52.153887191 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153887731 } [5 bytes data]
2026/05/08 23:02:52.153898640 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153899306 } [5 bytes data]
2026/05/08 23:02:52.153918272 * Using Stream ID: 1 (easy handle 0x55b31d8419f0)
2026/05/08 23:02:52.153919244 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153933797 } [5 bytes data]
2026/05/08 23:02:52.153935141 > GET /cran/__linux__/jammy/latest HTTP/2
2026/05/08 23:02:52.153952210 > Host: packagemanager.posit.co
2026/05/08 23:02:52.153953162 > user-agent: curl/7.81.0
2026/05/08 23:02:52.153964074 > accept: */*
2026/05/08 23:02:52.153964511 >
2026/05/08 23:02:52.153969545 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153970061 { [5 bytes data]
2026/05/08 23:02:52.153976799 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:52.153977256 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153986011 } [5 bytes data]
2026/05/08 23:02:52.153986437 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.153992999 { [5 bytes data]
2026/05/08 23:02:52.153993408 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.154027015 { [5 bytes data]
2026/05/08 23:02:52.154028141 < HTTP/2 400
2026/05/08 23:02:52.154036447 < date: Fri, 08 May 2026 23:02:52 GMT
2026/05/08 23:02:52.154036963 < content-type: text/plain; charset=utf-8
2026/05/08 23:02:52.154045183 < content-length: 94
2026/05/08 23:02:52.154045657 < cache-control: max-age=3600
2026/05/08 23:02:52.154052180 < request-id: 527ccb3d-ad33-433a-935d-df023d387dc3
2026/05/08 23:02:52.154052656 < server: Posit Package Manager v2026.04.2
2026/05/08 23:02:52.154061678 < x-content-type-options: nosniff
2026/05/08 23:02:52.154062116 < x-frame-options: DENY
2026/05/08 23:02:52.154071477 < x-repository-type: RSPM
2026/05/08 23:02:52.154071939 <
2026/05/08 23:02:52.154087352 { [94 bytes data]
2026/05/08 23:02:52.154088221 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.154098371 { [5 bytes data]
2026/05/08 23:02:52.158625124 * Connection #0 to host packagemanager.posit.co left intact
Stopped session pings to http://127.0.0.1:41949
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/05/08 23:02:52.171108916 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:52.171301488 [connect-session] Job Key: g7hcFQOTHjTQu0Rt
2026/05/08 23:02:52.171310965 [connect-session] WARNING: Publishing with rsconnect or Publisher, upgrade for the generated manifest.json to follow version constraints best practices.
2026/05/08 23:02:52.171313073 [connect-session] For more details on version matching, see https://docs.posit.co/connect/admin/r/#r-version-matching
2026/05/08 23:02:52.171316151 [connect-session] Warning: Failed to create Connect client: "CONNECT_SERVER" is missing or empty
2026/05/08 23:02:52.171319366 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:33961 ...
Connected to session server http://127.0.0.1:33961
2026/05/08 23:02:52.342550571 Configuring packrat to use available credentials for private repository access.
2026/05/08 23:02:52.342625578 Running system check: /opt/rstudio-connect/scripts/system-checks/packrat-restore-sandbox/r-package-repository
2026/05/08 23:02:52.662943496
2026/05/08 23:02:52.662954155 $ curl -Lsv -m 10 --retry 0 -o /dev/null https://packagemanager.posit.co/cran/__linux__/jammy/latest
2026/05/08 23:02:52.663020940 * Trying 18.217.247.19:443...
2026/05/08 23:02:52.663022263 * Connected to packagemanager.posit.co (18.217.247.19) port 443 (#0)
2026/05/08 23:02:52.663037727 * ALPN, offering h2
2026/05/08 23:02:52.663038438 * ALPN, offering http/1.1
2026/05/08 23:02:52.663047823 * CAfile: /etc/ssl/certs/ca-certificates.crt
2026/05/08 23:02:52.663048595 * CApath: /etc/ssl/certs
2026/05/08 23:02:52.663071386 * TLSv1.0 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663072328 } [5 bytes data]
2026/05/08 23:02:52.663087134 * TLSv1.3 (OUT), TLS handshake, Client hello (1):
2026/05/08 23:02:52.663087908 } [512 bytes data]
2026/05/08 23:02:52.663101914 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663102481 { [5 bytes data]
2026/05/08 23:02:52.663109374 * TLSv1.3 (IN), TLS handshake, Server hello (2):
2026/05/08 23:02:52.663109789 { [104 bytes data]
2026/05/08 23:02:52.663116988 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663117400 { [5 bytes data]
2026/05/08 23:02:52.663124097 * TLSv1.2 (IN), TLS handshake, Certificate (11):
2026/05/08 23:02:52.663124643 { [3880 bytes data]
2026/05/08 23:02:52.663131340 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663131752 { [5 bytes data]
2026/05/08 23:02:52.663138568 * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
2026/05/08 23:02:52.663138976 { [333 bytes data]
2026/05/08 23:02:52.663151844 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663152659 { [5 bytes data]
2026/05/08 23:02:52.663178099 * TLSv1.2 (IN), TLS handshake, Server finished (14):
2026/05/08 23:02:52.663178883 { [4 bytes data]
2026/05/08 23:02:52.663196185 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663196652 } [5 bytes data]
2026/05/08 23:02:52.663203249 * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
2026/05/08 23:02:52.663203653 } [70 bytes data]
2026/05/08 23:02:52.663210334 * TLSv1.2 (OUT), TLS header, Finished (20):
2026/05/08 23:02:52.663210735 } [5 bytes data]
2026/05/08 23:02:52.663216874 * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
2026/05/08 23:02:52.663217283 } [1 bytes data]
2026/05/08 23:02:52.663227884 * TLSv1.2 (OUT), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663228589 } [5 bytes data]
2026/05/08 23:02:52.663257453 * TLSv1.2 (OUT), TLS handshake, Finished (20):
2026/05/08 23:02:52.663261907 } [16 bytes data]
2026/05/08 23:02:52.663270013 * TLSv1.2 (IN), TLS header, Finished (20):
2026/05/08 23:02:52.663270429 { [5 bytes data]
2026/05/08 23:02:52.663276472 * TLSv1.2 (IN), TLS header, Certificate Status (22):
2026/05/08 23:02:52.663276907 { [5 bytes data]
2026/05/08 23:02:52.663283461 * TLSv1.2 (IN), TLS handshake, Finished (20):
2026/05/08 23:02:52.663283899 { [16 bytes data]
2026/05/08 23:02:52.663301064 * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
2026/05/08 23:02:52.663301814 * ALPN, server accepted to use h2
2026/05/08 23:02:52.663316889 * Server certificate:
2026/05/08 23:02:52.663318107 * subject: CN=p3m.posit.it
2026/05/08 23:02:52.663330003 * start date: Feb 24 00:00:00 2026 GMT
2026/05/08 23:02:52.663330486 * expire date: Sep 9 23:59:59 2026 GMT
2026/05/08 23:02:52.663337204 * subjectAltName: host "packagemanager.posit.co" matched cert's "packagemanager.posit.co"
2026/05/08 23:02:52.663337774 * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04
2026/05/08 23:02:52.663348134 * SSL certificate verify ok.
2026/05/08 23:02:52.663348642 * Using HTTP2, server supports multiplexing
2026/05/08 23:02:52.663356290 * Connection state changed (HTTP/2 confirmed)
2026/05/08 23:02:52.663356704 * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
2026/05/08 23:02:52.663377498 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663378352 } [5 bytes data]
2026/05/08 23:02:52.663395737 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663397613 } [5 bytes data]
2026/05/08 23:02:52.663417224 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663420605 } [5 bytes data]
2026/05/08 23:02:52.663440865 * Using Stream ID: 1 (easy handle 0x5576c0a5b9f0)
2026/05/08 23:02:52.663444256 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663476418 } [5 bytes data]
2026/05/08 23:02:52.663477428 > GET /cran/__linux__/jammy/latest HTTP/2
2026/05/08 23:02:52.663490227 > Host: packagemanager.posit.co
2026/05/08 23:02:52.663491182 > user-agent: curl/7.81.0
2026/05/08 23:02:52.663497909 > accept: */*
2026/05/08 23:02:52.663498316 >
2026/05/08 23:02:52.663503095 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663503531 { [5 bytes data]
2026/05/08 23:02:52.663509830 * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
2026/05/08 23:02:52.663510266 * TLSv1.2 (OUT), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663528773 } [5 bytes data]
2026/05/08 23:02:52.663530257 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663554944 { [5 bytes data]
2026/05/08 23:02:52.663555922 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663572881 { [5 bytes data]
2026/05/08 23:02:52.663573524 < HTTP/2 400
2026/05/08 23:02:52.663590101 < date: Fri, 08 May 2026 23:02:52 GMT
2026/05/08 23:02:52.663590741 < content-type: text/plain; charset=utf-8
2026/05/08 23:02:52.663598266 < content-length: 94
2026/05/08 23:02:52.663598775 < cache-control: max-age=3600
2026/05/08 23:02:52.663605349 < request-id: f0378949-ad3f-4d87-8f76-4970607a61eb
2026/05/08 23:02:52.663605764 < server: Posit Package Manager v2026.04.2
2026/05/08 23:02:52.663614209 < x-content-type-options: nosniff
2026/05/08 23:02:52.663614619 < x-frame-options: DENY
2026/05/08 23:02:52.663627160 < x-repository-type: RSPM
2026/05/08 23:02:52.663627864 <
2026/05/08 23:02:52.663637723 { [94 bytes data]
2026/05/08 23:02:52.663638550 * TLSv1.2 (IN), TLS header, Supplemental data (23):
2026/05/08 23:02:52.663648799 { [5 bytes data]
2026/05/08 23:02:52.667536702 * Connection #0 to host packagemanager.posit.co left intact
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/05/08 23:02:52.682541011 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:52.682760035 [connect-session] Job Key: WClQYQVJYG3lfnFm
2026/05/08 23:02:52.682774564 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:52.682778723 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:37731 ...
Connected to session server http://127.0.0.1:37731
2026/05/08 23:02:52.862766776 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:52.863285367 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:52.863293305 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/01-R-version.sh
2026/05/08 23:02:52.879375407
2026/05/08 23:02:52.879384664 $ /opt/R/4.4.3/bin/R --version
2026/05/08 23:02:52.879453755 R version 4.4.3 (2025-02-28) -- "Trophy Case"
2026/05/08 23:02:52.879456222 Copyright (C) 2025 The R Foundation for Statistical Computing
2026/05/08 23:02:52.879472324 Platform: x86_64-pc-linux-gnu
2026/05/08 23:02:52.879473145
2026/05/08 23:02:52.879481389 R is free software and comes with ABSOLUTELY NO WARRANTY.
2026/05/08 23:02:52.879481856 You are welcome to redistribute it under the terms of the
2026/05/08 23:02:52.879491761 GNU General Public License versions 2 or 3.
2026/05/08 23:02:52.879492184 For more information about these matters see
2026/05/08 23:02:52.883550046 https://www.gnu.org/licenses/.
Stopped session pings to http://127.0.0.1:37731
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/05/08 23:02:52.902345680 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:52.902580995 [connect-session] Job Key: m1N24kSLmAHjjvUK
2026/05/08 23:02:52.902595186 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:52.902599557 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:40129 ...
Connected to session server http://127.0.0.1:40129
2026/05/08 23:02:53.077926868 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:53.078142985 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:53.078209615 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/02-installed-packages.sh
2026/05/08 23:02:53.259538696
2026/05/08 23:02:53.259551681 $ /opt/R/4.4.3/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")]
2026/05/08 23:02:53.259601337 Package Version LibPath
2026/05/08 23:02:53.259606288 base "base" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259643267 boot "boot" "1.3-31" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259644232 class "class" "7.3-23" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259657633 cluster "cluster" "2.1.8" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259658178 codetools "codetools" "0.2-20" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259672074 compiler "compiler" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259672817 datasets "datasets" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259687713 foreign "foreign" "0.8-88" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259688396 graphics "graphics" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259703499 grDevices "grDevices" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259704091 grid "grid" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259718769 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259719528 lattice "lattice" "0.22-6" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259735059 MASS "MASS" "7.3-64" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259735837 Matrix "Matrix" "1.7-2" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259749983 methods "methods" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259750711 mgcv "mgcv" "1.9-1" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259765771 nlme "nlme" "3.1-167" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259766533 nnet "nnet" "7.3-20" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259780060 parallel "parallel" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259780893 rpart "rpart" "4.1.24" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259796325 spatial "spatial" "7.3-18" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259797106 splines "splines" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259812534 stats "stats" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259813263 stats4 "stats4" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259828257 survival "survival" "3.8-3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259829041 tcltk "tcltk" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.259867646 tools "tools" "4.4.3" "/opt/R/4.4.3/lib/R/library"
2026/05/08 23:02:53.263394422 utils "utils" "4.4.3" "/opt/R/4.4.3/lib/R/library"
Stopped session pings to http://127.0.0.1:40129
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/05/08 23:02:53.277356558 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:53.277566519 [connect-session] Job Key: XVDDMvy8S40ag7MP
2026/05/08 23:02:53.277580466 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:53.277585294 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:39125 ...
Connected to session server http://127.0.0.1:39125
2026/05/08 23:02:53.455795849 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:53.456006572 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:53.456080040 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/03-options.R
2026/05/08 23:02:53.456855961 $add.smooth
2026/05/08 23:02:53.456862943 [1] TRUE
2026/05/08 23:02:53.456889591
2026/05/08 23:02:53.456890734 $bitmapType
2026/05/08 23:02:53.456898992 [1] "cairo"
2026/05/08 23:02:53.456899665
2026/05/08 23:02:53.456907783 $browser
2026/05/08 23:02:53.456908598 function (url)
2026/05/08 23:02:53.456918229 {
2026/05/08 23:02:53.456919146 cat("Cannot visit", url, "because the browseURL function is disabled.\n")
2026/05/08 23:02:53.456933596 }
2026/05/08 23:02:53.456934267 <environment: 0x556eed63a3a8>
2026/05/08 23:02:53.456944465
2026/05/08 23:02:53.456945140 $browserNLdisabled
2026/05/08 23:02:53.456954446 [1] FALSE
2026/05/08 23:02:53.456955141
2026/05/08 23:02:53.456963457 $catch.script.errors
2026/05/08 23:02:53.456964193 [1] FALSE
2026/05/08 23:02:53.456982078
2026/05/08 23:02:53.456996438 $CBoundsCheck
2026/05/08 23:02:53.457028891 [1] FALSE
2026/05/08 23:02:53.457030651
2026/05/08 23:02:53.457046966 $check.bounds
2026/05/08 23:02:53.457047768 [1] FALSE
2026/05/08 23:02:53.457060506
2026/05/08 23:02:53.457061326 $citation.bibtex.max
2026/05/08 23:02:53.457071580 [1] 1
2026/05/08 23:02:53.457072318
2026/05/08 23:02:53.457080666 $continue
2026/05/08 23:02:53.457081408 [1] "+ "
2026/05/08 23:02:53.457099026
2026/05/08 23:02:53.457099815 $contrasts
2026/05/08 23:02:53.457108871 unordered ordered
2026/05/08 23:02:53.457109806 "contr.treatment" "contr.poly"
2026/05/08 23:02:53.457122276
2026/05/08 23:02:53.457122927 $defaultPackages
2026/05/08 23:02:53.457131999 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods"
2026/05/08 23:02:53.457133040
2026/05/08 23:02:53.457150095 $demo.ask
2026/05/08 23:02:53.457150894 [1] "default"
2026/05/08 23:02:53.457162900
2026/05/08 23:02:53.457164708 $deparse.cutoff
2026/05/08 23:02:53.457200460 [1] 60
2026/05/08 23:02:53.457201817
2026/05/08 23:02:53.457216916 $device
2026/05/08 23:02:53.457389083 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf",
2026/05/08 23:02:53.457395422 width, height, onefile, family, title, fonts, version, paper,
2026/05/08 23:02:53.457432333 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats,
2026/05/08 23:02:53.457433334 useKerning, fillOddEven, compress)
2026/05/08 23:02:53.457449354 {
2026/05/08 23:02:53.457454165 initPSandPDFfonts()
2026/05/08 23:02:53.457462542 new <- list()
2026/05/08 23:02:53.457463010 if (!missing(width))
2026/05/08 23:02:53.457469031 new$width <- width
2026/05/08 23:02:53.457469405 if (!missing(height))
2026/05/08 23:02:53.457475403 new$height <- height
2026/05/08 23:02:53.457475846 if (!missing(onefile))
2026/05/08 23:02:53.457486512 new$onefile <- onefile
2026/05/08 23:02:53.457487255 if (!missing(title))
2026/05/08 23:02:53.457496486 new$title <- title
2026/05/08 23:02:53.457497004 if (!missing(fonts))
2026/05/08 23:02:53.457505412 new$fonts <- fonts
2026/05/08 23:02:53.457522705 if (!missing(version))
2026/05/08 23:02:53.457523243 new$version <- version
2026/05/08 23:02:53.457530541 if (!missing(paper))
2026/05/08 23:02:53.457530939 new$paper <- paper
2026/05/08 23:02:53.457536777 if (!missing(encoding))
2026/05/08 23:02:53.457538412 new$encoding <- encoding
2026/05/08 23:02:53.457544832 if (!missing(bg))
2026/05/08 23:02:53.457545238 new$bg <- bg
2026/05/08 23:02:53.457550794 if (!missing(fg))
2026/05/08 23:02:53.457551192 new$fg <- fg
2026/05/08 23:02:53.457557511 if (!missing(pointsize))
2026/05/08 23:02:53.457558142 new$pointsize <- pointsize
2026/05/08 23:02:53.457570952 if (!missing(pagecentre))
2026/05/08 23:02:53.457571902 new$pagecentre <- pagecentre
2026/05/08 23:02:53.457589540 if (!missing(colormodel))
2026/05/08 23:02:53.457613262 new$colormodel <- colormodel
2026/05/08 23:02:53.457614110 if (!missing(useDingbats))
2026/05/08 23:02:53.457641989 new$useDingbats <- useDingbats
2026/05/08 23:02:53.457652082 if (!missing(useKerning))
2026/05/08 23:02:53.457659272 new$useKerning <- useKerning
2026/05/08 23:02:53.457664576 if (!missing(fillOddEven))
2026/05/08 23:02:53.457672191 new$fillOddEven <- fillOddEven
2026/05/08 23:02:53.457672599 if (!missing(compress))
2026/05/08 23:02:53.457679061 new$compress <- compress
2026/05/08 23:02:53.457679653 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv)
2026/05/08 23:02:53.457688877 if (!missing(family) && (inherits(family, "Type1Font") ||
2026/05/08 23:02:53.457689497 inherits(family, "CIDFont"))) {
2026/05/08 23:02:53.457697776 enc <- family$encoding
2026/05/08 23:02:53.457698204 if (inherits(family, "Type1Font") && !is.null(enc) &&
2026/05/08 23:02:53.457710025 enc != "default" && (is.null(old$encoding) || old$encoding ==
2026/05/08 23:02:53.457710935 "default"))
2026/05/08 23:02:53.457733568 old$encoding <- enc
2026/05/08 23:02:53.457734565 family <- family$metrics
2026/05/08 23:02:53.457743428 }
2026/05/08 23:02:53.457743859 if (is.null(old$encoding) || old$encoding == "default")
2026/05/08 23:02:53.457750306 old$encoding <- guessEncoding()
2026/05/08 23:02:53.457750737 if (!missing(family)) {
2026/05/08 23:02:53.457757145 if (length(family) == 4L) {
2026/05/08 23:02:53.457757549 family <- c(family, "Symbol.afm")
2026/05/08 23:02:53.457764512 }
2026/05/08 23:02:53.457764957 else if (length(family) == 5L) {
2026/05/08 23:02:53.457770868 }
2026/05/08 23:02:53.457771296 else if (length(family) == 1L) {
2026/05/08 23:02:53.457776941 pf <- pdfFonts(family)[[1L]]
2026/05/08 23:02:53.457777355 if (is.null(pf))
2026/05/08 23:02:53.457785914 stop(gettextf("unknown family '%s'", family),
2026/05/08 23:02:53.457786549 domain = NA)
2026/05/08 23:02:53.457810930 matchFont(pf, old$encoding)
2026/05/08 23:02:53.457812598 }
2026/05/08 23:02:53.457823851 else stop("invalid 'family' argument")
2026/05/08 23:02:53.457824330 old$family <- family
2026/05/08 23:02:53.457831526 }
2026/05/08 23:02:53.457831955 version <- old$version
2026/05/08 23:02:53.457837351 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7",
2026/05/08 23:02:53.457837908 "2.0")
2026/05/08 23:02:53.457843612 if (version %in% versions)
2026/05/08 23:02:53.457844041 version <- as.integer(strsplit(version, "[.]")[[1L]])
2026/05/08 23:02:53.457851808 else stop("invalid PDF version")
2026/05/08 23:02:53.457852208 onefile <- old$onefile
2026/05/08 23:02:53.457858652 if (!checkIntFormat(file))
2026/05/08 23:02:53.457859063 stop(gettextf("invalid 'file' argument '%s'", file),
2026/05/08 23:02:53.457866741 domain = NA)
2026/05/08 23:02:53.457867318 .External(C_PDF, file, old$paper, old$family, old$encoding,
2026/05/08 23:02:53.457880873 old$bg, old$fg, old$width, old$height, old$pointsize,
2026/05/08 23:02:53.457881740 onefile, old$pagecentre, old$title, old$fonts, version[1L],
2026/05/08 23:02:53.457905766 version[2L], old$colormodel, old$useDingbats, old$useKerning,
2026/05/08 23:02:53.457906280 old$fillOddEven, old$compress)
2026/05/08 23:02:53.457914608 invisible()
2026/05/08 23:02:53.457915023 }
2026/05/08 23:02:53.457919949 <bytecode: 0x556eeb918968>
2026/05/08 23:02:53.457920378 <environment: namespace:grDevices>
2026/05/08 23:02:53.457927505
2026/05/08 23:02:53.457927887 $device.ask.default
2026/05/08 23:02:53.457933320 [1] FALSE
2026/05/08 23:02:53.457933734
2026/05/08 23:02:53.457941643 $digits
2026/05/08 23:02:53.457942333 [1] 7
2026/05/08 23:02:53.457963891
2026/05/08 23:02:53.457964459 $dvipscmd
2026/05/08 23:02:53.457969303 [1] "dvips"
2026/05/08 23:02:53.457969737
2026/05/08 23:02:53.457974366 $echo
2026/05/08 23:02:53.457974791 [1] FALSE
2026/05/08 23:02:53.457979609
2026/05/08 23:02:53.457980024 $editor
2026/05/08 23:02:53.457984569 [1] "vi"
2026/05/08 23:02:53.457984997
2026/05/08 23:02:53.457989468 $encoding
2026/05/08 23:02:53.457989871 [1] "native.enc"
2026/05/08 23:02:53.457995198
2026/05/08 23:02:53.457995617 $example.ask
2026/05/08 23:02:53.458000423 [1] "default"
2026/05/08 23:02:53.458000833
2026/05/08 23:02:53.458005522 $expressions
2026/05/08 23:02:53.458005958 [1] 5000
2026/05/08 23:02:53.458011035
2026/05/08 23:02:53.458011442 $help.search.types
2026/05/08 23:02:53.458016584 [1] "vignette" "demo" "help"
2026/05/08 23:02:53.458017011
2026/05/08 23:02:53.458031968 $help.try.all.packages
2026/05/08 23:02:53.458034467 [1] FALSE
2026/05/08 23:02:53.458046176
2026/05/08 23:02:53.458046704 $HTTPUserAgent
2026/05/08 23:02:53.458052742 [1] "R/4.4.3 (ubuntu-22.04) R (4.4.3 x86_64-pc-linux-gnu x86_64 linux-gnu)"
2026/05/08 23:02:53.458053177
2026/05/08 23:02:53.458060461 $internet.info
2026/05/08 23:02:53.458060882 [1] 2
2026/05/08 23:02:53.458066005
2026/05/08 23:02:53.458066414 $keep.parse.data
2026/05/08 23:02:53.458071430 [1] TRUE
2026/05/08 23:02:53.458071902
2026/05/08 23:02:53.458076630 $keep.parse.data.pkgs
2026/05/08 23:02:53.458077061 [1] FALSE
2026/05/08 23:02:53.458082503
2026/05/08 23:02:53.458082912 $keep.source
2026/05/08 23:02:53.458088162 [1] FALSE
2026/05/08 23:02:53.458088588
2026/05/08 23:02:53.458093302 $keep.source.pkgs
2026/05/08 23:02:53.458093724 [1] FALSE
2026/05/08 23:02:53.458099162
2026/05/08 23:02:53.458099549 $locatorBell
2026/05/08 23:02:53.458107974 [1] TRUE
2026/05/08 23:02:53.458108586
2026/05/08 23:02:53.458116623 $mailer
2026/05/08 23:02:53.458118706 [1] "mailto"
2026/05/08 23:02:53.458123958
2026/05/08 23:02:53.458124382 $matprod
2026/05/08 23:02:53.458129051 [1] "default"
2026/05/08 23:02:53.458129476
2026/05/08 23:02:53.458134097 $max.contour.segments
2026/05/08 23:02:53.458134525 [1] 25000
2026/05/08 23:02:53.458139831
2026/05/08 23:02:53.458140227 $max.print
2026/05/08 23:02:53.458144875 [1] 99999
2026/05/08 23:02:53.458145287
2026/05/08 23:02:53.458149684 $menu.graphics
2026/05/08 23:02:53.458150110 [1] TRUE
2026/05/08 23:02:53.458155293
2026/05/08 23:02:53.458155682 $na.action
2026/05/08 23:02:53.458160303 [1] "na.omit"
2026/05/08 23:02:53.458160708
2026/05/08 23:02:53.458170354 $nwarnings
2026/05/08 23:02:53.458170855 [1] 50
2026/05/08 23:02:53.458175764
2026/05/08 23:02:53.458176164 $OutDec
2026/05/08 23:02:53.458181052 [1] "."
2026/05/08 23:02:53.458181579
2026/05/08 23:02:53.458190727 $pager
2026/05/08 23:02:53.458191629 [1] "/opt/R/4.4.3/lib/R/bin/pager"
2026/05/08 23:02:53.458208806
2026/05/08 23:02:53.458209257 $papersize
2026/05/08 23:02:53.458213958 [1] "letter"
2026/05/08 23:02:53.458214376
2026/05/08 23:02:53.458219058 $PCRE_limit_recursion
2026/05/08 23:02:53.458219488 [1] NA
2026/05/08 23:02:53.458224822
2026/05/08 23:02:53.458225220 $PCRE_study
2026/05/08 23:02:53.458229951 [1] FALSE
2026/05/08 23:02:53.458230392
2026/05/08 23:02:53.458234934 $PCRE_use_JIT
2026/05/08 23:02:53.458235352 [1] TRUE
2026/05/08 23:02:53.458258728
2026/05/08 23:02:53.458259524 $pdfviewer
2026/05/08 23:02:53.458267054 [1] "/usr/bin/xdg-open"
2026/05/08 23:02:53.458267691
2026/05/08 23:02:53.458275452 $pkgType
2026/05/08 23:02:53.458276182 [1] "source"
2026/05/08 23:02:53.458284724
2026/05/08 23:02:53.458285353 $printcmd
2026/05/08 23:02:53.458293228 [1] "/usr/bin/lpr"
2026/05/08 23:02:53.458293844
2026/05/08 23:02:53.458301314 $prompt
2026/05/08 23:02:53.458301965 [1] "> "
2026/05/08 23:02:53.458309310
2026/05/08 23:02:53.458310016 $repos
2026/05/08 23:02:53.458317013 CRAN
2026/05/08 23:02:53.458317639 "@CRAN@"
2026/05/08 23:02:53.458325357
2026/05/08 23:02:53.458325939 $rl_word_breaks
2026/05/08 23:02:53.458334110 [1] " \t\n\"\\'`><=%;,|&{()}"
2026/05/08 23:02:53.458334645
2026/05/08 23:02:53.458346338 $scipen
2026/05/08 23:02:53.458346938 [1] 0
2026/05/08 23:02:53.458354280
2026/05/08 23:02:53.458354937 $show.coef.Pvalues
2026/05/08 23:02:53.458362651 [1] TRUE
2026/05/08 23:02:53.458363180
2026/05/08 23:02:53.458369751 $show.error.messages
2026/05/08 23:02:53.458370286 [1] TRUE
2026/05/08 23:02:53.458377828
2026/05/08 23:02:53.458378503 $show.signif.stars
2026/05/08 23:02:53.458385319 [1] TRUE
2026/05/08 23:02:53.458385850
2026/05/08 23:02:53.458391930 $showErrorCalls
2026/05/08 23:02:53.458392623 [1] TRUE
2026/05/08 23:02:53.458400622
2026/05/08 23:02:53.458401140 $showNCalls
2026/05/08 23:02:53.458407765 [1] 50
2026/05/08 23:02:53.458408410
2026/05/08 23:02:53.458414213 $showWarnCalls
2026/05/08 23:02:53.458414733 [1] FALSE
2026/05/08 23:02:53.458422068
2026/05/08 23:02:53.458422590 $str
2026/05/08 23:02:53.458428752 $str$strict.width
2026/05/08 23:02:53.458429360 [1] "no"
2026/05/08 23:02:53.458436528
2026/05/08 23:02:53.458437444 $str$digits.d
2026/05/08 23:02:53.458444072 [1] 3
2026/05/08 23:02:53.458444667
2026/05/08 23:02:53.458451490 $str$vec.len
2026/05/08 23:02:53.458452145 [1] 4
2026/05/08 23:02:53.458459654
2026/05/08 23:02:53.458460243 $str$list.len
2026/05/08 23:02:53.458467702 [1] 99
2026/05/08 23:02:53.458468323
2026/05/08 23:02:53.458475272 $str$deparse.lines
2026/05/08 23:02:53.458475857 NULL
2026/05/08 23:02:53.458483376
2026/05/08 23:02:53.458483996 $str$drop.deparse.attr
2026/05/08 23:02:53.458492567 [1] TRUE
2026/05/08 23:02:53.458493210
2026/05/08 23:02:53.458502622 $str$formatNum
2026/05/08 23:02:53.458503233 function (x, ...)
2026/05/08 23:02:53.458512299 format(x, trim = TRUE, drop0trailing = TRUE, ...)
2026/05/08 23:02:53.458513126 <environment: 0x556eec073fd8>
2026/05/08 23:02:53.458525458
2026/05/08 23:02:53.458526074
2026/05/08 23:02:53.458532941 $str.dendrogram.last
2026/05/08 23:02:53.458533589 [1] "`"
2026/05/08 23:02:53.458547961
2026/05/08 23:02:53.458548677 $texi2dvi
2026/05/08 23:02:53.458556190 [1] "/usr/bin/texi2dvi"
2026/05/08 23:02:53.458556775
2026/05/08 23:02:53.458565056 $timeout
2026/05/08 23:02:53.458565706 [1] 60
2026/05/08 23:02:53.458573566
2026/05/08 23:02:53.458574129 $ts.eps
2026/05/08 23:02:53.458581279 [1] 1e-05
2026/05/08 23:02:53.458581946
2026/05/08 23:02:53.458589141 $ts.S.compat
2026/05/08 23:02:53.458589814 [1] FALSE
2026/05/08 23:02:53.458597998
2026/05/08 23:02:53.458598578 $unzip
2026/05/08 23:02:53.458605627 [1] "/usr/bin/unzip"
2026/05/08 23:02:53.458606260
2026/05/08 23:02:53.458626759 $useFancyQuotes
2026/05/08 23:02:53.458627443 [1] TRUE
2026/05/08 23:02:53.458637014
2026/05/08 23:02:53.458637668 $verbose
2026/05/08 23:02:53.458645056 [1] FALSE
2026/05/08 23:02:53.458645628
2026/05/08 23:02:53.458652316 $warn
2026/05/08 23:02:53.458652967 [1] 0
2026/05/08 23:02:53.458659959
2026/05/08 23:02:53.458660584 $warning.length
2026/05/08 23:02:53.458668611 [1] 1000
2026/05/08 23:02:53.458669214
2026/05/08 23:02:53.458675813 $warnPartialMatchArgs
2026/05/08 23:02:53.458676479 [1] FALSE
2026/05/08 23:02:53.458684934
2026/05/08 23:02:53.458685516 $warnPartialMatchAttr
2026/05/08 23:02:53.458694344 [1] FALSE
2026/05/08 23:02:53.458695056
2026/05/08 23:02:53.458703084 $warnPartialMatchDollar
2026/05/08 23:02:53.458703842 [1] FALSE
2026/05/08 23:02:53.458717125
2026/05/08 23:02:53.458717839 $width
2026/05/08 23:02:53.458725762 [1] 80
2026/05/08 23:02:53.458726471
Stopped session pings to http://127.0.0.1:39125
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/05/08 23:02:53.476465408 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:53.476689531 [connect-session] Job Key: ig26kgfayDoBxTlD
2026/05/08 23:02:53.476701766 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:53.476705291 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:39695 ...
Connected to session server http://127.0.0.1:39695
2026/05/08 23:02:53.654356694 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:53.654577051 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:53.654666278 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/04-environment.sh
2026/05/08 23:02:53.661419381
2026/05/08 23:02:53.661428089 $ env
2026/05/08 23:02:53.661467554 CONNECT_API_KEY=REDACTED
2026/05/08 23:02:53.661468567 CONNECT_CONTENT_GUID=
2026/05/08 23:02:53.661478657 CONNECT_CONTENT_JOB_KEY=REDACTED
2026/05/08 23:02:53.661479242 CONNECT_CONTENT_SESSION_TOKEN=REDACTED
2026/05/08 23:02:53.661495372 CONNECT_SERVER=http://localhost:3939/
2026/05/08 23:02:53.661496102 EDITOR=vi
2026/05/08 23:02:53.661514351 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:53.661515042 HOSTNAME=7487772abf07
2026/05/08 23:02:53.661525623 LANG=en_US.UTF-8
2026/05/08 23:02:53.661526330 LANGUAGE=en_US:en
2026/05/08 23:02:53.661536960 LC_ALL=en_US.UTF-8
2026/05/08 23:02:53.661537643 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/05/08 23:02:53.661557699 LN_S=ln -s
2026/05/08 23:02:53.661558511 LOGNAME=rstudio-connect
2026/05/08 23:02:53.661569521 MAKE=make
2026/05/08 23:02:53.661570357 PAGER=/usr/bin/pager
2026/05/08 23:02:53.661580649 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/05/08 23:02:53.661582109 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:53.661603866 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:53.661604565 R_ARCH=
2026/05/08 23:02:53.661615892 R_BROWSER=xdg-open
2026/05/08 23:02:53.661616582 R_BZIPCMD=/usr/bin/bzip2
2026/05/08 23:02:53.661627590 R_CONFIG_ACTIVE=rsconnect
2026/05/08 23:02:53.661628308 R_DOC_DIR=/opt/R/4.4.3/lib/R/doc
2026/05/08 23:02:53.661639004 RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:53.661640003 R_GZIPCMD=/usr/bin/gzip
2026/05/08 23:02:53.661651595 R_HOME=/opt/R/4.4.3/lib/R
2026/05/08 23:02:53.661652319 R_INCLUDE_DIR=/opt/R/4.4.3/lib/R/include
2026/05/08 23:02:53.661664599 R_LIBS=/opt/rstudio-connect/mnt/R/4.4.3
2026/05/08 23:02:53.661665406 R_LIBS_SITE=/opt/R/4.4.3/lib/R/site-library
2026/05/08 23:02:53.661687897 R_LIBS_USER=REDACTED
2026/05/08 23:02:53.661692772 R_PAPERSIZE=letter
2026/05/08 23:02:53.661735619 R_PDFVIEWER=/usr/bin/xdg-open
2026/05/08 23:02:53.661737578 R_PLATFORM=x86_64-pc-linux-gnu
2026/05/08 23:02:53.662060914 R_PRINTCMD=/usr/bin/lpr
2026/05/08 23:02:53.662062449 R_RD4PDF=times,inconsolata,hyper
2026/05/08 23:02:53.662073673 RSC_EMAIL_SUBJECT=system-check
2026/05/08 23:02:53.662074353 RSC_REPORT_NAME=system-check
2026/05/08 23:02:53.662085288 RSC_REPORT_RENDERING_URL=[[==RSC_REPORT_RENDERING_URL==]]
2026/05/08 23:02:53.662086304 RSC_REPORT_SUBSCRIPTION_URL=[[==RSC_REPORT_SUBSCRIPTION_URL==]]
2026/05/08 23:02:53.662099499 RSC_REPORT_URL=[[==RSC_REPORT_URL==]]
2026/05/08 23:02:53.662100142 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/RtmpydpAPx
2026/05/08 23:02:53.662108701 R_SHARE_DIR=/opt/R/4.4.3/lib/R/share
2026/05/08 23:02:53.662109105 R_STRIP_SHARED_LIB=strip --strip-unneeded
2026/05/08 23:02:53.662116868 R_STRIP_STATIC_LIB=strip --strip-debug
2026/05/08 23:02:53.662117287 RSTUDIO_PANDOC=/opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:53.662125228 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:53.662125718 R_TEXI2DVICMD=/usr/bin/texi2dvi
2026/05/08 23:02:53.662132979 R_UNZIPCMD=/usr/bin/unzip
2026/05/08 23:02:53.662133451 R_ZIPCMD=/usr/bin/zip
2026/05/08 23:02:53.662139771 SED=/usr/bin/sed
2026/05/08 23:02:53.662140460 SF_PARTNER=posit_connect
2026/05/08 23:02:53.662146946 SHLVL=2
2026/05/08 23:02:53.662147402 SPARK_CONNECT_USER_AGENT=REDACTED
2026/05/08 23:02:53.662153574 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:53.662154185 TAR=/usr/bin/tar
2026/05/08 23:02:53.662165907 TERM=xterm
2026/05/08 23:02:53.662166784 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:53.662175535 TZ=UTC
2026/05/08 23:02:53.662176005 USERNAME=rstudio-connect
2026/05/08 23:02:53.662187622 USER=rstudio-connect
2026/05/08 23:02:53.664924280 _=/usr/bin/env
Stopped session pings to http://127.0.0.1:39695
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/05/08 23:02:53.678466950 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:53.678668475 [connect-session] Job Key: CvbzPvk3WZeeOE0U
2026/05/08 23:02:53.678679343 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:53.678682388 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:43573 ...
Connected to session server http://127.0.0.1:43573
2026/05/08 23:02:53.854206264 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:53.854435754 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:53.854505574 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/05-mounts.sh
2026/05/08 23:02:53.860861289
2026/05/08 23:02:53.860868151 $ findmnt --notruncate
2026/05/08 23:02:53.860914964 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:53.860927727 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/ov
erlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:53.861016792 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:53.861018079 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:53.861057192 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:53.861059039 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:53.861077043 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:53.861077496 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:53.861093453 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:53.861094078 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:53.861121337 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861126608 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/doc
ker/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:53.861226347 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/doc
ker/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:53.861227511 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861353353 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861354583 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861399768 ├─/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/05/08 23:02:53.861402404 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/reports/v2/0/0/temp.source.3756675089] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861448739 ├─/opt/rstudio-connect/mnt/report /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/reports/v2/0/0/temp.output.238579043] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861449364 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/CvbzPvk3WZeeOE0U] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861471468 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/python-environments] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861471892 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/packrat] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861497882 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/R] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:53.861548126 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace418970400] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:53.861551272 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:53.865029672 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
Stopped session pings to http://127.0.0.1:43573
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/05/08 23:02:53.879193701 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:53.879434010 [connect-session] Job Key: ZoO18j7cw3Utw3th
2026/05/08 23:02:53.879450510 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:53.879454865 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:39127 ...
Connected to session server http://127.0.0.1:39127
2026/05/08 23:02:54.058273081 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:54.058503497 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:54.058581965 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/01-R-version.sh
2026/05/08 23:02:54.074990071
2026/05/08 23:02:54.075002175 $ /opt/R/4.5.2/bin/R --version
2026/05/08 23:02:54.075048439 R version 4.5.2 (2025-10-31) -- "[Not] Part in a Rumble"
2026/05/08 23:02:54.075049623 Copyright (C) 2025 The R Foundation for Statistical Computing
2026/05/08 23:02:54.075076167 Platform: x86_64-pc-linux-gnu
2026/05/08 23:02:54.075081023
2026/05/08 23:02:54.075134248 R is free software and comes with ABSOLUTELY NO WARRANTY.
2026/05/08 23:02:54.075135466 You are welcome to redistribute it under the terms of the
2026/05/08 23:02:54.075150043 GNU General Public License versions 2 or 3.
2026/05/08 23:02:54.075150894 For more information about these matters see
2026/05/08 23:02:54.079051150 https://www.gnu.org/licenses/.
Stopped session pings to http://127.0.0.1:39127
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/05/08 23:02:54.093022243 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:54.093236522 [connect-session] Job Key: gWQvLINahTE4Ue3m
2026/05/08 23:02:54.093268332 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:54.093273013 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:33659 ...
Connected to session server http://127.0.0.1:33659
2026/05/08 23:02:54.272346085 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:54.272890073 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:54.272898403 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/02-installed-packages.sh
2026/05/08 23:02:54.461500149
2026/05/08 23:02:54.461510765 $ /opt/R/4.5.2/bin/R --no-save -s -e installed.packages()[,c("Package","Version","LibPath")]
2026/05/08 23:02:54.461588842 Package Version LibPath
2026/05/08 23:02:54.461590073 base "base" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461611810 bit "bit" "4.6.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461612479 bit64 "bit64" "4.8.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461634364 blob "blob" "1.3.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461635059 boot "boot" "1.3-32" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461658857 class "class" "7.3-23" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461664082 cli "cli" "3.6.6" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461693502 cluster "cluster" "2.1.8.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461694574 codetools "codetools" "0.2-20" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461710158 compiler "compiler" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461710911 datasets "datasets" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461726428 DBI "DBI" "1.3.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461727169 foreign "foreign" "0.8-90" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461742096 glue "glue" "1.8.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461742911 graphics "graphics" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461757815 grDevices "grDevices" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461758595 grid "grid" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461773574 hms "hms" "1.1.4" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461774343 KernSmooth "KernSmooth" "2.23-26" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461789805 lattice "lattice" "0.22-7" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461790537 lifecycle "lifecycle" "1.0.5" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461811945 MASS "MASS" "7.3-65" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461812752 Matrix "Matrix" "1.7-4" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461832234 methods "methods" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461833155 mgcv "mgcv" "1.9-3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461848069 nlme "nlme" "3.1-168" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461848835 nnet "nnet" "7.3-20" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461862458 odbc "odbc" "1.6.4.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461863224 parallel "parallel" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461877484 pkgconfig "pkgconfig" "2.0.3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461878163 Rcpp "Rcpp" "1.1.1-1.1" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461895247 rlang "rlang" "1.2.0" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461896264 rpart "rpart" "4.1.24" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461913624 spatial "spatial" "7.3-18" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461914391 splines "splines" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461929010 stats "stats" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461929749 stats4 "stats4" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461943755 survival "survival" "3.8-3" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461944532 tcltk "tcltk" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461966222 tools "tools" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.461966990 utils "utils" "4.5.2" "/opt/R/4.5.2/lib/R/library"
2026/05/08 23:02:54.466082146 vctrs "vctrs" "0.7.3" "/opt/R/4.5.2/lib/R/library"
Stopped session pings to http://127.0.0.1:33659
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/05/08 23:02:54.480202735 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:54.480460246 [connect-session] Job Key: lXto5zxcWx2SS2fA
2026/05/08 23:02:54.480477155 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:54.480481702 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:46049 ...
Connected to session server http://127.0.0.1:46049
2026/05/08 23:02:54.659640051 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:54.659846253 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:54.659913945 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/03-options.R
2026/05/08 23:02:54.660313149 $add.smooth
2026/05/08 23:02:54.660318318 [1] TRUE
2026/05/08 23:02:54.660351227
2026/05/08 23:02:54.660352545 $bitmapType
2026/05/08 23:02:54.660361860 [1] "cairo"
2026/05/08 23:02:54.660363982
2026/05/08 23:02:54.660373186 $browser
2026/05/08 23:02:54.660373898 function (url)
2026/05/08 23:02:54.660383900 {
2026/05/08 23:02:54.660384722 cat("Cannot visit", url, "because the browseURL function is disabled.\n")
2026/05/08 23:02:54.660397728 }
2026/05/08 23:02:54.660398592 <environment: 0x5606ace62450>
2026/05/08 23:02:54.660409186
2026/05/08 23:02:54.660410005 $browserNLdisabled
2026/05/08 23:02:54.660418853 [1] FALSE
2026/05/08 23:02:54.660419578
2026/05/08 23:02:54.660428365 $catch.script.errors
2026/05/08 23:02:54.660429145 [1] FALSE
2026/05/08 23:02:54.660439518
2026/05/08 23:02:54.660440241 $CBoundsCheck
2026/05/08 23:02:54.660449303 [1] FALSE
2026/05/08 23:02:54.660450075
2026/05/08 23:02:54.660459774 $check.bounds
2026/05/08 23:02:54.660460492 [1] FALSE
2026/05/08 23:02:54.660469478
2026/05/08 23:02:54.660470193 $citation.bibtex.max
2026/05/08 23:02:54.660479826 [1] 1
2026/05/08 23:02:54.660480516
2026/05/08 23:02:54.660488242 $continue
2026/05/08 23:02:54.660489020 [1] "+ "
2026/05/08 23:02:54.660497341
2026/05/08 23:02:54.660498033 $contrasts
2026/05/08 23:02:54.660506506 unordered ordered
2026/05/08 23:02:54.660507372 "contr.treatment" "contr.poly"
2026/05/08 23:02:54.660520160
2026/05/08 23:02:54.660520867 $defaultPackages
2026/05/08 23:02:54.660530120 [1] "datasets" "utils" "grDevices" "graphics" "stats" "methods"
2026/05/08 23:02:54.660530856
2026/05/08 23:02:54.660542988 $demo.ask
2026/05/08 23:02:54.660543707 [1] "default"
2026/05/08 23:02:54.660553702
2026/05/08 23:02:54.660554430 $deparse.cutoff
2026/05/08 23:02:54.660563376 [1] 60
2026/05/08 23:02:54.660564136
2026/05/08 23:02:54.660572639 $device
2026/05/08 23:02:54.660808855 function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf",
2026/05/08 23:02:54.660818136 width, height, onefile, family, title, fonts, version, paper,
2026/05/08 23:02:54.660852855 encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats,
2026/05/08 23:02:54.660853906 useKerning, fillOddEven, compress, timestamp, producer, author)
2026/05/08 23:02:54.660871820 {
2026/05/08 23:02:54.660872789 initPSandPDFfonts()
2026/05/08 23:02:54.660883474 new <- list()
2026/05/08 23:02:54.660884381 if (!missing(width))
2026/05/08 23:02:54.660895197 new$width <- width
2026/05/08 23:02:54.660895906 if (!missing(height))
2026/05/08 23:02:54.660907729 new$height <- height
2026/05/08 23:02:54.660908455 if (!missing(onefile))
2026/05/08 23:02:54.660919697 new$onefile <- onefile
2026/05/08 23:02:54.660922013 if (!missing(title))
2026/05/08 23:02:54.660946088 new$title <- title
2026/05/08 23:02:54.660947118 if (!missing(fonts))
2026/05/08 23:02:54.660958822 new$fonts <- fonts
2026/05/08 23:02:54.660959597 if (!missing(version))
2026/05/08 23:02:54.660978313 new$version <- version
2026/05/08 23:02:54.660979120 if (!missing(paper))
2026/05/08 23:02:54.660990073 new$paper <- paper
2026/05/08 23:02:54.660991446 if (!missing(encoding))
2026/05/08 23:02:54.661005561 new$encoding <- encoding
2026/05/08 23:02:54.661006408 if (!missing(bg))
2026/05/08 23:02:54.661019541 new$bg <- bg
2026/05/08 23:02:54.661020347 if (!missing(fg))
2026/05/08 23:02:54.661031294 new$fg <- fg
2026/05/08 23:02:54.661032067 if (!missing(pointsize))
2026/05/08 23:02:54.661046449 new$pointsize <- pointsize
2026/05/08 23:02:54.661048431 if (!missing(pagecentre))
2026/05/08 23:02:54.661061453 new$pagecentre <- pagecentre
2026/05/08 23:02:54.661062269 if (!missing(colormodel))
2026/05/08 23:02:54.661083913 new$colormodel <- colormodel
2026/05/08 23:02:54.661096433 if (!missing(useDingbats))
2026/05/08 23:02:54.661097310 new$useDingbats <- useDingbats
2026/05/08 23:02:54.661122845 if (!missing(useKerning))
2026/05/08 23:02:54.661123646 new$useKerning <- useKerning
2026/05/08 23:02:54.661136946 if (!missing(fillOddEven))
2026/05/08 23:02:54.661137684 new$fillOddEven <- fillOddEven
2026/05/08 23:02:54.661148542 if (!missing(compress))
2026/05/08 23:02:54.661156814 new$compress <- compress
2026/05/08 23:02:54.661157623 if (!missing(timestamp))
2026/05/08 23:02:54.661176753 new$timestamp <- timestamp
2026/05/08 23:02:54.661194819 if (!missing(producer))
2026/05/08 23:02:54.661195613 new$producer <- producer
2026/05/08 23:02:54.661207542 if (!missing(author))
2026/05/08 23:02:54.661208263 new$author <- author
2026/05/08 23:02:54.661222624 old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv)
2026/05/08 23:02:54.661223556 if (!missing(family) && (inherits(family, "Type1Font") ||
2026/05/08 23:02:54.661233977 inherits(family, "CIDFont"))) {
2026/05/08 23:02:54.661276992 enc <- family$encoding
2026/05/08 23:02:54.661278030 if (inherits(family, "Type1Font") && !is.null(enc) &&
2026/05/08 23:02:54.661296660 enc != "default" && (is.null(old$encoding) || old$encoding ==
2026/05/08 23:02:54.661297661 "default"))
2026/05/08 23:02:54.661316602 old$encoding <- enc
2026/05/08 23:02:54.661342664 family <- family$metrics
2026/05/08 23:02:54.661361141 }
2026/05/08 23:02:54.661362284 if (is.null(old$encoding) || old$encoding == "default")
2026/05/08 23:02:54.661374731 old$encoding <- guessEncoding()
2026/05/08 23:02:54.661375532 if (!missing(family)) {
2026/05/08 23:02:54.661417477 if (length(family) == 4L) {
2026/05/08 23:02:54.661418500 family <- c(family, "Symbol.afm")
2026/05/08 23:02:54.661435932 }
2026/05/08 23:02:54.661438269 else if (length(family) == 5L) {
2026/05/08 23:02:54.661454888 }
2026/05/08 23:02:54.661456856 else if (length(family) == 1L) {
2026/05/08 23:02:54.661485672 pf <- pdfFonts(family)[[1L]]
2026/05/08 23:02:54.661486455 if (is.null(pf))
2026/05/08 23:02:54.661501223 stop(gettextf("unknown family '%s'", family),
2026/05/08 23:02:54.661501932 domain = NA)
2026/05/08 23:02:54.661514136 matchFont(pf, old$encoding)
2026/05/08 23:02:54.661514786 }
2026/05/08 23:02:54.661524570 else stop("invalid 'family' argument")
2026/05/08 23:02:54.661525244 old$family <- family
2026/05/08 23:02:54.661537360 }
2026/05/08 23:02:54.661537887 version <- old$version
2026/05/08 23:02:54.661546214 versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7",
2026/05/08 23:02:54.661547628 "2.0")
2026/05/08 23:02:54.661560784 if (version %in% versions)
2026/05/08 23:02:54.661561660 version <- as.integer(strsplit(version, "[.]")[[1L]])
2026/05/08 23:02:54.661575894 else stop("invalid PDF version")
2026/05/08 23:02:54.661576750 onefile <- old$onefile
2026/05/08 23:02:54.661589073 if (!checkIntFormat(file))
2026/05/08 23:02:54.661589861 stop(gettextf("invalid 'file' argument '%s'", file),
2026/05/08 23:02:54.661603959 domain = NA)
2026/05/08 23:02:54.661604701 .External(C_PDF, file, old$paper, old$family, old$encoding,
2026/05/08 23:02:54.661618140 old$bg, old$fg, old$width, old$height, old$pointsize,
2026/05/08 23:02:54.661618953 onefile, old$pagecentre, old$title, old$fonts, version[1L],
2026/05/08 23:02:54.661635986 version[2L], old$colormodel, old$useDingbats, old$useKerning,
2026/05/08 23:02:54.661636867 old$fillOddEven, old$compress, old$timestamp, old$producer,
2026/05/08 23:02:54.661661795 old$author)
2026/05/08 23:02:54.661662722 invisible()
2026/05/08 23:02:54.661672768 }
2026/05/08 23:02:54.661673545 <bytecode: 0x5606aac44eb0>
2026/05/08 23:02:54.661683749 <environment: namespace:grDevices>
2026/05/08 23:02:54.661684653
2026/05/08 23:02:54.661695196 $device.ask.default
2026/05/08 23:02:54.661695947 [1] FALSE
2026/05/08 23:02:54.661705915
2026/05/08 23:02:54.661706607 $digits
2026/05/08 23:02:54.661715483 [1] 7
2026/05/08 23:02:54.661716227
2026/05/08 23:02:54.661724404 $dvipscmd
2026/05/08 23:02:54.661725087 [1] "dvips"
2026/05/08 23:02:54.661734463
2026/05/08 23:02:54.661735217 $echo
2026/05/08 23:02:54.661743657 [1] FALSE
2026/05/08 23:02:54.661744365
2026/05/08 23:02:54.661752511 $editor
2026/05/08 23:02:54.661753251 [1] "vi"
2026/05/08 23:02:54.661765301
2026/05/08 23:02:54.661766094 $encoding
2026/05/08 23:02:54.661774691 [1] "native.enc"
2026/05/08 23:02:54.661775506
2026/05/08 23:02:54.661784313 $example.ask
2026/05/08 23:02:54.661785110 [1] "default"
2026/05/08 23:02:54.661795373
2026/05/08 23:02:54.661796225 $expressions
2026/05/08 23:02:54.661805068 [1] 5000
2026/05/08 23:02:54.661805859
2026/05/08 23:02:54.661813950 $help.search.types
2026/05/08 23:02:54.661814628 [1] "vignette" "demo" "help"
2026/05/08 23:02:54.661826033
2026/05/08 23:02:54.661826777 $help.try.all.packages
2026/05/08 23:02:54.661836656 [1] FALSE
2026/05/08 23:02:54.661837432
2026/05/08 23:02:54.661845800 $HTTPUserAgent
2026/05/08 23:02:54.661846515 [1] "R/4.5.2 (ubuntu-22.04) R (4.5.2 x86_64-pc-linux-gnu x86_64 linux-gnu)"
2026/05/08 23:02:54.661860251
2026/05/08 23:02:54.661860984 $internet.info
2026/05/08 23:02:54.661870105 [1] 2
2026/05/08 23:02:54.661870857
2026/05/08 23:02:54.661878824 $keep.parse.data
2026/05/08 23:02:54.661879477 [1] TRUE
2026/05/08 23:02:54.661889113
2026/05/08 23:02:54.661889867 $keep.parse.data.pkgs
2026/05/08 23:02:54.661899202 [1] FALSE
2026/05/08 23:02:54.661899898
2026/05/08 23:02:54.661908055 $keep.source
2026/05/08 23:02:54.661908797 [1] FALSE
2026/05/08 23:02:54.661918265
2026/05/08 23:02:54.661918965 $keep.source.pkgs
2026/05/08 23:02:54.661928310 [1] FALSE
2026/05/08 23:02:54.661929048
2026/05/08 23:02:54.661937428 $locatorBell
2026/05/08 23:02:54.661938124 [1] TRUE
2026/05/08 23:02:54.661947436
2026/05/08 23:02:54.661948125 $mailer
2026/05/08 23:02:54.661956631 [1] "mailto"
2026/05/08 23:02:54.661957340
2026/05/08 23:02:54.661968265 $matprod
2026/05/08 23:02:54.661969019 [1] "default"
2026/05/08 23:02:54.661978411
2026/05/08 23:02:54.661979187 $max.contour.segments
2026/05/08 23:02:54.661989019 [1] 25000
2026/05/08 23:02:54.661989788
2026/05/08 23:02:54.661997955 $max.print
2026/05/08 23:02:54.661998689 [1] 99999
2026/05/08 23:02:54.662007697
2026/05/08 23:02:54.662008461 $menu.graphics
2026/05/08 23:02:54.662017210 [1] TRUE
2026/05/08 23:02:54.662018007
2026/05/08 23:02:54.662026137 $na.action
2026/05/08 23:02:54.662026924 [1] "na.omit"
2026/05/08 23:02:54.662036507
2026/05/08 23:02:54.662037326 $nwarnings
2026/05/08 23:02:54.662046052 [1] 50
2026/05/08 23:02:54.662046799
2026/05/08 23:02:54.662054812 $OutDec
2026/05/08 23:02:54.662055520 [1] "."
2026/05/08 23:02:54.662064097
2026/05/08 23:02:54.662064770 $pager
2026/05/08 23:02:54.662072967 [1] "/opt/R/4.5.2/lib/R/bin/pager"
2026/05/08 23:02:54.662073801
2026/05/08 23:02:54.662083626 $papersize
2026/05/08 23:02:54.662085813 [1] "letter"
2026/05/08 23:02:54.662095355
2026/05/08 23:02:54.662096078 $PCRE_limit_recursion
2026/05/08 23:02:54.662105611 [1] NA
2026/05/08 23:02:54.662106306
2026/05/08 23:02:54.662114306 $PCRE_study
2026/05/08 23:02:54.662114939 [1] FALSE
2026/05/08 23:02:54.662124351
2026/05/08 23:02:54.662125097 $PCRE_use_JIT
2026/05/08 23:02:54.662133702 [1] TRUE
2026/05/08 23:02:54.662134421
2026/05/08 23:02:54.662142700 $pdfviewer
2026/05/08 23:02:54.662143357 [1] "/usr/bin/xdg-open"
2026/05/08 23:02:54.662153596
2026/05/08 23:02:54.662154323 $pkgType
2026/05/08 23:02:54.662162895 [1] "source"
2026/05/08 23:02:54.662163581
2026/05/08 23:02:54.662176312 $printcmd
2026/05/08 23:02:54.662177157 [1] "/usr/bin/lpr"
2026/05/08 23:02:54.662186970
2026/05/08 23:02:54.662187626 $prompt
2026/05/08 23:02:54.662195889 [1] "> "
2026/05/08 23:02:54.662196625
2026/05/08 23:02:54.662204883 $repos
2026/05/08 23:02:54.662205598 CRAN
2026/05/08 23:02:54.662214390 "@CRAN@"
2026/05/08 23:02:54.662215077
2026/05/08 23:02:54.662223358 $rl_word_breaks
2026/05/08 23:02:54.662224151 [1] " \t\n\"\\'`><=%;,|&{()}"
2026/05/08 23:02:54.662234151
2026/05/08 23:02:54.662234873 $scipen
2026/05/08 23:02:54.662258863 [1] 0
2026/05/08 23:02:54.662259743
2026/05/08 23:02:54.662267447 $show.coef.Pvalues
2026/05/08 23:02:54.662268212 [1] TRUE
2026/05/08 23:02:54.662278422
2026/05/08 23:02:54.662279120 $show.error.messages
2026/05/08 23:02:54.662288585 [1] TRUE
2026/05/08 23:02:54.662289276
2026/05/08 23:02:54.662297473 $show.signif.stars
2026/05/08 23:02:54.662298285 [1] TRUE
2026/05/08 23:02:54.662307920
2026/05/08 23:02:54.662308712 $showErrorCalls
2026/05/08 23:02:54.662317695 [1] TRUE
2026/05/08 23:02:54.662318450
2026/05/08 23:02:54.662326469 $showNCalls
2026/05/08 23:02:54.662327214 [1] 50
2026/05/08 23:02:54.662336268
2026/05/08 23:02:54.662336970 $showWarnCalls
2026/05/08 23:02:54.662345942 [1] FALSE
2026/05/08 23:02:54.662346678
2026/05/08 23:02:54.662355150 $str
2026/05/08 23:02:54.662355834 $str$strict.width
2026/05/08 23:02:54.662365102 [1] "no"
2026/05/08 23:02:54.662365794
2026/05/08 23:02:54.662373830 $str$digits.d
2026/05/08 23:02:54.662374515 [1] 3
2026/05/08 23:02:54.662383421
2026/05/08 23:02:54.662384295 $str$vec.len
2026/05/08 23:02:54.662393136 [1] 4
2026/05/08 23:02:54.662393921
2026/05/08 23:02:54.662401671 $str$list.len
2026/05/08 23:02:54.662402345 [1] 99
2026/05/08 23:02:54.662411411
2026/05/08 23:02:54.662412037 $str$deparse.lines
2026/05/08 23:02:54.662421154 NULL
2026/05/08 23:02:54.662421935
2026/05/08 23:02:54.662429932 $str$drop.deparse.attr
2026/05/08 23:02:54.662430654 [1] TRUE
2026/05/08 23:02:54.662440469
2026/05/08 23:02:54.662441254 $str$formatNum
2026/05/08 23:02:54.662450197 function (x, ...)
2026/05/08 23:02:54.662451003 format(x, trim = TRUE, drop0trailing = TRUE, ...)
2026/05/08 23:02:54.662463448 <environment: 0x5606ab4b9e60>
2026/05/08 23:02:54.662464157
2026/05/08 23:02:54.662474684
2026/05/08 23:02:54.662475436 $str.dendrogram.last
2026/05/08 23:02:54.662485025 [1] "`"
2026/05/08 23:02:54.662485787
2026/05/08 23:02:54.662493733 $texi2dvi
2026/05/08 23:02:54.662494463 [1] "/usr/bin/texi2dvi"
2026/05/08 23:02:54.662505237
2026/05/08 23:02:54.662505983 $timeout
2026/05/08 23:02:54.662514558 [1] 60
2026/05/08 23:02:54.662515318
2026/05/08 23:02:54.662523271 $ts.eps
2026/05/08 23:02:54.662523963 [1] 1e-05
2026/05/08 23:02:54.662532950
2026/05/08 23:02:54.662533661 $ts.S.compat
2026/05/08 23:02:54.662542385 [1] FALSE
2026/05/08 23:02:54.662543039
2026/05/08 23:02:54.662551247 $unzip
2026/05/08 23:02:54.662552015 [1] "/usr/bin/unzip"
2026/05/08 23:02:54.662561367
2026/05/08 23:02:54.662562063 $useFancyQuotes
2026/05/08 23:02:54.662571001 [1] TRUE
2026/05/08 23:02:54.662571747
2026/05/08 23:02:54.662580013 $verbose
2026/05/08 23:02:54.662580773 [1] FALSE
2026/05/08 23:02:54.662589950
2026/05/08 23:02:54.662590696 $warn
2026/05/08 23:02:54.662598977 [1] 0
2026/05/08 23:02:54.662599717
2026/05/08 23:02:54.662607860 $warning.length
2026/05/08 23:02:54.662608559 [1] 1000
2026/05/08 23:02:54.662617944
2026/05/08 23:02:54.662618614 $warnPartialMatchArgs
2026/05/08 23:02:54.662627921 [1] FALSE
2026/05/08 23:02:54.662628649
2026/05/08 23:02:54.662637114 $warnPartialMatchAttr
2026/05/08 23:02:54.662637734 [1] FALSE
2026/05/08 23:02:54.662647765
2026/05/08 23:02:54.662648442 $warnPartialMatchDollar
2026/05/08 23:02:54.662677092 [1] FALSE
2026/05/08 23:02:54.662677993
2026/05/08 23:02:54.662686231 $width
2026/05/08 23:02:54.662687015 [1] 80
2026/05/08 23:02:54.662695583
Stopped session pings to http://127.0.0.1:46049
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/05/08 23:02:54.680277587 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:54.680493263 [connect-session] Job Key: e1EWbaFQ9TbJqSiA
2026/05/08 23:02:54.680504674 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:54.680507653 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:33209 ...
Connected to session server http://127.0.0.1:33209
2026/05/08 23:02:54.864845019 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:54.865086724 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:54.865162459 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/04-environment.sh
2026/05/08 23:02:54.872343644
2026/05/08 23:02:54.872351929 $ env
2026/05/08 23:02:54.872398581 CONNECT_API_KEY=REDACTED
2026/05/08 23:02:54.872399755 CONNECT_CONTENT_GUID=
2026/05/08 23:02:54.872411478 CONNECT_CONTENT_JOB_KEY=REDACTED
2026/05/08 23:02:54.872412212 CONNECT_CONTENT_SESSION_TOKEN=REDACTED
2026/05/08 23:02:54.872423669 CONNECT_SERVER=http://localhost:3939/
2026/05/08 23:02:54.872424441 EDITOR=vi
2026/05/08 23:02:54.872438784 HOME=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:54.872439210 HOSTNAME=7487772abf07
2026/05/08 23:02:54.872447178 LANG=en_US.UTF-8
2026/05/08 23:02:54.872447591 LANGUAGE=en_US:en
2026/05/08 23:02:54.872454273 LC_ALL=en_US.UTF-8
2026/05/08 23:02:54.872454850 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/05/08 23:02:54.872474692 LN_S=ln -s
2026/05/08 23:02:54.872475297 LOGNAME=rstudio-connect
2026/05/08 23:02:54.872482501 MAKE=make
2026/05/08 23:02:54.872482896 PAGER=/usr/bin/pager
2026/05/08 23:02:54.872488498 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/05/08 23:02:54.872493405 POSIT_PRODUCT=CONNECT
2026/05/08 23:02:54.872504946 PWD=/opt/rstudio-connect/mnt/app
2026/05/08 23:02:54.872505391 R_ARCH=
2026/05/08 23:02:54.872511444 R_BROWSER=xdg-open
2026/05/08 23:02:54.872511865 R_BZIPCMD=/usr/bin/bzip2
2026/05/08 23:02:54.872517965 R_CONFIG_ACTIVE=rsconnect
2026/05/08 23:02:54.872518394 R_DOC_DIR=/opt/R/4.5.2/lib/R/doc
2026/05/08 23:02:54.872530442 RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:54.872531530 R_GZIPCMD=/usr/bin/gzip
2026/05/08 23:02:54.872551508 R_HOME=/opt/R/4.5.2/lib/R
2026/05/08 23:02:54.872552330 R_INCLUDE_DIR=/opt/R/4.5.2/lib/R/include
2026/05/08 23:02:54.872562388 R_LIBS=/opt/rstudio-connect/mnt/R/4.5.2
2026/05/08 23:02:54.872563199 R_LIBS_SITE=/opt/R/4.5.2/lib/R/site-library
2026/05/08 23:02:54.872576255 R_LIBS_USER=REDACTED
2026/05/08 23:02:54.872576929 R_PAPERSIZE=letter
2026/05/08 23:02:54.872587133 R_PDFVIEWER=/usr/bin/xdg-open
2026/05/08 23:02:54.872587850 R_PLATFORM=x86_64-pc-linux-gnu
2026/05/08 23:02:54.872598423 R_PRINTCMD=/usr/bin/lpr
2026/05/08 23:02:54.872599152 R_RD4PDF=times,inconsolata,hyper
2026/05/08 23:02:54.872610409 RSC_EMAIL_SUBJECT=system-check
2026/05/08 23:02:54.872611084 RSC_REPORT_NAME=system-check
2026/05/08 23:02:54.872622027 RSC_REPORT_RENDERING_URL=[[==RSC_REPORT_RENDERING_URL==]]
2026/05/08 23:02:54.872622730 RSC_REPORT_SUBSCRIPTION_URL=[[==RSC_REPORT_SUBSCRIPTION_URL==]]
2026/05/08 23:02:54.872638074 RSC_REPORT_URL=[[==RSC_REPORT_URL==]]
2026/05/08 23:02:54.872638695 R_SESSION_TMPDIR=/opt/rstudio-connect/mnt/tmp/RtmpcV4GLT
2026/05/08 23:02:54.872657472 R_SHARE_DIR=/opt/R/4.5.2/lib/R/share
2026/05/08 23:02:54.872658196 R_STRIP_SHARED_LIB=strip --strip-unneeded
2026/05/08 23:02:54.872681171 R_STRIP_STATIC_LIB=strip --strip-debug
2026/05/08 23:02:54.872681624 RSTUDIO_PANDOC=/opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:54.872689879 RSTUDIO_PRODUCT=CONNECT
2026/05/08 23:02:54.872690283 R_TEXI2DVICMD=/usr/bin/texi2dvi
2026/05/08 23:02:54.872702405 R_UNZIPCMD=/usr/bin/unzip
2026/05/08 23:02:54.872702830 R_ZIPCMD=/usr/bin/zip
2026/05/08 23:02:54.872713228 SED=/usr/bin/sed
2026/05/08 23:02:54.872713987 SF_PARTNER=posit_connect
2026/05/08 23:02:54.872728170 SHLVL=2
2026/05/08 23:02:54.872730509 SPARK_CONNECT_USER_AGENT=REDACTED
2026/05/08 23:02:54.872762575 STARTUP_DEBUG_MODE=0
2026/05/08 23:02:54.872763827 TAR=/usr/bin/tar
2026/05/08 23:02:54.872774554 TERM=xterm
2026/05/08 23:02:54.872774981 TMPDIR=/opt/rstudio-connect/mnt/tmp
2026/05/08 23:02:54.872782893 TZ=UTC
2026/05/08 23:02:54.872783290 USERNAME=rstudio-connect
2026/05/08 23:02:54.872800708 USER=rstudio-connect
2026/05/08 23:02:54.876421792 _=/usr/bin/env
Stopped session pings to http://127.0.0.1:33209
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/05/08 23:02:54.890142999 [connect-session] Connect Session v2026.04.0
2026/05/08 23:02:54.890380833 [connect-session] Job Key: xboD0Yws7c1fWz96
2026/05/08 23:02:54.890393678 [connect-session] Warning: Failed to create Connect client: "CONNECT_API_KEY" is missing or empty
2026/05/08 23:02:54.890396958 [connect-session] Warning: Workload identities are disabled
Job started
Determining session server location ...
Connecting to session server http://127.0.0.1:43551 ...
Connected to session server http://127.0.0.1:43551
2026/05/08 23:02:55.070305861 Setting RETICULATE_PYTHON=/opt/rstudio-connect/mnt/app/python/env/bin/python
2026/05/08 23:02:55.070522249 Using pandoc: /opt/rstudio-connect/ext/pandoc/2.16
2026/05/08 23:02:55.070616013 Running system check: /opt/rstudio-connect/scripts/system-checks/rmarkdown-sandbox/05-mounts.sh
2026/05/08 23:02:55.077013380
2026/05/08 23:02:55.077020466 $ findmnt --notruncate
2026/05/08 23:02:55.077085390 TARGET SOURCE FSTYPE OPTIONS
2026/05/08 23:02:55.077088102 / overlay overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docker/ov
erlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:55.077218271 ├─/proc proc proc rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:55.077219551 ├─/dev tmpfs tmpfs rw,nosuid,size=65536k,mode=755,inode64
2026/05/08 23:02:55.077272871 │ ├─/dev/pts devpts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:55.077274581 │ ├─/dev/mqueue mqueue mqueue rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:55.077290663 │ ├─/dev/shm shm tmpfs rw,nosuid,nodev,noexec,relatime,size=65536k,inode64
2026/05/08 23:02:55.077291199 │ └─/dev/console devpts[/0] devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=666
2026/05/08 23:02:55.077311876 ├─/sys sysfs sysfs rw,nosuid,nodev,noexec,relatime
2026/05/08 23:02:55.077312759 │ └─/sys/fs/cgroup cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
2026/05/08 23:02:55.077352523 ├─/data /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077355376 │ ├─/data/db overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/doc
ker/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:55.077458937 │ └─/data overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/doc
ker/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:55.077539372 ├─/etc/resolv.conf /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/resolv.conf] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077542055 ├─/etc/hostname /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hostname] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077579168 ├─/etc/hosts /dev/sda1[/var/lib/docker/containers/7487772abf07d5a5ce1f01674426aa5fe4bf673d3c7729d08c7ae78135598243/hosts] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077579806 ├─/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/05/08 23:02:55.077604665 ├─/opt/rstudio-connect/mnt/app /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/reports/v2/0/0/temp.source.1642547034] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077605142 ├─/opt/rstudio-connect/mnt/report /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/reports/v2/0/0/temp.output.265771237] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077639751 ├─/opt/rstudio-connect/mnt/job /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/jobs/0/xboD0Yws7c1fWz96] ext4 rw,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077644236 ├─/opt/rstudio-connect/mnt/python-environments /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/python-environments] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077707012 ├─/opt/rstudio-connect/mnt/packrat /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/packrat] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077708141 ├─/opt/rstudio-connect/mnt/R /dev/sda1[/var/lib/docker/volumes/34221a0c771ce91b10fb7fb6d0f6a43715bb13a112a10224cb6bce390c19a243/_data/R] ext4 ro,relatime,discard,errors=remount-ro,commit=30
2026/05/08 23:02:55.077744160 ├─/opt/rstudio-connect/mnt/tmp overlay[/tmp/connect-workspaces/connectworkspace1654335277] overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:55.077749452 ├─/tmp/connect-workspaces overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
2026/05/08 23:02:55.080850613 └─/etc/rstudio-connect overlay[/opt/rstudio-connect/mnt/empty] overlay ro,relatime,lowerdir=/var/lib/docker/overlay2/l/A4AGEREULSFZRPAEOONIQ6JOQH:/var/lib/docker/overlay2/l/7NTSQXPDC4E6TZT4D73ZBQ3MZA:/var/lib/docker/overlay2/l/M2UMRG7CQT2JLLRY6RV4MVAV22:/var/lib/docker/overlay2/l/ESYXHMO5KA3MG7UZZFRZQZGFDS:/var/lib/docker/overlay2/l/7NGPF7LRMKALHOTU3VQV6LQE3E:/var/lib/docker/overlay2/l/X6OMBYZVOLRKKHPZGZR43VJYWC:/var/lib/docker/overlay2/l/L5P4RKQU5H2HQ3NYRHV6EZB4E6:/var/lib/docker/overlay2/l/5V2D3QDCQNRXPGKIWP75MWALCH:/var/lib/docker/overlay2/l/VQ6ZB5RMXGDVP3KLWIN7SHIRJA:/var/lib/docker/overlay2/l/MU7XUQQMQE3DYEY3G33FZOIMXC:/var/lib/docker/overlay2/l/64L2I5VKQ4VRNOYRIVFVJ6CVJL:/var/lib/docker/overlay2/l/QFK3VBR4D5YQG7QZPWXCHMNRFB:/var/lib/docker/overlay2/l/F3IPPMTOYTKF6H4DNMM24HKFPC:/var/lib/docker/overlay2/l/GIFHQ7QIXAEHETHLSF5G5YY5JD:/var/lib/docke
r/overlay2/l/U3U5HFR7YLHF4VLPAJ3ITKFLPS:/var/lib/docker/overlay2/l/RXX5CT7IMMDB5K3Q66I5PFURBX:/var/lib/docker/overlay2/l/4GDMHG42OI7CFONH3H22GIFWRB:/var/lib/docker/overlay2/l/ZAF5XF7G6F6IJNSLBZ3T2WKF5B:/var/lib/docker/overlay2/l/2ZSWV25Z2ZYPII5MY66I53EMKR,upperdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/diff,workdir=/var/lib/docker/overlay2/326552b820316b7b0e27d6c5ee2a9d0f51be1f89c252935f970f147e25ff3c95/work,nouserxattr
Stopped session pings to http://127.0.0.1:43551
Job completed