From ca627cf8f2ecffd21cc362a4d1bf3e02db58a938 Mon Sep 17 00:00:00 2001 From: Benjamin Ludwig Date: Wed, 10 Jul 2024 15:50:53 +0200 Subject: [PATCH] Fix comment --- octavia_f5/controller/worker/tasks/f5_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octavia_f5/controller/worker/tasks/f5_tasks.py b/octavia_f5/controller/worker/tasks/f5_tasks.py index a045a5e..0fd35b5 100644 --- a/octavia_f5/controller/worker/tasks/f5_tasks.py +++ b/octavia_f5/controller/worker/tasks/f5_tasks.py @@ -204,7 +204,7 @@ def execute(self, bigip: bigip_restclient.BigIPRestClient, res.raise_for_status() return res.json() - # Otherwise update existing subnet route (if our route isn't a subset) + # Otherwise update existing selfip (if our selfip isn't a subset) device_selfip = device_response.json() if not selfip.items() <= device_selfip.items(): res = bigip.patch(path='/mgmt/tm/net/self/{}'.format(device_selfip['name']),