Changed cluster_ip type to Str
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pünkösd Marcell 2021-04-19 16:34:09 +02:00
parent fb70083bfd
commit d8d20f0a78

View File

@ -11,7 +11,7 @@ class ControlConfigurationSchema(Schema):
class ControlStatusConfigurationSchema(Schema):
cluster_ip = fields.IP()
cluster_ip = fields.Str() # This could be IP but that requires to use Python's ipaddr type
phase = fields.Str()
class Meta: