Skip to content

Commit

Permalink
Fix: Sentry SDK was absent from most installs
Browse files Browse the repository at this point in the history
Problem: Setting a value for `SENTRY_DNS` often did not work because the Sentry SDK was not installed.

The Sentry SDK has a very limited number of dependencies.

Solution: Install the Sentry SDK by default from the Debian packages.
  • Loading branch information
hoh committed Sep 25, 2023
1 parent 2b39b16 commit d16b73e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ debian-package-code:
cp ../examples/instance_message_from_aleph.json ./aleph-vm/opt/aleph-vm/examples/instance_message_from_aleph.json
cp -r ../examples/data ./aleph-vm/opt/aleph-vm/examples/data
mkdir -p ./aleph-vm/opt/aleph-vm/examples/volumes
pip3 install --target ./aleph-vm/opt/aleph-vm/ 'aleph-message==0.4.0' 'jwskate==0.8.0' 'eth-account==0.9.0'
pip3 install --target ./aleph-vm/opt/aleph-vm/ 'aleph-message==0.4.0' 'jwskate==0.8.0' 'eth-account==0.9.0' 'sentry-sdk==1.31.0'
python3 -m compileall ./aleph-vm/opt/aleph-vm/

debian-package-resources: firecracker-bins vmlinux download-ipfs-kubo
Expand Down

0 comments on commit d16b73e

Please sign in to comment.