From 01507db18c436ec864f1bea509ef12a72f9ffb04 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Fri, 24 Nov 2023 18:51:06 +0100 Subject: [PATCH] Trivial: fix a typo in wsgi_service Change-Id: Ia7d8ed8b40db7e3d6752e768113ccf52318ee374 --- ironic/common/wsgi_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/common/wsgi_service.py b/ironic/common/wsgi_service.py index abfe4b1f2c..bd7957a530 100644 --- a/ironic/common/wsgi_service.py +++ b/ironic/common/wsgi_service.py @@ -76,7 +76,7 @@ class WSGIService(service.ServiceBase): """ self.server.stop() if CONF.api.unix_socket: - il_utils.unlink_without_raise(CONF.unix_socket) + il_utils.unlink_without_raise(CONF.api.unix_socket) def wait(self): """Wait for the service to stop serving this API.