[prev in list] [next in list] [prev in thread] [next in thread] 

List:       vdsm-devel
Subject:    =?utf-8?q?=5Bovirt-devel=5D?= Re: [ OST Failure Report ] [ oVirt Master (ovirt-engine) ] [ 14-09-201
From:       Andrej Krejcir <akrejcir () redhat ! com>
Date:       2018-10-22 11:16:02
Message-ID: CAMr7T1Q4gdxuXhVtpa+Z3y1xtknK2Uk9MWXzPEfHvbT4rCx6KA () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hi,

I hit this problem again. Otopi sends many zero bytes before a response.
This time, on an engine installed from master RPM, not dev environment.
The engine and host machines are latest Centos 7.

Is there some workaround for deploying the host?


Thanks,
Andrej

On Thu, 20 Sep 2018 at 08:59, Yuval Turgeman <yturgema@redhat.com> wrote:

> That would work too... the end result would be same, tar pads the last
> record with zeros as well
> 
> On Thu, Sep 20, 2018 at 9:51 AM Yedidyah Bar David <didi@redhat.com>
> wrote:
> 
> > On Mon, Sep 17, 2018 at 6:35 PM Yuval Turgeman <yturgema@redhat.com>
> > wrote:
> > 
> > > Ok, regarding the tar issue, there's another solution - since
> > > commons-compress hard coded the blocking factor to 1, while the default in
> > > tar is 20, we could continue creating the tar as we do today, but add a
> > > bunch of zeros to the end of the tarball.
> > > 
> > > [yturgema@piggie ~/aa]$ ls -l ovirt-host-deploy_fc28.tar
> > > -rw-r--r--. 1 yturgema yturgema 2166272 Sep  2 17:03
> > > ovirt-host-deploy_fc28.tar
> > > [yturgema@piggie ~/aa]$ python -c "print 10240-2166272%10240"
> > > 4608
> > > [yturgema@piggie ~/aa]$ dd if=/dev/zero of=/dev/stdout bs=4608 count=1
> > > > cat ovirt-host-deploy_fc28.tar - > new_host_deploy.tar
> > > 1+0 records in
> > > 1+0 records out
> > > 4608 bytes (4.6 kB, 4.5 KiB) copied, 0.000373488 s, 12.3 MB/s
> > > [yturgema@piggie ~/aa]$ ls -l new_host_deploy.tar
> > > -rw-rw-r--. 1 yturgema yturgema 2170880 Sep 17 18:16 new_host_deploy.tar
> > > 
> > > This would solve the problem, and not break el7, if this solution is
> > > acceptable, I can send a patch.
> > > 
> > 
> > This will probably work, but if you ask me, is too ugly. If we want to go
> > this path, we probably
> > have to find a reliable way to find out the blocking factor, or we risk
> > another failure in the
> > future.
> > 
> > What about simply giving up on all of this and calling the external 'tar'
> > utility also for
> > creating the archive, instead of using Java?
> > 
> > 
> > > 
> > > 
> > > 
> > > On Mon, Sep 17, 2018 at 6:02 PM, Martin Perina <mperina@redhat.com>
> > > wrote:
> > > 
> > > > 
> > > > 
> > > > On Mon, 17 Sep 2018, 16:25 Ravi Shankar Nori, <rnori@redhat.com> wrote:
> > > > 
> > > > > host-deploy is still broken on master fc28
> > > > > 
> > > > 
> > > > Yes, there are multiple issues on FC28, but the question is if this
> > > > fixed OST on CentOS?
> > > > 
> > > > 
> > > > > On Mon, Sep 17, 2018 at 8:01 AM, Yuval Turgeman <yturgema@redhat.com>
> > > > > wrote:
> > > > > 
> > > > > > I'm pretty sure I verified this on el7 as well, i'll check again, but
> > > > > > thinking about it, tar will stop when it gets to the first empty block, \
> > > > > > so if the record size on the engine's side is large and the end is filled \
> > > > > > with zeros, -b1 will make it stop at the first empty block so the next \
> > > > > > read on the host's side would get the trailing zeros which is what otopi \
> > > > > > reads. Btw, it could be a problem with deployed el7 systems as well, if \
> > > > > > for any reason the default on the host is set to something that is more \
> > > > > > than 20 blocks (can be set with export TAR_BLOCKING_FACTOR for the root \
> > > > > > account on the host side).
> > > > > > It's ok to revert the patch to fix the regression, but I don't see
> > > > > > any other way other than -b1... perhaps add a `cat -` after to just read
> > > > > > until EOF or something, or have otopi strip the input.
> > > > > > 
> > > > > > On Mon, Sep 17, 2018 at 2:30 PM, Galit Rosenthal <grosenth@redhat.com
> > > > > > > wrote:
> > > > > > 
> > > > > > > Didi,
> > > > > > > 
> > > > > > > Is this what you are looking for
> > > > > > > https://ovirt-jira.atlassian.net/browse/OVIRT-2259
> > > > > > > ?
> > > > > > > Galit
> > > > > > > 
> > > > > > > On Mon, Sep 17, 2018 at 1:54 PM Dafna Ron <dron@redhat.com> wrote:
> > > > > > > 
> > > > > > > > I think that in ovirt-engine we currently only build to centos.
> > > > > > > > since we have not had an engine build for 2 weeks (on master) I
> > > > > > > > think we should merge and worry about fc28 once it would be relevant.
> > > > > > > > 
> > > > > > > > the failure we have now could be another regression missed since
> > > > > > > > the project has been broken for two weeks.
> > > > > > > > 
> > > > > > > > Thanks,
> > > > > > > > Dafna
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > On Mon, Sep 17, 2018 at 10:30 AM Yedidyah Bar David <
> > > > > > > > didi@redhat.com> wrote:
> > > > > > > > 
> > > > > > > > > On Mon, Sep 17, 2018 at 11:49 AM Dafna Ron <dron@redhat.com>
> > > > > > > > > wrote:
> > > > > > > > > > 
> > > > > > > > > > Didi, Marin, any update on the patch?
> > > > > > > > > 
> > > > > > > > > Yes - it passed. Actually failed, but only after host-deploy:
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > https://jenkins.ovirt.org/view/oVirt%20system%20tests/job/ovirt-system-tests_manual/3189/
> > > > > > > > >  
> > > > > > > > > I'd rather not merge it as-is, because it will break fedora.
> > > > > > > > > 
> > > > > > > > > If someone can have a look at the code generating the tar file,
> > > > > > > > > and can see if
> > > > > > > > > it's easy to make it work well for both centos and fedora, perhaps
> > > > > > > > > by explicitly
> > > > > > > > > setting all relevant params to some reasonable values, great.
> > > > > > > > > Otherwise, I guess
> > > > > > > > > we can merge for now, as fedora is still not supported anyway.
> > > > > > > > > 
> > > > > > > > > Thanks,
> > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > On Sun, Sep 16, 2018 at 11:09 AM Yedidyah Bar David <
> > > > > > > > > didi@redhat.com> wrote:
> > > > > > > > > > > 
> > > > > > > > > > > On Sun, Sep 16, 2018 at 12:53 PM Yedidyah Bar David <
> > > > > > > > > didi@redhat.com> wrote:
> > > > > > > > > > > > 
> > > > > > > > > > > > On Fri, Sep 14, 2018 at 6:06 PM Martin Perina <
> > > > > > > > > mperina@redhat.com> wrote:
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > On Fri, Sep 14, 2018 at 4:51 PM, Ravi Shankar Nori <
> > > > > > > > > rnori@redhat.com> wrote:
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > I see the same errors on my dev env. From the logs
> > > > > > > > > attached by Andrej the response received by otopi has a bunch of \
> > > > > > > > > null chars before the actual response CONFIRM DEPLOY_PROCEED=yes
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > 2018-09-14 15:49:23,018+0200 DEBUG
> > > > > > > > > otopi.plugins.otopi.dialog.machine dialog.__logString:204 \
> > > > > > > > > DIALOG:SEND ### Response is CONFIRM DEPLOY_PROCEED=yes|no or ABORT \
> > > > > > > > > DEPLOY_PROCEED
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > ^@^@^@^@^@^@^@^@^@CONFIRM DEPLOY_PROCEED=yes
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > Didi/Sandro, could you please take a look? Below error
> > > > > > > > > seems like some issue in otopi, where an error is raised when \
> > > > > > > > > handling binary input:
> > > > > > > > > > > > 
> > > > > > > > > > > > Not sure the issue is "binary input" in general, but simply
> > > > > > > > > illegal
> > > > > > > > > > > > input. The prompt expects, as it says, one of these 3 \
> > > > > > > > > > > > replies: 
> > > > > > > > > > > > CONFIRM DEPLOY_PROCEED=yes
> > > > > > > > > > > > CONFIRM DEPLOY_PROCEED=no
> > > > > > > > > > > > ABORT DEPLOY_PROCEED
> > > > > > > > > > > > 
> > > > > > > > > > > > Instead, judging from the file supplied by Andrej, it gets
> > > > > > > > > from the engine:
> > > > > > > > > > > > <7169 null bytes>CONFIRM DEPLOY_PROCEED=yes
> > > > > > > > > > > > 
> > > > > > > > > > > > So either the engine now sends, for some reason, 7169 null
> > > > > > > > > bytes, in
> > > > > > > > > > > > this response, or there is some low-level change causing this
> > > > > > > > > to be
> > > > > > > > > > > > eventually supplied to otopi - a change in apache-sshd,
> > > > > > > > > openssh, some
> > > > > > > > > > > > library, the kernel, no idea.
> > > > > > > > > > > > 
> > > > > > > > > > > > Well, thinking a bit, I have a wild guess: Perhaps it's
> > > > > > > > > related to the
> > > > > > > > > > > > patch introduced recently to change the tar blocking?
> > > > > > > > > > > 
> > > > > > > > > > > https://gerrit.ovirt.org/94357
> > > > > > > > > > > 
> > > > > > > > > > > I am leaving soon, perhaps someone can try the manual job with
> > > > > > > > > the
> > > > > > > > > > > result of the check-patch job for above patch, to see if it
> > > > > > > > > fixes.
> > > > > > > > > > > Otherwise I'll do this tomorrow.
> > > > > > > > > > > 
> > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 2018-09-14 15:49:23,032+0200 DEBUG otopi.context
> > > > > > > > > context._executeMethod:143 method exception
> > > > > > > > > > > > > Traceback (most recent call last):
> > > > > > > > > > > > > File "/usr/lib/python2.7/site-packages/otopi/context.py",
> > > > > > > > > line 133, in _executeMethod
> > > > > > > > > > > > > method['method']()
> > > > > > > > > > > > > File
> > > > > > > > > "/tmp/ovirt-O6CfS4aUHI/otopi-plugins/ovirt-host-deploy/core/misc.py", \
> > > > > > > > > line 87, in _confirm
> > > > > > > > > > > > > prompt=True,
> > > > > > > > > > > > > File
> > > > > > > > > "/tmp/ovirt-O6CfS4aUHI/otopi-plugins/otopi/dialog/machine.py", line \
> > > > > > > > > 478, in confirm
> > > > > > > > > > > > > code=opcode,
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 10:44 AM, Dafna Ron <
> > > > > > > > > dron@redhat.com> wrote:
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > if you run it with mock you would remove any
> > > > > > > > > environmental conditions that can effect the outcome so I recommend \
> > > > > > > > > using mock
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 3:32 PM, Martin Perina <
> > > > > > > > > mperina@redhat.com> wrote:
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 3:49 PM, Dafna Ron <
> > > > > > > > > dron@redhat.com> wrote:
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > did you use mock to reproduce?
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > No, just run_suite under myself
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 2:39 PM, Martin Perina <
> > > > > > > > > mperina@redhat.com> wrote:
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Hi,
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > the problem is that we haven't fetched the \
> > > > > > > > > > > > > > > > > > temporary
> > > > > > > > > host-deploy log from /tmp directory, so we don't know which string \
> > > > > > > > > that host-deploy process sent to engine is causing that issue. I \
> > > > > > > > > tried to reproduce on my local machine, but I was unable to \
> > > > > > > > > reproduce it, 002_bootstrap phase finished successfully (other \
> > > > > > > > > phases are still running).
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > So if anyone is able to reproduce, please try to \
> > > > > > > > > > > > > > > > > > fetch
> > > > > > > > > host-deploy log from /tmp directory after the error is raised and \
> > > > > > > > > share it.
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Thanks
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Martin
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 1:52 PM, Dafna Ron <
> > > > > > > > > dron@redhat.com> wrote:
> > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > Full logs can be found here:
> > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > 
> > > > > > > > > https://jenkins.ovirt.org/view/Change%20queue%20jobs/job/ovirt-maste \
> > > > > > > > > r_change-queue-tester/10307/artifact/upgrade-from-release-suite.el7.x86_64/test_logs/upgrade-from-release-suite-master/post-002_bootstrap.py/
> > > > > > > > > 
> > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > On Fri, Sep 14, 2018 at 12:48 PM, Dafna Ron <
> > > > > > > > > dron@redhat.com> wrote:
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > Hi,
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > The previous regression was resolved and we \
> > > > > > > > > > > > > > > > > > > > now have
> > > > > > > > > a new regression.
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > I don't think that the reported change is \
> > > > > > > > > > > > > > > > > > > > related so
> > > > > > > > > can someone from ovirt-engine take a look?
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > The failure is add host on the upgrade suite.
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > Please note that we have not had an \
> > > > > > > > > > > > > > > > > > > > engine-ovirt
> > > > > > > > > build for over 10 days due to several consecutive regressions and I \
> > > > > > > > > would ask you to stop merging until we can stabilize the project \
> > > > > > > > > and have a new package of engine.
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > error:
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:07,670-04 INFO
> > > > > > > > > [org.ovirt.engine.core.uutils.ssh.SSHDialog]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] SSH execute
> > > > > > > > > 'root@lago-upgrade-from-release-suite-master-host-0' 'umask 0077;
> > > > > > > > > MYTMP="$(TMPDIR="${OVIRT_TMPDIR}" mktemp -d -t ovirt-XXXXXXXXXX)"; \
> > > > > > > > > trap "chmod -R u+rwX \"${MYTMP}\" > /dev/null 2>&1; rm -fr \
> > > > > > > > >                 \"${MYTMP}\" >
> > > > > > > > > /dev/null 2>&1" 0; tar -b1 --warning=no-timestamp -C "${MYTMP}" -x \
> > > > > > > > > && "${MYTMP}"/ovirt-host-deploy DIALOG/dialect=str:machine
> > > > > > > > > DIALOG/customization=bool:True'
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,550-04 INFO
> > > > > > > > > [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> > > > > > > > >  (VdsDeploy) [5c91fcbd] EVENT_ID: VDS_INSTALL_IN_PROGRESS(509), \
> > > > > > > > > Installing Host lago-upgrade-from-release-suite-master-host-0. \
> > > > > > > > > Stage: Initializing.
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,565-04 INFO
> > > > > > > > > [org.ovirt.engine.core.utils.transaction.TransactionSupport] \
> > > > > > > > > (VdsDeploy) [5c91fcbd] transaction rolled back
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,574-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase] (VdsDeploy) \
> > > > > > > > > [5c91fcbd] Error during deploy dialog
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,578-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Error during \
> > > > > > > > > host lago-upgrade-from-release-suite-master-host-0 install
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,586-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> > > > > > > > >  (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] EVENT_ID:
> > > > > > > > > VDS_INSTALL_IN_PROGRESS_ERROR(511), An error has occurred during
> > > > > > > > > installation of Host lago-upgrade-from-release-suite-master-host-0:
> > > > > > > > > CallableStatementCallback; SQL [{call insertauditlog(?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for encoding \
> > > > > > > > > "UTF8": 0x00; nested exception is \
> > > > > > > > > org.postgresql.util.PSQLException: ERROR: invalid byte sequence for \
> > > > > > > > > encoding "UTF8": 0x00.
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,586-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Error during \
> > > > > > > > > host lago-upgrade-from-release-suite-master-host-0 install, \
> > > > > > > > >                 preferring first
> > > > > > > > > exception: CallableStatementCallback; SQL [{call insertauditlog(?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for \
> > > > > > > > > encoding "UTF8": 0x00; nested exception is \
> > > > > > > > > org.postgresql.util.PSQLException: ERROR: invalid byte sequence for \
> > > > > > > > > encoding "UTF8": 0x00
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,586-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Host \
> > > > > > > > > installation failed for host \
> > > > > > > > > 'e475e93a-63b3-4573-b242-162c2ed864f0', \
> > > > > > > > > 'lago-upgrade-from-release-suite-master-host-0': \
> > > > > > > > > CallableStatementCallback; SQL [{call insertauditlog(?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for encoding \
> > > > > > > > >                 "UTF8": 0x00; nested exception is
> > > > > > > > > org.postgresql.util.PSQLException: ERROR: invalid byte sequence for
> > > > > > > > > encoding "UTF8": 0x00
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,615-04 INFO
> > > > > > > > > [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] START,
> > > > > > > > > SetVdsStatusVDSCommand(HostName =
> > > > > > > > > lago-upgrade-from-release-suite-master-host-0,
> > > > > > > > > SetVdsStatusVDSCommandParameters:{hostId='e475e93a-63b3-4573-b242-162c2ed864f0',
> > > > > > > > >  status='InstallFailed', nonOperationalReason='NONE',
> > > > > > > > > stopSpmFailureLogged='false', maintenanceReason='null'}), log id: \
> > > > > > > > > 146cdc08
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,626-04 INFO
> > > > > > > > > [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] FINISH,
> > > > > > > > > SetVdsStatusVDSCommand, return: , log id: 146cdc08
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,639-04 ERROR
> > > > > > > > > [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> > > > > > > > >  (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] EVENT_ID:
> > > > > > > > > VDS_INSTALL_FAILED(505), Host \
> > > > > > > > > lago-upgrade-from-release-suite-master-host-0 installation failed. \
> > > > > > > > > CallableStatementCallback; SQL [{call insertauditlog(?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
> > > > > > > > > ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for encoding \
> > > > > > > > >                 "UTF8": 0x00; nested exception is
> > > > > > > > > org.postgresql.util.PSQLException: ERROR: invalid byte sequence for
> > > > > > > > > encoding "UTF8": 0x00.
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:08,652-04 INFO
> > > > > > > > > [org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
> > > > > > > > > (EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Lock freed to \
> > > > > > > > > object \
> > > > > > > > > 'EngineLock:{exclusiveLocks='[e475e93a-63b3-4573-b242-162c2ed864f0=VDS]',
> > > > > > > > >  sharedLocks=''}'
> > > > > > > > > > > > > > > > > > > > 2018-09-14 05:51:37,996-04 INFO
> > > > > > > > > [org.ovirt.engine.core.bll.quota.QuotaManager]
> > > > > > > > > (EE-ManagedThreadFactory-engineScheduled-Thread-44) [] Quota Cache \
> > > > > > > > > updated. (19 msec)
> > > > > > > > > > > > > > > > > > > > (END)
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > > Thanks,
> > > > > > > > > > > > > > > > > > > > Dafna
> > > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > --
> > > > > > > > > > > > > > > > > > Martin Perina
> > > > > > > > > > > > > > > > > > Associate Manager, Software Engineering
> > > > > > > > > > > > > > > > > > Red Hat Czech s.r.o.
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > --
> > > > > > > > > > > > > > > > Martin Perina
> > > > > > > > > > > > > > > > Associate Manager, Software Engineering
> > > > > > > > > > > > > > > > Red Hat Czech s.r.o.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > --
> > > > > > > > > > > > > Martin Perina
> > > > > > > > > > > > > Associate Manager, Software Engineering
> > > > > > > > > > > > > Red Hat Czech s.r.o.
> > > > > > > > > > > > 
> > > > > > > > > > > > 
> > > > > > > > > > > > 
> > > > > > > > > > > > --
> > > > > > > > > > > > Didi
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > --
> > > > > > > > > > > Didi
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > --
> > > > > > > > > Didi
> > > > > > > > > 
> > > > > > > > _______________________________________________
> > > > > > > > Infra mailing list -- infra@ovirt.org
> > > > > > > > To unsubscribe send an email to infra-leave@ovirt.org
> > > > > > > > Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> > > > > > > > oVirt Code of Conduct:
> > > > > > > > https://www.ovirt.org/community/about/community-guidelines/
> > > > > > > > List Archives:
> > > > > > > > https://lists.ovirt.org/archives/list/infra@ovirt.org/message/CG2IYPXSSEFTL6XCN72JHUSWOUY7QRSA/
> > > > > > > >  
> > > > > > > 
> > > > > > > 
> > > > > > > --
> > > > > > > 
> > > > > > > GALIT ROSENTHAL
> > > > > > > 
> > > > > > > SOFTWARE ENGINEER
> > > > > > > 
> > > > > > > Red Hat
> > > > > > > 
> > > > > > > <https://www.redhat.com/>
> > > > > > > 
> > > > > > > galit@gmail.com    T: 972-9-7692230
> > > > > > > <https://red.ht/sig>
> > > > > > > 
> > > > > > 
> > > > > > 
> > > > > > _______________________________________________
> > > > > > Infra mailing list -- infra@ovirt.org
> > > > > > To unsubscribe send an email to infra-leave@ovirt.org
> > > > > > Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> > > > > > oVirt Code of Conduct:
> > > > > > https://www.ovirt.org/community/about/community-guidelines/
> > > > > > List Archives:
> > > > > > https://lists.ovirt.org/archives/list/infra@ovirt.org/message/QMRM2INTCRDPT7GPF24EEPNJAZRP4CUQ/
> > > > > >  
> > > > > > 
> > > > > 
> > > _______________________________________________
> > > Infra mailing list -- infra@ovirt.org
> > > To unsubscribe send an email to infra-leave@ovirt.org
> > > Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> > > oVirt Code of Conduct:
> > > https://www.ovirt.org/community/about/community-guidelines/
> > > List Archives:
> > > https://lists.ovirt.org/archives/list/infra@ovirt.org/message/7MG4ZPPXOVMIETGHA5IIEOQRPMA2GMTE/
> > >  
> > 
> > 
> > --
> > Didi
> > 
> _______________________________________________
> Devel mailing list -- devel@ovirt.org
> To unsubscribe send an email to devel-leave@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/devel@ovirt.org/message/RBXX64O6WXL2VF4L2GSU5KOMQHMUHKRK/
>  


[Attachment #5 (text/html)]

<div dir="ltr"><div dir="ltr"><div class="gmail_default"><div \
class="gmail_default"><font face="arial, helvetica, sans-serif">Hi,</font></div><div \
class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div \
class="gmail_default"><font face="arial, helvetica, sans-serif">I hit this problem \
again. Otopi sends many zero bytes before a response.</font></div><div \
class="gmail_default"><font face="arial, helvetica, sans-serif">This time, on an \
engine installed from master RPM, not dev environment.</font></div><div \
class="gmail_default"><font face="arial, helvetica, sans-serif">The engine and host \
machines are latest Centos 7.</font></div><div class="gmail_default"><font \
face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font \
face="arial, helvetica, sans-serif">Is there some workaround for deploying the \
host?</font></div><div class="gmail_default"><font face="arial, helvetica, \
sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, \
sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, \
sans-serif">Thanks,</font></div><div class="gmail_default"><font face="arial, \
helvetica, sans-serif">Andrej</font></div></div></div></div><br><div \
class="gmail_quote"><div dir="ltr">On Thu, 20 Sep 2018 at 08:59, Yuval Turgeman \
&lt;<a href="mailto:yturgema@redhat.com">yturgema@redhat.com</a>&gt; \
wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 \
.8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">That would work \
too... the end result would be same, tar  pads the last record with zeros as \
well<br></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Sep 20, 2018 at \
9:51 AM Yedidyah Bar David &lt;<a href="mailto:didi@redhat.com" \
target="_blank">didi@redhat.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div dir="ltr">On \
Mon, Sep 17, 2018 at 6:35 PM Yuval Turgeman &lt;<a href="mailto:yturgema@redhat.com" \
target="_blank">yturgema@redhat.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr"><div>Ok, regarding the tar \
issue, there&#39;s another solution - since commons-compress hard coded the blocking \
factor to 1, while the default in tar is 20, we could continue creating the tar as we \
do today, but add a bunch of zeros to the end of the tarball.</div><br></div><div \
dir="ltr">[yturgema@piggie ~/aa]$ ls -l ovirt-host-deploy_fc28.tar<br>-rw-r--r--. 1 \
yturgema yturgema 2166272 Sep   2 17:03 \
ovirt-host-deploy_fc28.tar<br>[yturgema@piggie ~/aa]$ python -c &quot;print \
10240-2166272%10240&quot;<br>4608<br>[yturgema@piggie ~/aa]$ dd if=/dev/zero \
of=/dev/stdout bs=4608 count=1 | cat ovirt-host-deploy_fc28.tar - &gt; \
new_host_deploy.tar<br>1+0 records in<br>1+0 records out<br>4608 bytes (4.6 kB, 4.5 \
KiB) copied, 0.000373488 s, 12.3 MB/s<br>[yturgema@piggie ~/aa]$ ls -l \
new_host_deploy.tar <br>-rw-rw-r--. 1 yturgema yturgema 2170880 Sep 17 18:16 \
new_host_deploy.tar<br></div><div dir="ltr"><br></div><div>This would solve the \
problem, and not break el7, if this solution is acceptable, I can send a \
patch.<br></div></div></blockquote><div><br></div><div>This will probably work, but \
if you ask me, is too ugly. If we want to go this path, we \
probably<br></div><div>have to find a reliable way to find out the blocking factor, \
or we risk another failure in the<br>future.<br><br></div><div>What about simply \
giving up on all of this and calling the external &#39;tar&#39; utility also \
for<br></div><div>creating the archive, instead of using Java?<br></div><div>  \
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div></div><div dir="ltr"><br></div><div \
dir="ltr"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On \
Mon, Sep 17, 2018 at 6:02 PM, Martin Perina <span dir="ltr">&lt;<a \
href="mailto:mperina@redhat.com" target="_blank">mperina@redhat.com</a>&gt;</span> \
wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px \
#ccc solid;padding-left:1ex"><div dir="auto"><span><div><br><br><div \
class="gmail_quote"><div dir="ltr">On Mon, 17 Sep 2018, 16:25 Ravi Shankar Nori, \
&lt;<a href="mailto:rnori@redhat.com" target="_blank">rnori@redhat.com</a>&gt; \
wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 \
.8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">host-deploy is still \
broken on master fc28<br></div></blockquote></div></div><div \
dir="auto"><br></div></span><div dir="auto">Yes, there are multiple issues on FC28, \
but the question is if this fixed OST on CentOS?  </div><div><div \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123h5"><div \
dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"></div><div class="gmail_extra"><br><div \
class="gmail_quote">On Mon, Sep 17, 2018 at 8:01 AM, Yuval Turgeman <span \
dir="ltr">&lt;<a href="mailto:yturgema@redhat.com" rel="noreferrer" \
target="_blank">yturgema@redhat.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr">I&#39;m pretty sure I verified \
this on el7 as well, i&#39;ll check again, but thinking about it, tar will stop when \
it gets to the first empty block, so if the record size on the engine&#39;s side is \
large and the end is filled with zeros, -b1 will make it stop at the first empty \
block so the next read on the host&#39;s side would get the trailing zeros which is \
what otopi reads.</div><div dir="ltr"></div><div dir="ltr">Btw, it could be a problem \
with deployed el7 systems as well, if for any reason the default on the host is set \
to something that is more than 20 blocks (can be set with export TAR_BLOCKING_FACTOR \
for the root account on the host side).<br></div><div>It&#39;s ok to revert the patch \
to fix the regression, but I don&#39;t see any other way other than -b1... perhaps \
add a `cat -` after to just read until EOF or something, or have otopi strip the \
input.<br></div></div><div \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430HOEnZb"><div \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430h5"><div \
class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 17, 2018 at 2:30 PM, \
Galit Rosenthal <span dir="ltr">&lt;<a href="mailto:grosenth@redhat.com" \
rel="noreferrer" target="_blank">grosenth@redhat.com</a>&gt;</span> \
wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px \
#ccc solid;padding-left:1ex"><div dir="ltr"><div \
dir="ltr">Didi,<div><br></div><div>Is this what you are looking for</div><div><a \
href="https://ovirt-jira.atlassian.net/browse/OVIRT-2259" rel="noreferrer" \
target="_blank">https://ovirt-jira.atlassian.net/browse/OVIRT-2259</a><br></div><div>?</div><div>Galit</div></div></div><br><div \
class="gmail_quote"><div><div \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430m_-4427499419149961692h5"><div \
dir="ltr">On Mon, Sep 17, 2018 at 1:54 PM Dafna Ron &lt;<a \
href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br></div></div></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div><div \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430m_-4427499419149961692h5"><div \
dir="ltr"><div>I think that in ovirt-engine we currently only build to centos. \
<br></div><div>since we have not had an engine build for 2 weeks (on master) I think \
we should merge and worry about fc28 once it would be relevant. \
<br><br></div><div>the failure we have now could be another regression missed since \
the project has been broken for two weeks. <br></div><div><br></div><div>Thanks, \
<br></div><div>Dafna<br><br></div><div><br></div></div><br><div \
class="gmail_quote"><div dir="ltr">On Mon, Sep 17, 2018 at 10:30 AM Yedidyah Bar \
David &lt;<a href="mailto:didi@redhat.com" rel="noreferrer" \
target="_blank">didi@redhat.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">On Mon, Sep 17, 2018 at 11:49 AM Dafna Ron &lt;<a \
href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br> &gt;<br>
&gt; Didi, Marin, any update on the patch?<br>
<br>
Yes - it passed. Actually failed, but only after host-deploy:<br>
<br>
<a href="https://jenkins.ovirt.org/view/oVirt%20system%20tests/job/ovirt-system-tests_manual/3189/" \
rel="noreferrer noreferrer" \
target="_blank">https://jenkins.ovirt.org/view/oVirt%20system%20tests/job/ovirt-system-tests_manual/3189/</a><br>
 <br>
I&#39;d rather not merge it as-is, because it will break fedora.<br>
<br>
If someone can have a look at the code generating the tar file, and can see if<br>
it&#39;s easy to make it work well for both centos and fedora, perhaps by \
explicitly<br> setting all relevant params to some reasonable values, great. \
Otherwise, I guess<br> we can merge for now, as fedora is still not supported \
anyway.<br> <br>
Thanks,<br>
<br>
&gt;<br>
&gt;<br>
&gt; On Sun, Sep 16, 2018 at 11:09 AM Yedidyah Bar David &lt;<a \
href="mailto:didi@redhat.com" rel="noreferrer" \
target="_blank">didi@redhat.com</a>&gt; wrote:<br> &gt;&gt;<br>
&gt;&gt; On Sun, Sep 16, 2018 at 12:53 PM Yedidyah Bar David &lt;<a \
href="mailto:didi@redhat.com" rel="noreferrer" \
target="_blank">didi@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt;<br>
&gt;&gt; &gt; On Fri, Sep 14, 2018 at 6:06 PM Martin Perina &lt;<a \
href="mailto:mperina@redhat.com" rel="noreferrer" \
target="_blank">mperina@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; On Fri, Sep 14, 2018 at 4:51 PM, Ravi Shankar Nori &lt;<a \
href="mailto:rnori@redhat.com" rel="noreferrer" \
target="_blank">rnori@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt; I see the same errors on my dev env. From the logs attached by \
Andrej the response received by otopi has a bunch of null chars before the actual \
response CONFIRM DEPLOY_PROCEED=yes<br> &gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt; 2018-09-14 15:49:23,018+0200 DEBUG \
otopi.plugins.otopi.dialog.machine dialog.__logString:204 DIALOG:SEND           ### \
Response is CONFIRM DEPLOY_PROCEED=yes|no or ABORT DEPLOY_PROCEED<br> &gt;&gt; &gt; \
&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt; ^@^@^@^@^@^@^@^@^@CONFIRM DEPLOY_PROCEED=yes<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; Didi/Sandro, could you please take a look? Below error seems like \
some issue in otopi, where an error is raised when handling binary input:<br> \
&gt;&gt; &gt;<br> &gt;&gt; &gt; Not sure the issue is &quot;binary input&quot; in \
general, but simply illegal<br> &gt;&gt; &gt; input. The prompt expects, as it says, \
one of these 3 replies:<br> &gt;&gt; &gt;<br>
&gt;&gt; &gt; CONFIRM DEPLOY_PROCEED=yes<br>
&gt;&gt; &gt; CONFIRM DEPLOY_PROCEED=no<br>
&gt;&gt; &gt; ABORT DEPLOY_PROCEED<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Instead, judging from the file supplied by Andrej, it gets from the \
engine:<br> &gt;&gt; &gt; &lt;7169 null bytes&gt;CONFIRM DEPLOY_PROCEED=yes<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; So either the engine now sends, for some reason, 7169 null bytes, \
in<br> &gt;&gt; &gt; this response, or there is some low-level change causing this to \
be<br> &gt;&gt; &gt; eventually supplied to otopi - a change in apache-sshd, openssh, \
some<br> &gt;&gt; &gt; library, the kernel, no idea.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Well, thinking a bit, I have a wild guess: Perhaps it&#39;s related to \
the<br> &gt;&gt; &gt; patch introduced recently to change the tar blocking?<br>
&gt;&gt;<br>
&gt;&gt; <a href="https://gerrit.ovirt.org/94357" rel="noreferrer noreferrer" \
target="_blank">https://gerrit.ovirt.org/94357</a><br> &gt;&gt;<br>
&gt;&gt; I am leaving soon, perhaps someone can try the manual job with the<br>
&gt;&gt; result of the check-patch job for above patch, to see if it fixes.<br>
&gt;&gt; Otherwise I&#39;ll do this tomorrow.<br>
&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; 2018-09-14 15:49:23,032+0200 DEBUG otopi.context \
context._executeMethod:143 method exception<br> &gt;&gt; &gt; &gt; Traceback (most \
recent call last):<br> &gt;&gt; &gt; &gt;     File \
&quot;/usr/lib/python2.7/site-packages/otopi/context.py&quot;, line 133, in \
_executeMethod<br> &gt;&gt; &gt; &gt;        method[&#39;method&#39;]()<br>
&gt;&gt; &gt; &gt;     File \
&quot;/tmp/ovirt-O6CfS4aUHI/otopi-plugins/ovirt-host-deploy/core/misc.py&quot;, line \
87, in _confirm<br> &gt;&gt; &gt; &gt;        prompt=True,<br>
&gt;&gt; &gt; &gt;     File \
&quot;/tmp/ovirt-O6CfS4aUHI/otopi-plugins/otopi/dialog/machine.py&quot;, line 478, in \
confirm<br> &gt;&gt; &gt; &gt;        code=opcode,<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt; On Fri, Sep 14, 2018 at 10:44 AM, Dafna Ron &lt;<a \
href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; if you run it with mock you would remove any environmental \
conditions that can effect the outcome so I recommend using mock<br> &gt;&gt; &gt; \
&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt; On Fri, Sep 14, 2018 at 3:32 PM, Martin Perina &lt;<a \
href="mailto:mperina@redhat.com" rel="noreferrer" \
target="_blank">mperina@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; On Fri, Sep 14, 2018 at 3:49 PM, Dafna Ron &lt;<a \
href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt; did you use mock to \
reproduce?<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; No, just run_suite under myself<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt; On Fri, Sep 14, 2018 at 2:39 PM, Martin Perina \
&lt;<a href="mailto:mperina@redhat.com" rel="noreferrer" \
target="_blank">mperina@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; the problem is that we haven&#39;t fetched the \
temporary host-deploy log from /tmp directory, so we don&#39;t know which string that \
host-deploy process sent to engine is causing that issue. I tried to reproduce on my \
local machine, but I was unable to reproduce it, 002_bootstrap phase finished \
successfully (other phases are still running).<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; So if anyone is \
able to reproduce, please try to fetch host-deploy log from /tmp directory after the \
error is raised and share it.<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Thanks<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Martin<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; On Fri, Sep 14, 2018 at 1:52 PM, Dafna Ron \
&lt;<a href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Full logs \
can be found here:<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; <a \
href="https://jenkins.ovirt.org/view/Change%20queue%20jobs/job/ovirt-master_change-que \
ue-tester/10307/artifact/upgrade-from-release-suite.el7.x86_64/test_logs/upgrade-from-release-suite-master/post-002_bootstrap.py/" \
rel="noreferrer noreferrer" \
target="_blank">https://jenkins.ovirt.org/view/Change%20queue%20jobs/job/ovirt-master_ \
change-queue-tester/10307/artifact/upgrade-from-release-suite.el7.x86_64/test_logs/upgrade-from-release-suite-master/post-002_bootstrap.py/</a><br>
 &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; On Fri, Sep 14, 2018 at 12:48 PM, Dafna \
Ron &lt;<a href="mailto:dron@redhat.com" rel="noreferrer" \
target="_blank">dron@redhat.com</a>&gt; wrote:<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
Hi,<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; The previous regression was resolved \
and we now have a new regression.<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I \
don&#39;t think that the reported change is related so can someone from ovirt-engine \
take a look?<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; The failure is add host on the upgrade \
suite.<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Please note that we have not had an \
engine-ovirt build for over 10 days due to several consecutive regressions and I \
would ask you to stop merging until we can stabilize the project and have a new \
package of engine.<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; error:<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:07,670-04 INFO   \
[org.ovirt.engine.core.uutils.ssh.SSHDialog] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] SSH execute \
&#39;root@lago-upgrade-from-release-suite-master-host-0&#39; &#39;umask 0077; \
MYTMP=&quot;$(TMPDIR=&quot;${OVIRT_TMPDIR}&quot; mktemp -d -t \
ovirt-XXXXXXXXXX)&quot;; trap &quot;chmod -R u+rwX \&quot;${MYTMP}\&quot; &gt; \
/dev/null 2&gt;&amp;1; rm -fr \&quot;${MYTMP}\&quot; &gt; /dev/null 2&gt;&amp;1&quot; \
0; tar -b1 --warning=no-timestamp -C &quot;${MYTMP}&quot; -x &amp;&amp;   \
&quot;${MYTMP}&quot;/ovirt-host-deploy DIALOG/dialect=str:machine \
DIALOG/customization=bool:True&#39;<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,550-04 INFO   \
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] (VdsDeploy) \
[5c91fcbd] EVENT_ID: VDS_INSTALL_IN_PROGRESS(509), Installing Host \
lago-upgrade-from-release-suite-master-host-0. Stage: Initializing.<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,565-04 INFO   \
[org.ovirt.engine.core.utils.transaction.TransactionSupport] (VdsDeploy) [5c91fcbd] \
transaction rolled back<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 \
05:51:08,574-04 ERROR [org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase] \
(VdsDeploy) [5c91fcbd] Error during deploy dialog<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,578-04 ERROR \
[org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Error during host \
lago-upgrade-from-release-suite-master-host-0 install<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,586-04 ERROR \
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] EVENT_ID: \
VDS_INSTALL_IN_PROGRESS_ERROR(511), An error has occurred during installation of Host \
lago-upgrade-from-release-suite-master-host-0: CallableStatementCallback; SQL [{call \
insertauditlog(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for encoding \
&quot;UTF8&quot;: 0x00; nested exception is org.postgresql.util.PSQLException: ERROR: \
invalid byte sequence for encoding &quot;UTF8&quot;: 0x00.<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,586-04 ERROR \
[org.ovirt.engine.core.bll.hostdeploy.VdsDeployBase] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Error during host \
lago-upgrade-from-release-suite-master-host-0 install, preferring first exception: \
CallableStatementCallback; SQL [{call insertauditlog(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid \
byte sequence for encoding &quot;UTF8&quot;: 0x00; nested exception is \
org.postgresql.util.PSQLException: ERROR: invalid byte sequence for encoding \
&quot;UTF8&quot;: 0x00<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 \
05:51:08,586-04 ERROR \
[org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Host installation failed for \
host &#39;e475e93a-63b3-4573-b242-162c2ed864f0&#39;, \
&#39;lago-upgrade-from-release-suite-master-host-0&#39;: CallableStatementCallback; \
SQL [{call insertauditlog(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)}ERROR: invalid byte sequence for encoding \
&quot;UTF8&quot;: 0x00; nested exception is org.postgresql.util.PSQLException: ERROR: \
invalid byte sequence for encoding &quot;UTF8&quot;: 0x00<br> &gt;&gt; &gt; \
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 05:51:08,615-04 INFO   \
[org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] START, \
SetVdsStatusVDSCommand(HostName = lago-upgrade-from-release-suite-master-host-0, \
SetVdsStatusVDSCommandParameters:{hostId=&#39;e475e93a-63b3-4573-b242-162c2ed864f0&#39;, \
status=&#39;InstallFailed&#39;, nonOperationalReason=&#39;NONE&#39;, \
stopSpmFailureLogged=&#39;false&#39;, maintenanceReason=&#39;null&#39;}), log id: \
146cdc08<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; 2018-09-14 \
05:51:08,626-04 INFO   [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] FINISH, SetVdsStatusVDSCommand, \
return: , log id: 146cdc08<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
2018-09-14 05:51:08,639-04 ERROR \
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] EVENT_ID: \
VDS_INSTALL_FAILED(505), Host lago-upgrade-from-release-suite-master-host-0 \
installation failed. CallableStatementCallback; SQL [{call insertauditlog(?, ?, ?, ?, \
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \
?, ?)}ERROR: invalid byte sequence for encoding &quot;UTF8&quot;: 0x00; nested \
exception is org.postgresql.util.PSQLException: ERROR: invalid byte sequence for \
encoding &quot;UTF8&quot;: 0x00.<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
2018-09-14 05:51:08,652-04 INFO   \
[org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand] \
(EE-ManagedThreadFactory-engine-Thread-1) [5c91fcbd] Lock freed to object \
&#39;EngineLock:{exclusiveLocks=&#39;[e475e93a-63b3-4573-b242-162c2ed864f0=VDS]&#39;, \
sharedLocks=&#39;&#39;}&#39;<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
2018-09-14 05:51:37,996-04 INFO   [org.ovirt.engine.core.bll.quota.QuotaManager] \
(EE-ManagedThreadFactory-engineScheduled-Thread-44) [] Quota Cache updated. (19 \
msec)<br> &gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; (END)<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Thanks,<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Dafna<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Martin Perina<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Associate Manager, Software Engineering<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;&gt; Red Hat Czech s.r.o.<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; Martin Perina<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; Associate Manager, Software Engineering<br>
&gt;&gt; &gt; &gt;&gt;&gt;&gt; Red Hat Czech s.r.o.<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt; &gt;&gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt;<br>
&gt;&gt; &gt; &gt; --<br>
&gt;&gt; &gt; &gt; Martin Perina<br>
&gt;&gt; &gt; &gt; Associate Manager, Software Engineering<br>
&gt;&gt; &gt; &gt; Red Hat Czech s.r.o.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Didi<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Didi<br>
<br>
<br>
<br>
-- <br>
Didi<br>
</blockquote></div></div></div>
_______________________________________________<br>
Infra mailing list -- <a href="mailto:infra@ovirt.org" rel="noreferrer" \
target="_blank">infra@ovirt.org</a><br> To unsubscribe send an email to <a \
href="mailto:infra-leave@ovirt.org" rel="noreferrer" \
target="_blank">infra-leave@ovirt.org</a><span><br> Privacy Statement: <a \
href="https://www.ovirt.org/site/privacy-policy/" rel="noreferrer noreferrer" \
target="_blank">https://www.ovirt.org/site/privacy-policy/</a><br> oVirt Code of \
Conduct: <a href="https://www.ovirt.org/community/about/community-guidelines/" \
rel="noreferrer noreferrer" \
target="_blank">https://www.ovirt.org/community/about/community-guidelines/</a><br></span>
 List Archives: <a href="https://lists.ovirt.org/archives/list/infra@ovirt.org/message/CG2IYPXSSEFTL6XCN72JHUSWOUY7QRSA/" \
rel="noreferrer noreferrer" \
target="_blank">https://lists.ovirt.org/archives/list/infra@ovirt.org/message/CG2IYPXSSEFTL6XCN72JHUSWOUY7QRSA/</a><span \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430m_-4427499419149961692HOEnZb"><font \
color="#888888"><br> </font></span></blockquote></div><span \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895211942237m_3717554046796728430m_-4427499419149961692HOEnZb"><font \
color="#888888"><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-1239520899523766817m_-1962212861619303815m_-7703008777046778123m_-4294401895 \
211942237m_3717554046796728430m_-4427499419149961692m_-2119069365334450172gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><br><p \
style="color:rgb(0,0,0);font-family:overpass,sans-serif;letter-spacing:normal;font-wei \
ght:bold;margin:0px;padding:0px;font-size:14px;text-transform:uppercase"><span>GALIT</span> \
<span>ROSENTHAL</span></p><p \
style="color:rgb(0,0,0);font-family:overpass,sans-serif;letter-spacing:normal;font-size:10px;margin:0px \
0px 4px;text-transform:uppercase"><span>SOFTWARE ENGINEER</span><span \
style="color:rgb(170,170,170);margin:0px"></span></p><p \
style="font-family:overpass,sans-serif;letter-spacing:normal;margin:0px;font-size:10px;color:rgb(153,153,153)"><a \
href="https://www.redhat.com/" style="color:rgb(0,136,206);margin:0px" \
rel="noreferrer" target="_blank">Red Hat  <span><br><br></span></a></p><p \
style="font-family:overpass,sans-serif;letter-spacing:normal;margin:0px 0px \
6px;font-size:10px;color:rgb(153,153,153)"><span style="margin:0px;padding:0px"><a \
href="mailto:galit@gmail.com" style="color:rgb(0,136,206);margin:0px" \
rel="noreferrer" target="_blank">galit@gmail.com</a>     </span>  <span>T:  <a \
href="tel:972-9-7692230" style="color:rgb(0,136,206);margin:0px" rel="noreferrer" \
target="_blank">972-9-7692230</a>       </span></p><table \
style="color:rgb(0,0,0);font-family:overpass,sans-serif;font-size:medium;letter-spacing:normal" \
border="0"><tbody><tr><td width="100px"><a href="https://red.ht/sig" rel="noreferrer" \
target="_blank"><img src="https://www.redhat.com/files/brand/email/sig-redhat.png" \
height="auto" width="90"></a></td></tr></tbody></table><table \
style="color:rgb(0,0,0);font-family:overpass,sans-serif;font-size:medium" \
border="0"><tbody><tr></tr></tbody></table></div></div></div></div> \
</font></span></blockquote></div><br></div> \
</div></div><br>_______________________________________________<br> Infra mailing \
list -- <a href="mailto:infra@ovirt.org" rel="noreferrer" \
target="_blank">infra@ovirt.org</a><br> To unsubscribe send an email to <a \
href="mailto:infra-leave@ovirt.org" rel="noreferrer" \
target="_blank">infra-leave@ovirt.org</a><br> Privacy Statement: <a \
href="https://www.ovirt.org/site/privacy-policy/" rel="noreferrer noreferrer" \
target="_blank">https://www.ovirt.org/site/privacy-policy/</a><br> oVirt Code of \
Conduct: <a href="https://www.ovirt.org/community/about/community-guidelines/" \
rel="noreferrer noreferrer" \
target="_blank">https://www.ovirt.org/community/about/community-guidelines/</a><br> \
List Archives: <a href="https://lists.ovirt.org/archives/list/infra@ovirt.org/message/QMRM2INTCRDPT7GPF24EEPNJAZRP4CUQ/" \
rel="noreferrer noreferrer" \
target="_blank">https://lists.ovirt.org/archives/list/infra@ovirt.org/message/QMRM2INTCRDPT7GPF24EEPNJAZRP4CUQ/</a><br>
 <br></blockquote></div><br></div>
</blockquote></div></div></div></div></div>
</blockquote></div><br></div>
_______________________________________________<br>
Infra mailing list -- <a href="mailto:infra@ovirt.org" \
target="_blank">infra@ovirt.org</a><br> To unsubscribe send an email to <a \
href="mailto:infra-leave@ovirt.org" target="_blank">infra-leave@ovirt.org</a><br> \
Privacy Statement: <a href="https://www.ovirt.org/site/privacy-policy/" \
rel="noreferrer" target="_blank">https://www.ovirt.org/site/privacy-policy/</a><br> \
oVirt Code of Conduct: <a \
href="https://www.ovirt.org/community/about/community-guidelines/" rel="noreferrer" \
target="_blank">https://www.ovirt.org/community/about/community-guidelines/</a><br> \
List Archives: <a href="https://lists.ovirt.org/archives/list/infra@ovirt.org/message/7MG4ZPPXOVMIETGHA5IIEOQRPMA2GMTE/" \
rel="noreferrer" target="_blank">https://lists.ovirt.org/archives/list/infra@ovirt.org/message/7MG4ZPPXOVMIETGHA5IIEOQRPMA2GMTE/</a><br>
 </blockquote></div><br clear="all"><br>-- <br><div dir="ltr" \
class="m_-1239520899523766817m_-1962212861619303815gmail_signature" \
data-smartmail="gmail_signature">Didi<br></div></div> </blockquote></div>
_______________________________________________<br>
Devel mailing list -- <a href="mailto:devel@ovirt.org" \
target="_blank">devel@ovirt.org</a><br> To unsubscribe send an email to <a \
href="mailto:devel-leave@ovirt.org" target="_blank">devel-leave@ovirt.org</a><br> \
Privacy Statement: <a href="https://www.ovirt.org/site/privacy-policy/" \
rel="noreferrer" target="_blank">https://www.ovirt.org/site/privacy-policy/</a><br> \
oVirt Code of Conduct: <a \
href="https://www.ovirt.org/community/about/community-guidelines/" rel="noreferrer" \
target="_blank">https://www.ovirt.org/community/about/community-guidelines/</a><br> \
List Archives: <a href="https://lists.ovirt.org/archives/list/devel@ovirt.org/message/RBXX64O6WXL2VF4L2GSU5KOMQHMUHKRK/" \
rel="noreferrer" target="_blank">https://lists.ovirt.org/archives/list/devel@ovirt.org/message/RBXX64O6WXL2VF4L2GSU5KOMQHMUHKRK/</a><br>
 </blockquote></div>


[Attachment #6 (text/plain)]

_______________________________________________
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-leave@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/
List Archives: https://lists.ovirt.org/archives/list/devel@ovirt.org/message/ZVUH7YFDNUIH5633KFOCWZXXHVCTTP4D/




[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic