Allow setting ip_address for execution nodes

This commit is contained in:
Seth Foster
2023-07-27 22:25:14 -04:00
committed by Seth Foster
parent 7169c75b1a
commit 3bd25c682e
4 changed files with 23 additions and 4 deletions

View File

@@ -344,6 +344,7 @@ class InstanceDetail(RetrieveUpdateAPIView):
data.pop('listener_port', None)
data.pop('node_type', None)
data.pop('hostname', None)
data.pop('ip_address', None)
return super(InstanceDetail, self).update_raw_data(data)
def update(self, request, *args, **kwargs):