Client.Timeout exceeded while awaiting headers
Metadata
Current evaluation
rockcraft pack fails with a Client.Timeout error when installing the rockcraft snap into the LXC build environment via the snapcraft API. Open, zero comments, no labels, 700 days inactive. Requires triage.
Suggested action: close not a bug
Reason: The reported error is a network timeout during a snap installation inside a container, which strongly indicates a local network, firewall, or proxy configuration issue rather than a code defect. Combined with 700 days of inactivity and zero maintainer interaction, this is best classified as a support request that is no longer actionable.
Staleness:
95
Complexity:
30
Confidence:
85
Support Request:
90
Issue body
### Bug Description
```
failed to inject host's snap 'rockcraft' into target environment.nstance from remote
* Command that failed: 'lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic'
* Command exit code: 1
* Command standard error output: b'error: cannot perform the following tasks:\n- Ensure prerequisites for "rockcraft" are available (cannot install system snap "snapd": Post "https://api.snapcraft.io/v2/snaps/refresh": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers))\n'
Full execution log: '/home/masterg/.local/state/rockcraft/log/rockcraft-20240716-124609.141137.log'
```
### To Reproduce
Following the steps on the tutorial: https://documentation.ubuntu.com/rockcraft/en/latest/tutorial/flask/
Error occured while running `rockcraft pack`
### Environment
Here is the output of `uname -a` for my system
`Linux masterg-HP-EliteBook-840-G4 6.8.0-38-generic #38-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:25:01 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux`
### rockcraft.yaml
```shell
name: python-tooling-interview
# see https://documentation.ubuntu.com/rockcraft/en/stable/explanation/bases/
# for more information about bases and using 'bare' bases for chiselled rocks
base: ubuntu@22.04 # the base environment for this Flask application
version: '0.1' # just for humans. Semantic versioning is recommended
summary: A summary of your Flask application # 79 char long summary
description: |
This is python-tooling-interview's description. You have a paragraph or two to tell the
most important story about it. Keep it under 100 words though,
we live in tweetspace and your description wants to look good in the
container registries out there.
platforms: # the platforms this rock should be built on and run on
amd64:
# to ensure the flask-framework extension works properly, your Flask application
# should have an `app.py` file with an `app` object as the WSGI entrypoint.
# a `requirements.txt` file with at least the flask package should also exist.
# see https://documentation.ubuntu.com/rockcraft/en/stable/reference/extensions/flask-framework
# for more information.
extensions:
- flask-framework
# uncomment the sections you need and adjust according to your requirements.
# parts: # you need to uncomment this line to add or update any part.
# flask-framework/install-app:
# prime:
# # by default, only the files in app/, templates/, static/, migrate,
# # migrate.sh and app.py are copied into the image. You can modify the list
# # below to override the default list and include or exclude specific
# # files/directories in your project.
# # note: prefix each entry with "flask/app/" followed by the local path.
# - flask/app/.env
# - flask/app/app.py
# - flask/app/webapp
# - flask/app/templates
# - flask/app/static
# you may need packages to build a python package. Add them here if necessary.
# flask-framework/dependencies:
# build-packages:
# # for example, if you need pkg-config and libxmlsec1-dev to build one
# # of your packages:
# - pkg-config
# - libxmlsec1-dev
# you can add package slices or Debian packages to the image.
# package slices are subsets of Debian packages, which result
# in smaller and more secure images.
# see https://documentation.ubuntu.com/rockcraft/en/latest/explanation/chisel/
# add this part if you want to add packages slices to your image.
# you can find a list of packages slices at https://github.com/canonical/chisel-releases
# runtime-slices:
# plugin: nil
# stage-packages:
# # list the required package slices for your flask application below.
# # for example, for the slice libs of libpq5:
# - libpq5_libs
# if you want to add a Debian package to your image, add the next part
# runtime-debs:
# plugin: nil
# stage-packages:
# # list required Debian packages for your flask application below.
# - libpq5
```
```
### Relevant log output
```shell
2024-07-16 12:40:06.148 Starting rockcraft, version 1.5.3
2024-07-16 12:40:06.148 Log verbosity level set to BRIEF
2024-07-16 12:40:06.148 Configuring application...
2024-07-16 12:40:06.148 Preparing application...
2024-07-16 12:40:06.149 Build plan: platform=None, build_for=None
2024-07-16 12:40:06.149 Loading project file '/home/masterg/Documents/canonical/python-tooling-interview/rockcraft.yaml'
2024-07-16 12:40:06.154 Processing grammar (on amd64 for amd64)
2024-07-16 12:40:06.154 Processing grammar for plugin: python
2024-07-16 12:40:06.154 Processing grammar for stage-packages: ['python3-venv']
2024-07-16 12:40:06.154 Processing grammar for source: .
2024-07-16 12:40:06.154 Not processing grammar for non-grammar enabled keyword python-packages
2024-07-16 12:40:06.154 Not processing grammar for non-grammar enabled keyword python-requirements
2024-07-16 12:40:06.154 Processing grammar for plugin: dump
2024-07-16 12:40:06.154 Processing grammar for source: .
2024-07-16 12:40:06.154 Processing grammar for organize: {'app.py': 'flask/app/app.py'}
2024-07-16 12:40:06.154 Processing grammar for stage: ['flask/app/app.py']
2024-07-16 12:40:06.155 Processing grammar for prime: ['flask/app/app.py']
2024-07-16 12:40:06.155 Processing grammar for plugin: dump
2024-07-16 12:40:06.155 Processing grammar for source: /snap/rockcraft/2218/share/rockcraft/extensions/flask-framework
2024-07-16 12:40:06.155 Processing grammar for organize: {'gunicorn.conf.py': 'flask/gunicorn.conf.py'}
2024-07-16 12:40:06.155 Processing grammar for build-snaps: ['go']
2024-07-16 12:40:06.155 Processing grammar for source-tag: v0.26.0
2024-07-16 12:40:06.155 Processing grammar for plugin: go
2024-07-16 12:40:06.155 Processing grammar for source: https://github.com/prometheus/statsd_exporter.git
2024-07-16 12:40:06.155 Processing grammar for plugin: nil
2024-07-16 12:40:06.155 Processing grammar for stage-packages: ['ca-certificates_data']
2024-07-16 12:40:06.155 Processing grammar for plugin: nil
2024-07-16 12:40:06.155 Processing grammar for stage-snaps: ['pebble/latest/stable']
2024-07-16 12:40:06.155 Processing grammar for override-prime: craftctl default
mkdir -p var/lib/pebble/default/layers
chmod 777 var/lib/pebble/default
2024-07-16 12:40:06.155 Processing grammar for stage: ['bin/pebble']
2024-07-16 12:40:06.156 Running rockcraft:amd64 in amd64 instance...
2024-07-16 12:40:06.157 Setting up RockcraftProviderService
2024-07-16 12:40:06.157 Preparing managed instance 'rockcraft-python-tooling-interview-on-amd64-for-amd64-9046794'
2024-07-16 12:40:06.157 Using hostname 'rockcraft-python-tooling-interview-on-amd64-for-amd64-9046794'
2024-07-16 12:40:06.164 Retrieved snap config: {}
2024-07-16 12:40:06.164 Using default provider 'lxd' on linux system.
2024-07-16 12:40:06.164 Checking if LXD is installed.
2024-07-16 12:40:06.221 LXD snap status: active
2024-07-16 12:40:06.222 Checking if LXD is installed.
2024-07-16 12:40:06.261 LXD snap status: active
2024-07-16 12:40:07.857 Executing on host: lxc --project default profile show local:default
2024-07-16 12:40:08.603 Launching managed ubuntu 22.04 instance...
2024-07-16 12:40:08.605 Executing on host: lxc remote list --format=yaml
2024-07-16 12:40:08.722 Remote 'craft-com.ubuntu.cloud-buildd' already exists.
2024-07-16 12:40:08.723 Executing on host: lxc project list local: --format=yaml
2024-07-16 12:40:08.809 Executing on host: lxc --project rockcraft project create local:rockcraft
2024-07-16 12:40:08.880 Executing on host: lxc --project default profile show local:default
2024-07-16 12:40:08.947 Executing on host: lxc --project rockcraft profile edit local:default
2024-07-16 12:40:09.029 Set LXD instance name to 'rockcraft-python-tooling-interview-on-amd64-for-amd64-9046794'
2024-07-16 12:40:09.029 Checking for instance 'rockcraft-python-tooling-interview-on-amd64-for-amd64-9046794' in project 'rockcraft' in remote 'local'
2024-07-16 12:40:09.029 Executing on host: lxc --project rockcraft list local: --format=yaml
2024-07-16 12:40:09.099 Instance 'rockcraft-python-tooling-interview-on-amd64-for-amd64-9046794' does not exist.
2024-07-16 12:40:09.099 Set LXD instance name to 'base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1'
2024-07-16 12:40:09.100 Checking for base instance 'base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1' in project 'rockcraft' in remote 'local'
2024-07-16 12:40:09.100 Executing on host: lxc --project rockcraft list local: --format=yaml
2024-07-16 12:40:09.160 Base instance 'base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1' does not exist.
2024-07-16 12:40:09.160 Creating new instance from remote
2024-07-16 12:40:09.160 Creating new base instance from remote
2024-07-16 12:40:09.160 Creating new base instance from image 'core22' from remote 'craft-com.ubuntu.cloud-buildd'
2024-07-16 12:40:09.160 Executing on host: lxc --project rockcraft info local:
2024-07-16 12:40:09.271 Executing on host: lxc --project rockcraft launch craft-com.ubuntu.cloud-buildd:core22 local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 --config 'raw.idmap=both 1000 0' --config security.syscalls.intercept.mknod=true --config user.craft_providers.status=STARTING --config user.craft_providers.timer=2024-07-16T07:10:09.271848+00:00 --config user.craft_providers.pid=58362
2024-07-16 12:41:45.118 Successfully launched instance base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1.
2024-07-16 12:41:45.118 Executing on host: lxc --project rockcraft config get local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.status
2024-07-16 12:41:45.220 Setting up base instance 'base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1'
2024-07-16 12:41:45.220 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.status PREPARING
2024-07-16 12:41:45.399 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:11:45.399685+00:00
2024-07-16 12:41:45.403 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:41:45.579 Set instance timer to '2024-07-16T07:11:45.399685+00:00'
2024-07-16 12:41:45.622 Executing on host: lxc --project rockcraft file push /tmp/tmp6w7j0jxp local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf --mode=0644
2024-07-16 12:41:45.757 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/craft-instance.conf
2024-07-16 12:41:46.002 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical cat /etc/os-release
2024-07-16 12:41:46.186 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:41:46.558 Executing on host: lxc --project rockcraft file pull local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf /home/masterg/tmp6dhhn2f0.tmp-craft/tmpvq9l83zc
2024-07-16 12:41:46.695 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:41:46.911 Executing on host: lxc --project rockcraft file pull local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf /home/masterg/tmpjw2_n2sz.tmp-craft/tmp_ef1r7tb
2024-07-16 12:41:47.009 Executing on host: lxc --project rockcraft file push /tmp/tmptkhaxtor local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf --mode=0644
2024-07-16 12:41:47.106 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/craft-instance.conf
2024-07-16 12:41:47.467 Executing on host: lxc --project rockcraft file push /tmp/tmpsjg1s48c local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/environment --mode=0644
2024-07-16 12:41:47.556 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/environment
2024-07-16 12:41:47.665 Executing on host: lxc --project rockcraft file push /tmp/tmpnuy1tis2 local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/apt/apt.conf.d/20auto-upgrades --mode=0644
2024-07-16 12:41:47.736 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/apt/apt.conf.d/20auto-upgrades
2024-07-16 12:41:47.857 Waiting for environment to be ready...
2024-07-16 12:41:47.857 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl is-system-running
2024-07-16 12:41:47.955 Executing on host: lxc --project rockcraft file push /tmp/tmpnxwpoeut local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/hostname --mode=0644
2024-07-16 12:41:48.053 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/hostname
2024-07-16 12:41:48.168 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical hostname -F /etc/hostname
2024-07-16 12:41:48.286 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
2024-07-16 12:41:48.390 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl enable systemd-resolved
2024-07-16 12:41:48.582 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:11:48.582334+00:00
2024-07-16 12:41:48.640 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl restart systemd-resolved
2024-07-16 12:41:48.726 Set instance timer to '2024-07-16T07:11:48.582334+00:00'
2024-07-16 12:41:48.842 Executing on host: lxc --project rockcraft file push /tmp/tmpzop18tgn local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/systemd/network/10-eth0.network --mode=0644
2024-07-16 12:41:48.934 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/systemd/network/10-eth0.network
2024-07-16 12:41:49.033 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl enable systemd-networkd
2024-07-16 12:41:49.243 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl restart systemd-networkd
2024-07-16 12:41:49.396 Waiting for networking to be ready...
2024-07-16 12:41:49.397 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical getent hosts snapcraft.io
2024-07-16 12:41:49.690 Executing on host: lxc --project rockcraft file push /tmp/tmp60vb5w8y local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/apt/apt.conf.d/00no-recommends --mode=0644
2024-07-16 12:41:49.824 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/apt/apt.conf.d/00no-recommends
2024-07-16 12:41:49.925 Executing on host: lxc --project rockcraft file push /tmp/tmpwu32lriq local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/apt/apt.conf.d/00update-errors --mode=0644
2024-07-16 12:41:50.021 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/apt/apt.conf.d/00update-errors
2024-07-16 12:41:50.189 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical apt-get update
2024-07-16 12:41:51.729 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:11:51.729384+00:00
2024-07-16 12:41:51.989 Set instance timer to '2024-07-16T07:11:51.729384+00:00'
2024-07-16 12:41:54.992 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:11:54.992244+00:00
2024-07-16 12:41:55.105 Set instance timer to '2024-07-16T07:11:54.992244+00:00'
2024-07-16 12:41:58.109 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:11:58.108824+00:00
2024-07-16 12:41:58.243 Set instance timer to '2024-07-16T07:11:58.108824+00:00'
2024-07-16 12:42:01.246 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:01.246346+00:00
2024-07-16 12:42:01.373 Set instance timer to '2024-07-16T07:12:01.246346+00:00'
2024-07-16 12:42:04.376 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:04.376240+00:00
2024-07-16 12:42:04.525 Set instance timer to '2024-07-16T07:12:04.376240+00:00'
2024-07-16 12:42:07.529 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:07.529320+00:00
2024-07-16 12:42:07.769 Set instance timer to '2024-07-16T07:12:07.529320+00:00'
2024-07-16 12:42:10.772 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:10.772254+00:00
2024-07-16 12:42:11.004 Set instance timer to '2024-07-16T07:12:10.772254+00:00'
2024-07-16 12:42:12.547 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical apt-get install -y apt-utils build-essential curl fuse udev python3 python3-dev python3-pip python3-wheel python3-setuptools gpg dirmngr gpg dirmngr
2024-07-16 12:42:14.007 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:14.007236+00:00
2024-07-16 12:42:14.116 Set instance timer to '2024-07-16T07:12:14.007236+00:00'
2024-07-16 12:42:17.119 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:17.119284+00:00
2024-07-16 12:42:17.276 Set instance timer to '2024-07-16T07:12:17.119284+00:00'
2024-07-16 12:42:20.279 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:20.279275+00:00
2024-07-16 12:42:20.391 Set instance timer to '2024-07-16T07:12:20.279275+00:00'
2024-07-16 12:42:23.395 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:23.395353+00:00
2024-07-16 12:42:23.555 Set instance timer to '2024-07-16T07:12:23.395353+00:00'
2024-07-16 12:42:26.558 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:26.557621+00:00
2024-07-16 12:42:26.695 Set instance timer to '2024-07-16T07:12:26.557621+00:00'
2024-07-16 12:42:29.698 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:29.698300+00:00
2024-07-16 12:42:29.838 Set instance timer to '2024-07-16T07:12:29.698300+00:00'
2024-07-16 12:42:32.841 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:32.841306+00:00
2024-07-16 12:42:32.957 Set instance timer to '2024-07-16T07:12:32.841306+00:00'
2024-07-16 12:42:35.959 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:35.959261+00:00
2024-07-16 12:42:36.119 Set instance timer to '2024-07-16T07:12:35.959261+00:00'
2024-07-16 12:42:39.122 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:39.122243+00:00
2024-07-16 12:42:39.252 Set instance timer to '2024-07-16T07:12:39.122243+00:00'
2024-07-16 12:42:42.255 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:42.255506+00:00
2024-07-16 12:42:42.454 Set instance timer to '2024-07-16T07:12:42.255506+00:00'
2024-07-16 12:42:45.463 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:45.461246+00:00
2024-07-16 12:42:45.615 Set instance timer to '2024-07-16T07:12:45.461246+00:00'
2024-07-16 12:42:48.626 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:48.626431+00:00
2024-07-16 12:42:48.880 Set instance timer to '2024-07-16T07:12:48.626431+00:00'
2024-07-16 12:42:51.886 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:51.884486+00:00
2024-07-16 12:42:52.035 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl is-active systemd-udevd
2024-07-16 12:42:52.105 Set instance timer to '2024-07-16T07:12:51.884486+00:00'
2024-07-16 12:42:52.186 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl enable systemd-udevd
2024-07-16 12:42:52.428 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl start systemd-udevd
2024-07-16 12:42:52.582 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical apt-get install -y snapd
2024-07-16 12:42:55.109 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:55.109282+00:00
2024-07-16 12:42:55.559 Set instance timer to '2024-07-16T07:12:55.109282+00:00'
2024-07-16 12:42:58.564 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:12:58.562280+00:00
2024-07-16 12:42:58.778 Set instance timer to '2024-07-16T07:12:58.562280+00:00'
2024-07-16 12:43:01.785 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:01.785534+00:00
2024-07-16 12:43:02.004 Set instance timer to '2024-07-16T07:13:01.785534+00:00'
2024-07-16 12:43:05.013 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:05.012958+00:00
2024-07-16 12:43:05.227 Set instance timer to '2024-07-16T07:13:05.012958+00:00'
2024-07-16 12:43:08.230 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:08.230288+00:00
2024-07-16 12:43:08.350 Set instance timer to '2024-07-16T07:13:08.230288+00:00'
2024-07-16 12:43:11.353 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:11.353324+00:00
2024-07-16 12:43:11.478 Set instance timer to '2024-07-16T07:13:11.353324+00:00'
2024-07-16 12:43:14.485 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:14.485695+00:00
2024-07-16 12:43:15.024 Set instance timer to '2024-07-16T07:13:14.485695+00:00'
2024-07-16 12:43:18.029 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:18.028864+00:00
2024-07-16 12:43:18.197 Set instance timer to '2024-07-16T07:13:18.028864+00:00'
2024-07-16 12:43:21.200 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:21.200710+00:00
2024-07-16 12:43:21.382 Set instance timer to '2024-07-16T07:13:21.200710+00:00'
2024-07-16 12:43:23.883 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical ln -sf /var/lib/snapd/snap /snap
2024-07-16 12:43:24.018 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl enable --now snapd.socket
2024-07-16 12:43:24.394 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:24.394324+00:00
2024-07-16 12:43:24.417 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical systemctl restart snapd.service
2024-07-16 12:43:24.727 Set instance timer to '2024-07-16T07:13:24.394324+00:00'
2024-07-16 12:43:25.506 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap wait system seed.loaded
2024-07-16 12:43:27.730 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:27.730247+00:00
2024-07-16 12:43:27.856 Set instance timer to '2024-07-16T07:13:27.730247+00:00'
2024-07-16 12:43:30.860 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:30.860442+00:00
2024-07-16 12:43:31.075 Set instance timer to '2024-07-16T07:13:30.860442+00:00'
2024-07-16 12:43:34.079 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:34.078283+00:00
2024-07-16 12:43:34.283 Set instance timer to '2024-07-16T07:13:34.078283+00:00'
2024-07-16 12:43:37.286 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:37.286300+00:00
2024-07-16 12:43:37.389 Set instance timer to '2024-07-16T07:13:37.286300+00:00'
2024-07-16 12:43:40.392 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:40.392257+00:00
2024-07-16 12:43:40.528 Set instance timer to '2024-07-16T07:13:40.392257+00:00'
2024-07-16 12:43:43.531 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:43.531288+00:00
2024-07-16 12:43:43.686 Set instance timer to '2024-07-16T07:13:43.531288+00:00'
2024-07-16 12:43:46.689 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:46.689352+00:00
2024-07-16 12:43:46.847 Set instance timer to '2024-07-16T07:13:46.689352+00:00'
2024-07-16 12:43:49.855 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:49.855204+00:00
2024-07-16 12:43:50.141 Set instance timer to '2024-07-16T07:13:49.855204+00:00'
2024-07-16 12:43:53.144 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:53.144251+00:00
2024-07-16 12:43:53.291 Set instance timer to '2024-07-16T07:13:53.144251+00:00'
2024-07-16 12:43:56.296 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:56.295195+00:00
2024-07-16 12:43:56.498 Set instance timer to '2024-07-16T07:13:56.295195+00:00'
2024-07-16 12:43:59.501 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:13:59.501252+00:00
2024-07-16 12:43:59.632 Set instance timer to '2024-07-16T07:13:59.501252+00:00'
2024-07-16 12:44:02.635 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:02.635305+00:00
2024-07-16 12:44:02.785 Set instance timer to '2024-07-16T07:14:02.635305+00:00'
2024-07-16 12:44:05.790 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:05.789071+00:00
2024-07-16 12:44:06.000 Set instance timer to '2024-07-16T07:14:05.789071+00:00'
2024-07-16 12:44:06.007 Holding refreshes for snaps.
2024-07-16 12:44:06.008 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap refresh --hold
2024-07-16 12:44:06.448 Waiting for pending snap refreshes to complete.
2024-07-16 12:44:06.448 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap watch '--last=auto-refresh?'
2024-07-16 12:44:06.727 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap unset system proxy.http
2024-07-16 12:44:07.156 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap unset system proxy.https
2024-07-16 12:44:07.506 Installing snap 'rockcraft' with channel=None and classic=True
2024-07-16 12:44:07.506 Installing snap 'rockcraft' from host (classic=True)
2024-07-16 12:44:07.519 Installing base snap 'core22' for 'rockcraft' from host
2024-07-16 12:44:07.519 Installing snap 'core22' from host (classic=False)
2024-07-16 12:44:07.525 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:44:07.742 Executing on host: lxc --project rockcraft file pull local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf /home/masterg/tmp29dd3c3h.tmp-craft/tmpfcgg_i72
2024-07-16 12:44:07.902 Revisions found: host='1380', target=None
2024-07-16 12:44:07.906 Creating an assert file for snap 'core22'
2024-07-16 12:44:07.907 Executing command on host: ['snap', 'known', 'account-key', 'public-key-sha3-384=BWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul']
2024-07-16 12:44:07.938 Executing command on host: ['snap', 'known', 'snap-declaration', 'snap-name=core22']
2024-07-16 12:44:07.971 Executing command on host: ['snap', 'known', 'snap-revision', 'snap-revision=1380', 'snap-id=amcUKQILKXHHTlmSa7NMdnXSx02dNeeT']
2024-07-16 12:44:08.131 Executing command on host: ['snap', 'known', 'account', 'account-id=canonical']
2024-07-16 12:44:08.145 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -d /tmp
2024-07-16 12:44:08.261 Executing on host: lxc --project rockcraft file push /home/masterg/tmpcj7ekja8.tmp-craft/tmp3zjv_sb2 local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/tmp/core22.assert --gid=0 --uid=0
2024-07-16 12:44:08.354 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap ack /tmp/core22.assert
2024-07-16 12:44:09.004 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:09.004276+00:00
2024-07-16 12:44:09.112 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -d /tmp
2024-07-16 12:44:09.168 Set instance timer to '2024-07-16T07:14:09.004276+00:00'
2024-07-16 12:44:09.332 Executing on host: lxc --project rockcraft file push /home/masterg/tmp25ujybcp.tmp-craft/core22.snap local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/tmp/core22.snap --gid=0 --uid=0
2024-07-16 12:44:10.912 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/core22.snap
2024-07-16 12:44:12.172 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:12.171377+00:00
2024-07-16 12:44:12.407 Set instance timer to '2024-07-16T07:14:12.171377+00:00'
2024-07-16 12:44:13.930 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:44:14.265 Executing on host: lxc --project rockcraft file pull local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf /home/masterg/tmpkvw_9w32.tmp-craft/tmp7fa7fwz8
2024-07-16 12:44:14.375 Executing on host: lxc --project rockcraft file push /tmp/tmpev0kv2sv local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf --mode=0644
2024-07-16 12:44:14.572 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical chown root:root /etc/craft-instance.conf
2024-07-16 12:44:14.782 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -f /etc/craft-instance.conf
2024-07-16 12:44:15.011 Executing on host: lxc --project rockcraft file pull local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/etc/craft-instance.conf /home/masterg/tmp093o8u_o.tmp-craft/tmpv9plznho
2024-07-16 12:44:15.162 Revisions found: host='2218', target=None
2024-07-16 12:44:15.189 Creating an assert file for snap 'rockcraft'
2024-07-16 12:44:15.190 Executing command on host: ['snap', 'known', 'account-key', 'public-key-sha3-384=BWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul']
2024-07-16 12:44:15.275 Executing command on host: ['snap', 'known', 'snap-declaration', 'snap-name=rockcraft']
2024-07-16 12:44:15.331 Executing command on host: ['snap', 'known', 'snap-revision', 'snap-revision=2218', 'snap-id=3mPIBn6L9IYLyBAZsaqjlnMk7huEtqlv']
2024-07-16 12:44:15.410 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:15.410254+00:00
2024-07-16 12:44:15.422 Executing command on host: ['snap', 'known', 'account', 'account-id=canonical']
2024-07-16 12:44:15.480 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -d /tmp
2024-07-16 12:44:15.779 Set instance timer to '2024-07-16T07:14:15.410254+00:00'
2024-07-16 12:44:15.783 Executing on host: lxc --project rockcraft file push /home/masterg/tmptews_8xt.tmp-craft/tmpfu_1ek28 local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/tmp/rockcraft.assert --gid=0 --uid=0
2024-07-16 12:44:16.172 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap ack /tmp/rockcraft.assert
2024-07-16 12:44:17.498 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical test -d /tmp
2024-07-16 12:44:17.766 Executing on host: lxc --project rockcraft file push /home/masterg/tmpvl87jshp.tmp-craft/rockcraft.snap local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1/tmp/rockcraft.snap --gid=0 --uid=0
2024-07-16 12:44:18.368 Executing in container: lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic
2024-07-16 12:44:18.781 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:18.781259+00:00
2024-07-16 12:44:19.189 Set instance timer to '2024-07-16T07:14:18.781259+00:00'
2024-07-16 12:44:22.192 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:22.192255+00:00
2024-07-16 12:44:22.310 Set instance timer to '2024-07-16T07:14:22.192255+00:00'
2024-07-16 12:44:25.320 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:25.320699+00:00
2024-07-16 12:44:25.441 Set instance timer to '2024-07-16T07:14:25.320699+00:00'
2024-07-16 12:44:28.444 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:28.444262+00:00
2024-07-16 12:44:28.560 Set instance timer to '2024-07-16T07:14:28.444262+00:00'
2024-07-16 12:44:31.563 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:31.563251+00:00
2024-07-16 12:44:31.721 Set instance timer to '2024-07-16T07:14:31.563251+00:00'
2024-07-16 12:44:34.724 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:34.724262+00:00
2024-07-16 12:44:34.962 Set instance timer to '2024-07-16T07:14:34.724262+00:00'
2024-07-16 12:44:37.964 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:37.964259+00:00
2024-07-16 12:44:38.263 Set instance timer to '2024-07-16T07:14:37.964259+00:00'
2024-07-16 12:44:41.266 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:41.266486+00:00
2024-07-16 12:44:41.384 Set instance timer to '2024-07-16T07:14:41.266486+00:00'
2024-07-16 12:44:44.387 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:44.387255+00:00
2024-07-16 12:44:44.521 Set instance timer to '2024-07-16T07:14:44.387255+00:00'
2024-07-16 12:44:47.524 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:47.524049+00:00
2024-07-16 12:44:47.621 Set instance timer to '2024-07-16T07:14:47.524049+00:00'
2024-07-16 12:44:50.624 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:50.624678+00:00
2024-07-16 12:44:50.753 Set instance timer to '2024-07-16T07:14:50.624678+00:00'
2024-07-16 12:44:53.757 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:53.756532+00:00
2024-07-16 12:44:53.958 Set instance timer to '2024-07-16T07:14:53.756532+00:00'
2024-07-16 12:44:56.961 Executing on host: lxc --project rockcraft config set local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 user.craft_providers.timer 2024-07-16T07:14:56.961286+00:00
2024-07-16 12:44:57.123 Set instance timer to '2024-07-16T07:14:56.961286+00:00'
2024-07-16 12:44:59.682 failed to inject host's snap 'rockcraft' into target environment.
* Command that failed: 'lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic'
* Command exit code: 1
* Command standard error output: b'error: cannot perform the following tasks:\n- Ensure prerequisites for "rockcraft" are available (cannot install system snap "snapd": Post "https://api.snapcraft.io/v2/snaps/refresh": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers))\n'
2024-07-16 12:44:59.703 Traceback (most recent call last):
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/actions/snap_installer.py", line 385, in inject_from_host
2024-07-16 12:44:59.703 executor.execute_run(
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/lxd_instance.py", line 293, in execute_run
2024-07-16 12:44:59.703 return self.lxc.exec(
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/lxc.py", line 387, in exec
2024-07-16 12:44:59.703 return runner(final_cmd, timeout=timeout, check=check, **kwargs)
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/usr/lib/python3.10/subprocess.py", line 526, in run
2024-07-16 12:44:59.703 raise CalledProcessError(retcode, process.args,
2024-07-16 12:44:59.703 subprocess.CalledProcessError: Command '['lxc', '--project', 'rockcraft', 'exec', 'local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1', '--', 'env', 'CRAFT_MANAGED_MODE=1', 'DEBIAN_FRONTEND=noninteractive', 'DEBCONF_NONINTERACTIVE_SEEN=true', 'DEBIAN_PRIORITY=critical', 'snap', 'install', '/tmp/rockcraft.snap', '--classic']' returned non-zero exit status 1.
2024-07-16 12:44:59.703
2024-07-16 12:44:59.703 The above exception was the direct cause of the following exception:
2024-07-16 12:44:59.703 Traceback (most recent call last):
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/base.py", line 676, in _install_snaps
2024-07-16 12:44:59.703 snap_installer.inject_from_host(
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/actions/snap_installer.py", line 394, in inject_from_host
2024-07-16 12:44:59.703 raise SnapInstallationError(
2024-07-16 12:44:59.703 craft_providers.actions.snap_installer.SnapInstallationError: failed to install snap 'rockcraft'
2024-07-16 12:44:59.703 * Command that failed: 'lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic'
2024-07-16 12:44:59.703 * Command exit code: 1
2024-07-16 12:44:59.703 * Command standard error output: b'error: cannot perform the following tasks:\n- Ensure prerequisites for "rockcraft" are available (cannot install system snap "snapd": Post "https://api.snapcraft.io/v2/snaps/refresh": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers))\n'
2024-07-16 12:44:59.703
2024-07-16 12:44:59.703 The above exception was the direct cause of the following exception:
2024-07-16 12:44:59.703 Traceback (most recent call last):
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/lxd_provider.py", line 152, in launched_environment
2024-07-16 12:44:59.703 instance = launch(
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/launcher.py", line 792, in launch
2024-07-16 12:44:59.703 _create_instance(
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/launcher.py", line 150, in _create_instance
2024-07-16 12:44:59.703 base_configuration.setup(executor=base_instance, mount_cache=False)
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/base.py", line 1044, in setup
2024-07-16 12:44:59.703 self._setup_snaps(executor=executor)
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/base.py", line 917, in _setup_snaps
2024-07-16 12:44:59.703 self._install_snaps(executor=executor)
2024-07-16 12:44:59.703 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/base.py", line 682, in _install_snaps
2024-07-16 12:44:59.704 raise BaseConfigurationError(
2024-07-16 12:44:59.704 craft_providers.errors.BaseConfigurationError: failed to inject host's snap 'rockcraft' into target environment.
2024-07-16 12:44:59.704 * Command that failed: 'lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic'
2024-07-16 12:44:59.704 * Command exit code: 1
2024-07-16 12:44:59.704 * Command standard error output: b'error: cannot perform the following tasks:\n- Ensure prerequisites for "rockcraft" are available (cannot install system snap "snapd": Post "https://api.snapcraft.io/v2/snaps/refresh": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers))\n'
2024-07-16 12:44:59.704
2024-07-16 12:44:59.704 The above exception was the direct cause of the following exception:
2024-07-16 12:44:59.704 Traceback (most recent call last):
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_application/application.py", line 535, in run
2024-07-16 12:44:59.704 self.run_managed(platform, build_for)
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_application/application.py", line 360, in run_managed
2024-07-16 12:44:59.704 with self.services.provider.instance(
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/usr/lib/python3.10/contextlib.py", line 135, in __enter__
2024-07-16 12:44:59.704 return next(self.gen)
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_application/services/provider.py", line 122, in instance
2024-07-16 12:44:59.704 with provider.launched_environment(
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/usr/lib/python3.10/contextlib.py", line 135, in __enter__
2024-07-16 12:44:59.704 return next(self.gen)
2024-07-16 12:44:59.704 File "/snap/rockcraft/2218/lib/python3.10/site-packages/craft_providers/lxd/lxd_provider.py", line 167, in launched_environment
2024-07-16 12:44:59.704 raise LXDError(str(error)) from error
2024-07-16 12:44:59.704 craft_providers.lxd.errors.LXDError: failed to inject host's snap 'rockcraft' into target environment.
2024-07-16 12:44:59.704 * Command that failed: 'lxc --project rockcraft exec local:base-instance-rockcraft-buildd-base-v7-c-a38d05774a6de0cf6ab1 -- env CRAFT_MANAGED_MODE=1 DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true DEBIAN_PRIORITY=critical snap install /tmp/rockcraft.snap --classic'
2024-07-16 12:44:59.704 * Command exit code: 1
2024-07-16 12:44:59.704 * Command standard error output: b'error: cannot perform the following tasks:\n- Ensure prerequisites for "rockcraft" are available (cannot install system snap "snapd": Post "https://api.snapcraft.io/v2/snaps/refresh": net/http: request canceled while waiting for connection(Client.Timeout exceeded while awaiting headers))\n'
2024-07-16 12:44:59.704 Full execution log: '/home/masterg/.local/state/rockcraft/log/rockcraft-20240716-124006.147309.log'
```
Evaluation history
| Date | Model | Scores | Action | Summary |
|---|---|---|---|---|
| 2026-06-16 11:04:43.318715+00:00 | qwen3.6-35b-a3b-mtp-q6 |
Staleness:
95
Complexity:
30
Confidence:
85
Support Request:
90
|
close not a bug | rockcraft pack fails with a Client.Timeout error when installing the rockcraft snap into the LXC build environment via the snapcraft API. Open, zero comments, no labels, 700 days inactive. Requires triage. |
| 2026-06-16 11:01:44.095623+00:00 | pending | — | — | — |