Simone Tiraboschi has posted comments on this change.

Change subject: log: preventing boolean values to stop logging
......................................................................


Patch Set 2:

> What is the exact issue, please send me a log to show that.

The issue is here (on the last line):
 while self.environment[
     ohostedcons.CloudInit.ROOTPWD
 ] is None:
     password = self.dialog.queryString(
         name='CI_ROOT_PASSWORD',
         note=_(
             "Enter root password that "
             'will be used for the engine appliance '
             '(leave it empty to skip): '
         ),
         prompt=True,
         hidden=True,
         default='',
     )
     if password:
         password_check = self.dialog.queryString(
             name='CI_ROOT_PASSWORD',
             note=_(
  "Confirm appliance root password: "
             ),
             prompt=True,
             hidden=True,
         )
         if password == password_check:
             self.environment[
  ohostedcons.CloudInit.ROOTPWD
             ] = password
         else:
             self.logger.error(_('Passwords do not match'))
     else:
         self.environment[
             ohostedcons.CloudInit.ROOTPWD
         ] = False

and here the logs:
http://ur1.ca/mubwi

-- 
To view, visit https://gerrit.ovirt.org/42444
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: If1709081bd2b4a99379a7ff9e20f4388aa187532
Gerrit-PatchSet: 2
Gerrit-Project: otopi
Gerrit-Branch: master
Gerrit-Owner: Simone Tiraboschi <stira...@redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alo...@redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Simone Tiraboschi <stira...@redhat.com>
Gerrit-Reviewer: Yedidyah Bar David <d...@redhat.com>
Gerrit-Reviewer: automat...@ovirt.org
Gerrit-HasComments: No
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to