LOG.warn is deprecated
Bug Description
LOG.warn is deprecated in Python 3 [1] . But it still used in a few places, non-deprecated LOG.warning should be used instead.
Note: If we are using logger from oslo.log, warn is still valid [2], but I agree we can switch to LOG.warning.
[1]https:/
[2]https:/
Related branches
- Server Team CI bot: Approve (continuous-integration) on 2019-10-17
-
Diff: 673 lines (+90/-92)27 files modifiedcloudinit/config/cc_apt_pipelining.py (+1/-1)
cloudinit/config/cc_byobu.py (+3/-3)
cloudinit/config/cc_chef.py (+10/-10)
cloudinit/config/cc_emit_upstart.py (+1/-1)
cloudinit/config/cc_final_message.py (+1/-1)
cloudinit/config/cc_growpart.py (+1/-1)
cloudinit/config/cc_keys_to_console.py (+3/-3)
cloudinit/config/cc_lxd.py (+7/-8)
cloudinit/config/cc_mounts.py (+7/-7)
cloudinit/config/cc_package_update_upgrade_install.py (+4/-3)
cloudinit/config/cc_phone_home.py (+6/-6)
cloudinit/config/cc_power_state_change.py (+6/-7)
cloudinit/config/cc_puppet.py (+5/-5)
cloudinit/config/cc_resizefs.py (+8/-9)
cloudinit/config/cc_resolv_conf.py (+2/-2)
cloudinit/config/cc_rightscale_userdata.py (+2/-2)
cloudinit/config/cc_rsyslog.py (+1/-1)
cloudinit/config/cc_scripts_per_boot.py (+2/-2)
cloudinit/config/cc_scripts_per_instance.py (+2/-2)
cloudinit/config/cc_scripts_per_once.py (+2/-2)
cloudinit/config/cc_scripts_user.py (+2/-2)
cloudinit/config/cc_scripts_vendor.py (+2/-2)
cloudinit/config/cc_seed_random.py (+1/-1)
cloudinit/config/cc_set_passwords.py (+1/-1)
cloudinit/config/cc_update_etc_hosts.py (+4/-4)
cloudinit/config/cc_yum_add_repo.py (+5/-5)
tests/unittests/test_handler/test_handler_power_state.py (+1/-1)
- Server Team CI bot: Approve (continuous-integration) on 2019-05-08
- Ryan Harper: Approve on 2019-05-07
-
Diff: 26 lines (+2/-2)2 files modifiedcloudinit/sources/DataSourceCloudStack.py (+1/-1)
cloudinit/sources/DataSourceEc2.py (+1/-1)
Changed in ironic: | |
assignee: | nobody → Anton Arefiev (aarefiev) |
importance: | Undecided → Low |
Changed in ironic: | |
status: | New → In Progress |
Changed in ironic-inspector: | |
status: | New → Triaged |
importance: | Undecided → Low |
tags: | added: low-hanging-fruit |
Changed in ironic-python-agent: | |
status: | New → Triaged |
importance: | Undecided → Low |
Changed in ironic-inspector: | |
assignee: | nobody → Zhenguo Niu (niu-zglinux) |
Changed in ironic-python-agent: | |
assignee: | nobody → Zhenguo Niu (niu-zglinux) |
Changed in ironic-inspector: | |
status: | Triaged → In Progress |
Fix proposed to branch: master
Review: https:/
Changed in ironic-python-agent: | |
status: | Triaged → In Progress |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 5d22ccf016b7088
Author: Anton Arefiev <email address hidden>
Date: Fri Oct 9 15:39:36 2015 +0300
Replace deprecated LOG.warn with warning
LOG.warn is deprecated. It still used in a few places. This updates
those one to use the non-deprecated LOG.warning instead.
Closes-Bug: 1508442
Change-Id: Id947e4c8ae9894
Changed in ironic: | |
status: | In Progress → Fix Committed |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit bcd8d5dfa069625
Author: Zhenguo Niu <email address hidden>
Date: Thu Oct 22 14:12:03 2015 +0800
Replace deprecated LOG.warn with LOG.warning
Closes-Bug: #1508442
Change-Id: Ifcc2004f327480
Changed in ironic-inspector: | |
status: | In Progress → Fix Committed |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 18d5d6aba31240f
Author: Zhenguo Niu <email address hidden>
Date: Thu Oct 22 14:36:30 2015 +0800
Replace deprecated LOG.warn with LOG.warning
Change-Id: Ib3d566f6e608ee
Closes-Bug: #1508442
Changed in ironic-python-agent: | |
status: | In Progress → Fix Committed |
Changed in ironic-lib: | |
assignee: | nobody → Ruby Loo (rloo) |
Fix proposed to branch: master
Review: https:/
Changed in ironic-lib: | |
status: | New → In Progress |
Changed in ironic-lib: | |
importance: | Undecided → Low |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit bf3938e439797a6
Author: Ruby Loo <email address hidden>
Date: Mon Nov 23 15:57:02 2015 +0000
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated so this replaces it with LOG.warning.
Change-Id: I4b7b55cce2cfb3
Closes-Bug: 1508442
Changed in ironic-lib: | |
status: | In Progress → Fix Committed |
This issue was fixed in openstack/
This issue was fixed in the openstack/
Changed in ironic-inspector: | |
status: | Fix Committed → Fix Released |
Changed in ironic: | |
status: | Fix Committed → Fix Released |
This issue was fixed in the openstack/ironic 4.3.0 release.
Changed in magnum: | |
assignee: | nobody → Wanlong Gao (wanlong-gao) |
Changed in magnum: | |
status: | New → In Progress |
Changed in python-magnumclient: | |
assignee: | nobody → Wanlong Gao (wanlong-gao) |
Fix proposed to branch: master
Review: https:/
Changed in python-magnumclient: | |
status: | New → In Progress |
Changed in kolla: | |
assignee: | nobody → Wanlong Gao (wanlong-gao) |
Fix proposed to branch: master
Review: https:/
Changed in kolla: | |
status: | New → In Progress |
Changed in magnum: | |
status: | In Progress → Fix Committed |
status: | Fix Committed → In Progress |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 6ac4ce2eb1c5090
Author: Wanlong Gao <email address hidden>
Date: Tue Dec 29 09:23:53 2015 +0800
Python 3 deprecated the logger.warn method in favor of warning
Python 3 deprecated the logger.warn method, see:
https:/
prefer to use warning to avoid DeprecationWarning.
Closes-Bug: 1508442
Change-Id: I245d24b30e783f
Changed in magnum: | |
status: | In Progress → Fix Released |
janonymous (janonymous) wrote : | #14 |
I have added a check for pep8 checks in hacking also:https:/
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 2fde87a0e91689a
Author: Wanlong Gao <email address hidden>
Date: Tue Dec 29 14:37:10 2015 +0800
Python 3 deprecated the logger.warn method in favor of warning
Python 3 deprecated the logger.warn method, see:
https:/
prefer to use warning to avoid DeprecationWarning.
Change-Id: Ic4e07276def17e
Closes-Bug: 1508442
Changed in kolla: | |
status: | In Progress → Fix Released |
Changed in nova-powervm: | |
assignee: | nobody → Drew Thorstensen (thorst) |
Changed in glance: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in glance: | |
status: | New → In Progress |
Changed in aodh: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in aodh: | |
status: | New → In Progress |
Changed in zaqar: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in zaqar: | |
status: | New → In Progress |
Changed in tempest: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Changed in tripleo: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in tempest: | |
status: | New → In Progress |
Changed in nova-powervm: | |
status: | New → Fix Released |
Swapnil Kulkarni (coolsvap) wrote : | #20 |
Changed in keystone: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in neutron: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in neutron: | |
status: | New → In Progress |
Changed in gnocchi: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in gnocchi: | |
status: | New → In Progress |
Change abandoned by Swapnil Kulkarni (coolsvap) (<email address hidden>) on branch: master
Review: https:/
Change abandoned by Swapnil Kulkarni (coolsvap) (<email address hidden>) on branch: master
Review: https:/
Changed in manila: | |
assignee: | nobody → huayue (huayuev5) |
status: | New → In Progress |
Change abandoned by Swapnil Kulkarni (coolsvap) (<email address hidden>) on branch: master
Review: https:/
Changed in packstack: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in packstack: | |
status: | New → In Progress |
Fix proposed to branch: master
Review: https:/
Fix proposed to branch: master
Review: https:/
Changed in designate: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in cloudkitty: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Fix proposed to branch: master
Review: https:/
Changed in octavia: | |
assignee: | nobody → lei zhang (zhang-lei) |
Fix proposed to branch: master
Review: https:/
Changed in heat: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in tuskar: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Fix proposed to branch: master
Review: https:/
Changed in openstack-ansible: | |
assignee: | nobody → lei zhang (zhang-lei) |
Changed in oslo.cache: | |
assignee: | nobody → lei zhang (zhang-lei) |
Swapnil Kulkarni (coolsvap) wrote : | #32 |
Changed in openstack-ansible: | |
assignee: | lei zhang (zhang-lei) → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Swapnil Kulkarni (coolsvap) wrote : | #33 |
Changed in oslo.cache: | |
assignee: | lei zhang (zhang-lei) → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Swapnil Kulkarni (coolsvap) wrote : | #34 |
Changed in oslo.privsep: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Swapnil Kulkarni (coolsvap) wrote : | #35 |
Changed in tripleo: | |
status: | New → In Progress |
Fix proposed to branch: master
Review: https:/
Changed in octavia: | |
status: | New → In Progress |
description: | updated |
Changed in solum: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Fix proposed to branch: master
Review: https:/
Changed in solum: | |
status: | New → In Progress |
Change abandoned by Swapnil Kulkarni (coolsvap) (<email address hidden>) on branch: master
Review: https:/
Changed in ceilometer: | |
assignee: | nobody → lei zhang (zhang-lei) |
status: | New → In Progress |
Changed in cloud-init: | |
assignee: | nobody → lei zhang (zhang-lei) |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 994b1e4a814a930
Author: Swapnil Kulkarni (coolsvap) <email address hidden>
Date: Tue Jan 5 12:31:53 2016 +0530
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated. It still used in a few places.
Updated to non-deprecated LOG.warning.
Change-Id: I86e13b88c766cc
Closes-
Changed in heat: | |
status: | In Progress → Fix Released |
Changed in networking-cisco: | |
assignee: | nobody → LiuNanke (nanke-liu) |
status: | New → In Progress |
Fix proposed to branch: master
Review: https:/
Changed in python-magnumclient: | |
status: | In Progress → Fix Released |
Changed in ironic-python-agent: | |
status: | Fix Committed → Fix Released |
Changed in ceilometer: | |
assignee: | lei zhang (zhang-lei) → Chaozhe Chen (chaozhe-chen) |
Changed in cloud-init: | |
status: | New → In Progress |
Changed in dragonflow: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in networking-ofagent: | |
assignee: | nobody → lei zhang (zhang-lei) |
status: | New → In Progress |
Changed in networking-odl: | |
assignee: | nobody → lei zhang (zhang-lei) |
status: | New → In Progress |
Changed in networking-vsphere: | |
assignee: | nobody → lei zhang (zhang-lei) |
status: | New → In Progress |
Changed in glance: | |
importance: | Undecided → Low |
Changed in blazar: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in astara: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | New → In Progress |
Changed in nova: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
Changed in nova: | |
status: | New → In Progress |
Changed in django-openstack-auth: | |
assignee: | nobody → Lin Hua Cheng (lin-hua-cheng) |
status: | New → In Progress |
Changed in dragonflow: | |
status: | In Progress → Fix Released |
Changed in packstack: | |
importance: | Undecided → Low |
Changed in oslo.cache: | |
status: | In Progress → Fix Released |
Changed in glance: | |
assignee: | Swapnil Kulkarni (coolsvap) → İrfan AKIN (irfan-akin) |
Changed in packstack: | |
status: | In Progress → Fix Released |
Changed in glance: | |
assignee: | İrfan AKIN (irfan-akin) → nobody |
Changed in ceilometer: | |
status: | In Progress → Fix Released |
Changed in manila: | |
status: | In Progress → Fix Released |
Changed in cloudkitty: | |
status: | In Progress → Fix Released |
Changed in designate: | |
status: | In Progress → Fix Released |
Changed in astara: | |
status: | In Progress → Fix Released |
Changed in django-openstack-auth: | |
status: | In Progress → Fix Released |
Changed in shaker: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in keystone: | |
assignee: | Swapnil Kulkarni (coolsvap) → nobody |
status: | In Progress → Fix Committed |
no longer affects: | ironic-lib |
no longer affects: | ironic |
no longer affects: | ironic-inspector |
no longer affects: | ironic-python-agent |
Changed in python-rack: | |
assignee: | nobody → sumit (er-sksumit) |
Changed in ec2-api: | |
assignee: | nobody → sumit (er-sksumit) |
Changed in congress: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in gce-api: | |
assignee: | nobody → sumit (er-sksumit) |
Changed in evoque: | |
assignee: | nobody → sumit (er-sksumit) |
Changed in glance-store: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in networking-powervm: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in barbican: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in kloudbuster: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in networking-calico: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in watcher: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in heat-cfntools: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in nova-solver-scheduler: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in networking-fujitsu: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in bilean: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in trove-dashboard: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in networking-arista: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in anvil: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in networking-plumgrid: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in python-watcherclient: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in mistral: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in python-dracclient: | |
assignee: | nobody → sumit (er-sksumit) |
status: | New → In Progress |
Changed in evoque: | |
status: | New → In Progress |
Changed in python-rack: | |
status: | New → In Progress |
Changed in ec2-api: | |
status: | New → In Progress |
Changed in gce-api: | |
status: | New → In Progress |
Changed in watcher: | |
assignee: | sumit (er-sksumit) → Gábor Antal (gabor.antal) |
status: | In Progress → Fix Committed |
Changed in watcher: | |
importance: | Undecided → Medium |
milestone: | none → mitaka-2 |
Changed in watcher: | |
status: | Fix Committed → Fix Released |
Changed in solum: | |
status: | In Progress → Fix Released |
Changed in keystone: | |
importance: | Undecided → Wishlist |
Changed in kloudbuster: | |
status: | In Progress → Fix Released |
Changed in neutron: | |
importance: | Undecided → Low |
Changed in django-openstack-auth-kerberos: | |
assignee: | nobody → SamP (sampath-priyankara) |
no longer affects: | tuskar |
Changed in keystone: | |
assignee: | nobody → zhongshengping (chdzsp) |
Changed in glance: | |
assignee: | nobody → zhongshengping (chdzsp) |
Changed in keystone: | |
status: | Fix Committed → Fix Released |
Changed in keystone: | |
assignee: | zhongshengping (chdzsp) → nobody |
Changed in glance: | |
assignee: | zhongshengping (chdzsp) → nobody |
Changed in barbican: | |
status: | In Progress → Fix Released |
Changed in congress: | |
status: | In Progress → Fix Committed |
status: | Fix Committed → Fix Released |
Changed in networking-fujitsu: | |
status: | In Progress → Fix Released |
Changed in ec2-api: | |
status: | In Progress → Fix Released |
Changed in trove-dashboard: | |
status: | In Progress → Fix Released |
Changed in django-openstack-auth-kerberos: | |
status: | New → In Progress |
Changed in bilean: | |
status: | In Progress → Fix Released |
Changed in glance: | |
assignee: | nobody → Jeffrey Augustine (ja224e) |
Changed in python-watcherclient: | |
assignee: | sumit (er-sksumit) → Tin Lam (tl3438) |
Changed in mistral: | |
importance: | Undecided → Low |
milestone: | none → mitaka-3 |
Changed in heat-cfntools: | |
assignee: | sumit (er-sksumit) → Tin Lam (tl3438) |
Changed in networking-powervm: | |
assignee: | sumit (er-sksumit) → Kairo Araujo (kairo) |
Changed in networking-powervm: | |
status: | In Progress → Fix Released |
Changed in python-dracclient: | |
assignee: | sumit (er-sksumit) → Tin Lam (tl3438) |
no longer affects: | oslo.privsep |
Changed in gnocchi: | |
importance: | Undecided → Low |
Changed in python-dracclient: | |
status: | In Progress → Fix Released |
Changed in octavia: | |
importance: | Undecided → Low |
Changed in mistral: | |
milestone: | mitaka-3 → mitaka-rc1 |
Changed in nova: | |
importance: | Undecided → Low |
Changed in glance-store: | |
status: | In Progress → Fix Committed |
Changed in octavia: | |
status: | In Progress → Fix Released |
Changed in nova: | |
assignee: | Swapnil Kulkarni (coolsvap) → Jiajun Liu (ljjjustin) |
Changed in glance: | |
assignee: | Jeffrey Augustine (ja224e) → Swapnil Kulkarni (coolsvap) |
Changed in gnocchi: | |
assignee: | Swapnil Kulkarni (coolsvap) → nobody |
status: | In Progress → Invalid |
Changed in gnocchi: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
status: | Invalid → In Progress |
Changed in heat-cfntools: | |
assignee: | Tin Lam (tl3438) → Swapnil Kulkarni (coolsvap) |
Changed in gnocchi: | |
status: | In Progress → Fix Committed |
Changed in aodh: | |
status: | In Progress → Fix Released |
Changed in nova: | |
assignee: | Jiajun Liu (ljjjustin) → Swapnil Kulkarni (coolsvap) |
no longer affects: | glance |
no longer affects: | glance-store |
Changed in networking-vsphere: | |
assignee: | lei zhang (zhang-lei) → Aman Kumar (amank) |
Changed in gce-api: | |
status: | In Progress → Fix Released |
Changed in nova: | |
assignee: | Swapnil Kulkarni (coolsvap) → John Garbutt (johngarbutt) |
Changed in networking-vsphere: | |
status: | In Progress → Fix Released |
Changed in nova: | |
assignee: | John Garbutt (johngarbutt) → Swapnil Kulkarni (coolsvap) |
Changed in mistral: | |
assignee: | sumit (er-sksumit) → zhangguoqing (474751729-o) |
Changed in mistral: | |
milestone: | mitaka-rc1 → mitaka-rc2 |
Changed in heat-cfntools: | |
assignee: | Swapnil Kulkarni (coolsvap) → zhangguoqing (474751729-o) |
Changed in mistral: | |
milestone: | mitaka-rc2 → newton-1 |
Changed in searchlight: | |
assignee: | nobody → Swapnil Kulkarni (coolsvap) |
importance: | Undecided → Low |
status: | New → Confirmed |
Changed in searchlight: | |
status: | Confirmed → Fix Released |
Changed in mistral: | |
status: | In Progress → Fix Committed |
Changed in cloud-init: | |
importance: | Undecided → Low |
Changed in gnocchi: | |
milestone: | none → 2.1.0 |
status: | Fix Committed → Fix Released |
Changed in openstack-ansible: | |
assignee: | Swapnil Kulkarni (coolsvap) → nobody |
status: | In Progress → Fix Released |
Changed in python-rack: | |
assignee: | sumit (er-sksumit) → Sharat Sharma (sharat-sharma) |
Changed in anvil: | |
assignee: | sumit (er-sksumit) → Sharat Sharma (sharat-sharma) |
Changed in evoque: | |
assignee: | sumit (er-sksumit) → Bathri Ajay Raj (bathri-s) |
Changed in shaker: | |
assignee: | sumit (er-sksumit) → Sharat Sharma (sharat-sharma) |
Changed in cloud-init: | |
assignee: | lei zhang (zhang-lei) → Sharat Sharma (sharat-sharma) |
Changed in django-openstack-auth-kerberos: | |
assignee: | SamP (sampath-priyankara) → Sharat Sharma (sharat-sharma) |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
Changed in shaker: | |
status: | In Progress → Fix Released |
Changed in mistral: | |
assignee: | zhangguoqing (474751729-o) → Sharat Sharma (sharat-sharma) |
status: | Fix Committed → In Progress |
Changed in django-openstack-auth-kerberos: | |
assignee: | nobody → Pallavi (pallavi-s) |
Changed in freezer: | |
assignee: | nobody → Sharat Sharma (sharat-sharma) |
status: | New → In Progress |
Changed in mistral: | |
milestone: | newton-1 → newton-2 |
Changed in tripleo: | |
status: | In Progress → Fix Released |
Changed in heat-cfntools: | |
status: | In Progress → Fix Released |
Changed in freezer: | |
importance: | Undecided → Low |
Changed in tempest: | |
status: | In Progress → Invalid |
status: | Invalid → Fix Released |
no longer affects: | neutron |
Changed in nova: | |
status: | In Progress → Fix Released |
no longer affects: | blazar |
Changed in zaqar: | |
status: | In Progress → Fix Released |
Changed in python-watcherclient: | |
milestone: | none → newton-3 |
importance: | Undecided → Low |
Changed in mistral: | |
milestone: | newton-2 → newton-3 |
Changed in glance: | |
assignee: | nobody → yuyafei (yu-yafei) |
no longer affects: | glance |
Changed in rally: | |
assignee: | nobody → yuyafei (yu-yafei) |
Changed in rally: | |
status: | New → In Progress |
Changed in glance: | |
assignee: | nobody → yatin (yatinkarel) |
status: | New → In Progress |
Changed in tacker: | |
assignee: | nobody → yatin (yatinkarel) |
status: | New → In Progress |
Changed in senlin: | |
assignee: | nobody → yatin (yatinkarel) |
status: | New → In Progress |
Changed in senlin: | |
importance: | Undecided → Low |
milestone: | none → newton-3 |
status: | In Progress → Triaged |
Changed in vitrage: | |
assignee: | nobody → yatin (yatinkarel) |
status: | New → In Progress |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit ab6d426e5f06568
Author: yatin karel <email address hidden>
Date: Sat Jul 16 19:22:26 2016 +0530
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated. It is still used in few modules.
Replaced with non-deprecated LOG.warning.
Change-Id: I409a08883ec438
Partial-Bug: #1508442
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 4afec3a1e362c07
Author: yuyafei <email address hidden>
Date: Thu Jul 14 15:19:18 2016 +0800
Replace deprecated LOG.warn with warning
LOG.warn is deprecated. It still used in a few places. This updates
those one to use the non-deprecated LOG.warning instead.
Change-Id: Idb0f7ac1f8788e
Partial-
Changed in rally: | |
importance: | Undecided → Low |
Changed in tacker: | |
importance: | Undecided → Low |
Changed in taskflow: | |
assignee: | nobody → weiweigu (gu-weiwei) |
no longer affects: | taskflow |
Change abandoned by yatin (<email address hidden>) on branch: master
Review: https:/
Reason: Change Not necessary
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit f11fe2e82f5d1cf
Author: yatin karel <email address hidden>
Date: Sat Jul 16 18:20:18 2016 +0530
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated. It is still used in few modules.
Replaced with non-deprecated LOG.warning.
Change-Id: I0496a3618bbe2f
Partial-Bug: #1508442
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit ecb24c5f1b4a656
Author: yatin karel <email address hidden>
Date: Sat Jul 16 17:50:48 2016 +0530
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated. It is still used in few modules.
Replaced with non-deprecated LOG.warning.
Change-Id: Ia6acc11eca60c6
Closes-Bug: #1508442
Changed in senlin: | |
status: | Triaged → Fix Committed |
Changed in vitrage: | |
status: | In Progress → Fix Committed |
Changed in rally: | |
status: | In Progress → Fix Released |
Changed in masakari: | |
assignee: | nobody → Takashi NATSUME (natsume-takashi) |
Changed in oslo.middleware: | |
assignee: | nobody → Haifeng.Yan (yanheven) |
Fix proposed to branch: master
Review: https:/
Changed in masakari: | |
status: | New → In Progress |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 8e601d118304838
Author: Takashi NATSUME <email address hidden>
Date: Thu Aug 4 09:35:48 2016 +0900
Add a hacking rule to enforce use of LOG.warning
LOG.warn is deprecated.
LOG.warning should be used instead of LOG.warn.
So add the following hacking rule.
- [M331] LOG.warn is deprecated. Enforce use of LOG.warning.
Change-Id: I1f99331e2a51f8
Closes-Bug: #1508442
Changed in masakari: | |
status: | In Progress → Fix Released |
This issue was fixed in the openstack/
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit d24b02d4b52232d
Author: yatin karel <email address hidden>
Date: Sat Jul 16 17:19:01 2016 +0530
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated. It is still used in few modules.
Replaced with non-deprecated LOG.warning.
Change-Id: I20ae299b9b1cb0
Closes-Bug: #1508442
Changed in tacker: | |
status: | In Progress → Fix Released |
Changed in panko: | |
assignee: | nobody → Hanxi Liu (hanxi-liu) |
no longer affects: | panko |
Isaku Yamahata (yamahata) wrote : | #169 |
There is no user of LOG.warn in networking-odl
Changed in networking-odl: | |
importance: | Undecided → Low |
status: | In Progress → Fix Committed |
This issue was fixed in the openstack/tacker 0.4.0 release.
Changed in openstack-ansible: | |
assignee: | nobody → Lu lei (lei-lu) |
Changed in keystone: | |
assignee: | nobody → Lu lei (lei-lu) |
Changed in monasca: | |
assignee: | nobody → Pallavi (pallavi-s) |
Sharat Sharma (sharat-sharma) wrote : | #171 |
@pallavi-s LOG.warn() in monasca is purposefully placed in the tests to notify that the LOG.warn() function is deprecated.
This issue was fixed in the openstack/nova 14.0.0.0b3 development milestone.
Change abandoned by Hardik Parekh (<email address hidden>) on branch: master
Review: https:/
Reason: In Mistral, we already have removed LOG.warn. we have pep8 check
for this.
Changed in python-rack: | |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
Change abandoned by Sharat Sharma (<email address hidden>) on branch: master
Review: https:/
Changed in python-rack: | |
assignee: | nobody → Lu lei (lei-lu) |
This issue was fixed in the openstack/magnum 2.0.0 release.
This issue was fixed in the openstack/
This issue was fixed in the openstack/solum 4.1.1 release.
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 1b01eb60a45596b
Author: Mark McClain <email address hidden>
Date: Thu Nov 10 09:28:49 2016 -0500
use LOG.warning instead of LOG.warn
Minor clean-up to convert usage of deprecated LOG.warn method to
LOG.warning.
Change-Id: I597d44ac0d4857
Closes-Bug: #1508442
Changed in networking-arista: | |
status: | In Progress → Fix Released |
Changed in mistral: | |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
status: | In Progress → Invalid |
OpenStack Infra (hudson-openstack) wrote : Change abandoned on django-openstack-auth-kerberos (master) | #180 |
Change abandoned by Rob Cresswell (<email address hidden>) on branch: master
Review: https:/
Reason: There was already a fix for this here: https:/
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: stable/mitaka
commit 39c4649595d2a01
Author: fumihiko kakuma <email address hidden>
Date: Wed Jun 8 10:37:12 2016 +0900
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated in Python 3 [1].
This change switches it to the non-deprecated LOG.warning
[1]https:/
Closes-Bug: #1508442
Change-Id: If57939c68f6bb1
tags: | added: in-stable-mitaka |
Changed in networking-ofagent: | |
assignee: | lei zhang (zhang-lei) → fumihiko kakuma (kakuma) |
status: | In Progress → Fix Committed |
OpenStack Infra (hudson-openstack) wrote : Change abandoned on django-openstack-auth-kerberos (master) | #182 |
Change abandoned by David Lyle (<email address hidden>) on branch: master
Review: https:/
Reason: This repo is being retired. Kerberos support can be handled with federation in keystone.
no longer affects: | django-openstack-auth-kerberos |
no longer affects: | freezer |
Changed in cloud-init: | |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
status: | In Progress → New |
Changed in anvil: | |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
status: | In Progress → New |
Change abandoned by Sharat Sharma (<email address hidden>) on branch: master
Review: https:/
Changed in python-watcherclient: | |
milestone: | newton-3 → none |
Change abandoned by zhangguoqing (zhang.
Review: https:/
Fix proposed to branch: master
Review: https:/
Changed in networking-calico: | |
assignee: | sumit (er-sksumit) → Neil Jerram (neil-jerram) |
Fix proposed to branch: master
Review: https:/
Fix proposed to branch: master
Review: https:/
Change abandoned by Kiseok Kim (<email address hidden>) on branch: master
Review: https:/
Reason: move to https:/
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 59ac7139d85aceb
Author: Kiseok Kim <email address hidden>
Date: Tue Mar 7 10:45:27 2017 +0000
Add hacking rules for deprecated LOG.warn
Because LOG.warn is deprecated,
we should replace LOG.warn with LOG.warning.
This patch add a hacking rule:
[N313] - Validate that LOG.warning is used instead of deprecated LOG.warn.
and replace deprecated LOG.warn with LOG.warning in rally/api.py
Change-Id: I7d016b30368f13
Closes-Bug: #1508442
Changed in cloud-init: | |
assignee: | nobody → Anishka Gupta (anishka0107) |
status: | New → Confirmed |
Fix proposed to branch: master
Review: https:/
Changed in cloud-init: | |
status: | Confirmed → In Progress |
Changed in shaker: | |
assignee: | Sharat Sharma (sharat-sharma) → nobody |
Reviewed: https:/
Committed: https:/
Submitter: Jenkins
Branch: master
commit 282dcddb917de5e
Author: Neil Jerram <email address hidden>
Date: Thu Feb 16 14:32:41 2017 +0000
Change _log.warn (now somewhat deprecated) to _log.warning
LOG.warn is deprecated in Python 3 [1]. Non-deprecated LOG.warning
should be used instead.
[1] https:/
Change-Id: I6bc3e5590d5fef
Closes-Bug: #1508442
Changed in networking-calico: | |
status: | In Progress → Fix Released |
Changed in anvil: | |
assignee: | nobody → M V P Nitesh (m-nitesh) |
Change abandoned by Sean McGinnis (<email address hidden>) on branch: master
Review: https:/
Reason: Still think it should be changed at some point to get folks out of the habit, but certainly extremely low priority.
no longer affects: | glance |
Changed in oslo.middleware: | |
status: | New → Fix Released |
Fix proposed to branch: master
Review: https:/
Reviewed: https:/
Committed: https:/
Submitter: Zuul
Branch: master
commit 8bc3693c19960a2
Author: Erik Olof Gunnar Andersson <email address hidden>
Date: Tue Apr 3 14:28:01 2018 -0700
Replace deprecated LOG.warn with LOG.warning
LOG.warn is deprecated in Python 3 [1] . But it still used in a few places, non-deprecated LOG.warning should be used instead.
Note: If we are using logger from oslo.log, warn is still valid [2], but I agree we can switch to LOG.warning.
[1]https:/
[2]https:/
Change-Id: Ibbcc287815cbc0
Closes-Bug: #1508442
This issue was fixed in the openstack/designate 7.0.0.0b1 development milestone.
Change abandoned by Ian Wienand (<email address hidden>) on branch: master
Review: https:/
Reason: This is a "version 2" branch of cloud-init, that has laid idle for some time. To contribute to active cloud-init series, see https:/
https:/
Change abandoned by Ian Wienand (<email address hidden>) on branch: master
Review: https:/
Reason: This is a "version 2" branch of cloud-init, that has laid idle for some time. To contribute to active cloud-init series, see https:/
https:/
do3meli (d-info-e) wrote : | #198 |
Changed in cloud-init: | |
status: | In Progress → Fix Committed |
This bug is believed to be fixed in cloud-init in version 19.2-62. If this is still a problem for you, please make a comment and set the state back to New
Thank you.
Changed in cloud-init: | |
status: | Fix Committed → Fix Released |
Fix proposed to branch: master /review. openstack. org/238020
Review: https:/