Projet

Général

Profil

0001-environment-models-regression-fix-allow-ServiceBase-.patch

Christophe Siraut, 18 avril 2019 16:24

Télécharger (1,16 ko)

Voir les différences:

Subject: [PATCH] environment/models: regression fix, allow ServiceBase
 validation when performing cook (#32454)

 hobo/environment/models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
hobo/environment/models.py
77 77
    template_name = models.CharField(_('Template'), max_length=60, blank=True)
78 78
    secondary = models.BooleanField(_('Secondary Service'), default=False)
79 79

  
80
    last_operational_check_timestamp = models.DateTimeField(null=True)
81
    last_operational_success_timestamp = models.DateTimeField(null=True)
80
    last_operational_check_timestamp = models.DateTimeField(null=True, blank=True)
81
    last_operational_success_timestamp = models.DateTimeField(null=True, blank=True)
82 82
    last_update_timestamp = models.DateTimeField(auto_now=True, null=True)
83 83

  
84 84
    variables = GenericRelation(Variable,
85
-