일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Kubernetes
- repository
- terraform
- cephadm
- OpenStack
- ceph
- k8s
- Octavia
- yum
- cloud-init
- kolla-ansible
- kolla
- pacman
- Arch
- grafana-loki
- port open
- Kubeflow
- KVM
- Docker
- Ansible
- Linux
- awx
- libvirt
- ubuntu
- golang
- archlinux
- HTML
- i3
- nfs-provisioner
- ceph-ansible
Archives
- Today
- Total
YJWANG
[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생 본문
60.Cloud/60.OpenStack
[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생
왕영주 2021. 7. 1. 09:55Magnum project를 사용 시 python-magnumclient 를 설치하게되는데 이 때 아래와 같이 메시지가 발생할 수 있다.
# openstack coe
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
from cryptography.utils import int_from_bytes
/usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead
from cryptography.utils import int_from_bytes
https://github.com/matrix-org/synapse/issues/9454
Warning: int_from_bytes is deprecated, use int.from_bytes instead · Issue #9454 · matrix-org/synapse
Description While using synapse to generate a config file, the following warning is thrown out: /usr/lib/python3.8/site-packages/twisted/conch/ssh/common.py:15: CryptographyDeprecationWarning: int_...
github.com
이는 상위 버전의 cryptography 패키지에서 발생하는 것으로 보이며 workaround를 통해 조치할 수 있다.
# pip3 uninstall matrix-synapse twisted cryptography bcrypt cftp
# pip3 install cryptography==3.2
이후 발생하지 않는다
혹은 문제가 있는 것이 아니므로 조치하지 않아도 된다.
반응형