[Yahoo-eng-team] [Bug 1955773] [NEW] Recursion error when generating documentation for Senlin

2021-12-26 Thread Erik Olof Gunnar Andersson
Public bug reported: Hitting a recursion error when generating documentation for the senlin-dashboard that seems to be indirectly caused by Horizon. > maximum recursion depth exceeded in __instancecheck__ e.g. https://review.opendev.org/c/openstack/senlin-dashboard/+/787090 I wrote a simple

[Yahoo-eng-team] [Bug 1854992] [NEW] Frequent instances stuck in BUILD with no apparent failure

2019-12-03 Thread Erik Olof Gunnar Andersson
Public bug reported: We are getting frequent instances stuck indefinitely in BUILD without an error message. This seems to be triggered by high concurrency (e.g. build a lot of instances with terraform). We have multiple synthetic instances that are being built and destroyed ever 10 minutes and

[Yahoo-eng-team] [Bug 1854848] [NEW] build_and_run_instance can error out with an UnboundException

2019-12-02 Thread Erik Olof Gunnar Andersson
Public bug reported: If for some reason eventlet throws a timeout during a build event on the compute a eventlet.Timeout exception might be thrown and cause an UnboundException. This is because we only catch Exception, but Timeout is based on BaseException.

[Yahoo-eng-team] [Bug 1845891] [NEW] Designate integration not fully multi region safe

2019-09-29 Thread Erik Olof Gunnar Andersson
Public bug reported: The admin portion of the external dns integration for designate never passes the url or region to the client. This means that the implementation isn't region aware at all. ** Affects: neutron Importance: Undecided Assignee: Erik Olof Gunnar Andersson (eandersson

[Yahoo-eng-team] [Bug 1837955] [NEW] MaxRetriesExceeded sometime fails with messaging exception

2019-07-25 Thread Erik Olof Gunnar Andersson
Public bug reported: We are occasionally seeing MaxRetriesExceeded causing an "Exception during message handling" error. This prevents the database from setting the instance into error'd state and causes it to get stuck scheduling. Example logs: WARNING nova.scheduler.client.report [req-] Unable

[Yahoo-eng-team] [Bug 1825583] [NEW] Region name isn't respected when configuring ironic

2019-04-19 Thread Erik Olof Gunnar Andersson
Public bug reported: When you configure a region_name for Ironic, an endpoint isn't properly passed on to the ironic client. This means that the region_name won't be respected. The current workaround is to provide an api_endpoint (or endpoint_override) for Ironic. ** Affects: nova

[Yahoo-eng-team] [Bug 1818385] [NEW] It's possible to add a security group rule for VRRP with a dport

2019-03-02 Thread Erik Olof Gunnar Andersson
Public bug reported: This command should be invalid, but Neutron (Rocky) allows it to be created. > openstack security group rule create xxx --protocol vrrp --ingress > --remote-ip --dst-port 112 Since iptables does not allow dst-port being passed. It would trigger the following error on the

[Yahoo-eng-team] [Bug 1764622] [NEW] Restarting the web server causes users to get kicked out

2018-04-16 Thread Erik Olof Gunnar Andersson
Public bug reported: Starting with Django 1.9 users are kicked out to the login screen after the web server is restarted. This is especially severe when running Horizon with a high number of processes. However, if Horizon is running with Django 1.8.19 or older, Horizon can be restarted with

[Yahoo-eng-team] [Bug 1759100] [NEW] Horizon filtering not thread-safe

2018-03-26 Thread Erik Olof Gunnar Andersson
Public bug reported: The Horizon filtering is not fully thread-safe. If two users are simultaneously filtering a resource (e.g. projects or instances), and threading is enabled (e.g. 2 or more threads in Apache). It's possible that the wrong filter will display in the form input. I was able to

[Yahoo-eng-team] [Bug 1703666] [NEW] Templated catalog does not handle multi-regions properly

2017-07-11 Thread Erik Olof Gunnar Andersson
'] == service_type: -return service +for endpoint in service['endpoints']: +if endpoint['region'] == region: +return service return None ** Affects: keystone Importance: Medium Assignee: Erik Olof Gunnar Andersson