Change in ovirt-engine[master]: core: PmHealthCheckerManager streaming API usage
by mperina@redhat.com
Martin Peřina has submitted this change and it was merged.
Change subject: core: PmHealthCheckerManager streaming API usage
......................................................................
core: PmHealthCheckerManager streaming API usage
Replace the old-fashioned LinqUtils usage with the modern, built-in
streaming API introduced in Java 8.
This patch is part of the effort to remove LinqUtils completely.
Change-Id: I339a1841a1796decb0375266ec0c79432ce2d873
Signed-off-by: Allon Mureinik <amureini(a)redhat.com>
---
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/pm/PmHealthCheckManager.java
1 file changed, 3 insertions(+), 9 deletions(-)
Approvals:
Martin Peřina: Looks good to me, approved
Eli Mesika: Looks good to me, but someone else must approve
Jenkins CI: Passed CI tests
Allon Mureinik: Verified
--
To view, visit https://gerrit.ovirt.org/48889
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I339a1841a1796decb0375266ec0c79432ce2d873
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Eli Mesika <emesika(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Martin Peřina <mperina(a)redhat.com>
Gerrit-Reviewer: Oved Ourfali <oourfali(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: backend: Check Host's device passthrough flag only for PCI d...
by ahadas@redhat.com
Arik Hadas has submitted this change and it was merged.
Change subject: backend: Check Host's device passthrough flag only for PCI devices
......................................................................
backend: Check Host's device passthrough flag only for PCI devices
The reported passthrough capability from VDSM should be applicable only to PCI
device passthrough and it's unavailability should not block other types of
passthrough: e.g. USB.
Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1283708
Change-Id: Ib4fe0ea2843aca004adb6d4b8120a7f86a745264
Signed-off-by: Martin Betak <mbetak(a)redhat.com>
---
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/hostdev/AbstractVmHostDevicesCommand.java
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/scheduling/policyunits/HostDeviceFilterPolicyUnit.java
M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/HostDevice.java
3 files changed, 19 insertions(+), 4 deletions(-)
Approvals:
Jenkins CI: Passed CI tests
Martin Betak: Verified
Arik Hadas: Looks good to me, approved
--
To view, visit https://gerrit.ovirt.org/48833
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ib4fe0ea2843aca004adb6d4b8120a7f86a745264
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Martin Betak <mbetak(a)redhat.com>
Gerrit-Reviewer: Arik Hadas <ahadas(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Martin Betak <mbetak(a)redhat.com>
Gerrit-Reviewer: Shahar Havivi <shavivi(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: core: VmCommand LinqUtils
by amureini@redhat.com
Allon Mureinik has submitted this change and it was merged.
Change subject: core: VmCommand LinqUtils
......................................................................
core: VmCommand LinqUtils
Replace usages of LinqUtils with Java 8's standard streaming API in
order to standardize the code and make it easier to read.
Change-Id: I0e90851ac9b6af84703e0e7488bb804f61f61549
Signed-off-by: Allon Mureinik <amureini(a)redhat.com>
---
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VmCommand.java
1 file changed, 8 insertions(+), 34 deletions(-)
Approvals:
Jenkins CI: Passed CI tests
Allon Mureinik: Verified
Arik Hadas: Looks good to me, approved
Idan Shaby: Looks good to me, but someone else must approve
--
To view, visit https://gerrit.ovirt.org/48954
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I0e90851ac9b6af84703e0e7488bb804f61f61549
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Arik Hadas <ahadas(a)redhat.com>
Gerrit-Reviewer: Idan Shaby <ishaby(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: core: Handling DestroyVds's 'noVm error msg' after Cancel Mi...
by tjelinek@redhat.com
Tomas Jelinek has submitted this change and it was merged.
Change subject: core: Handling DestroyVds's 'noVm error msg' after Cancel Migration
......................................................................
core: Handling DestroyVds's 'noVm error msg' after Cancel Migration
This patch logs potential 'noVm message' after Cancel Migration's DestroyVdsCommand
clean-up call at INFO instead of ERROR level.
In happy-day scenario, VDSM removes VM on target when migration job is aborted.
If something goes wrong (connection between hosts is down, VDSM/libvirt
does not do their job, etc.), the DestroyVdsCommand needs to be called on destination
to clean-up once Down VM report is received.
This patch does not remove the 'noVm error message' completely.
For the rare case, if source VDSM changes VM to UP before target's DOWN VM report is
received, the error is still being logged.
In that case, an INFO msg is logged explaining that missing VM must not be an error
and explaining when/why.
Proper clean-up on destination or logging if something goes really wrong has higher
priority before printing harmless error message.
Change-Id: Icd93048d785c298333f8e2df79008ee70c97bf98
Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1275747
Signed-off-by: Marek Libra <mlibra(a)redhat.com>
---
M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/vdscommands/DestroyVmVDSCommandParameters.java
M backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/VmAnalyzer.java
M backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/DestroyVDSCommand.java
3 files changed, 52 insertions(+), 4 deletions(-)
Approvals:
Jenkins CI: Passed CI tests
Marek Libra: Verified
Arik Hadas: Looks good to me, approved
--
To view, visit https://gerrit.ovirt.org/48272
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Icd93048d785c298333f8e2df79008ee70c97bf98
Gerrit-PatchSet: 5
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Marek Libra <mlibra(a)redhat.com>
Gerrit-Reviewer: Arik Hadas <ahadas(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Marek Libra <mlibra(a)redhat.com>
Gerrit-Reviewer: Tomas Jelinek <tjelinek(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine-cli[cli_3.6]: cli: Process correctly "--parent..." options
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: cli: Process correctly "--parent..." options
......................................................................
cli: Process correctly "--parent..." options
Currently when the CLI tries to find a parent collection it assumes that
the option used is "--type-identifier", but it can also be
"--parent-type-identifier" and "--parent-type-name". As a result when
the "--parent..." options are used autocompletion doesn't show the
correct options. To avoid this issue this patch changes the CLI so that
it uses the methods that check this in a more generic way.
Change-Id: I42fb362c59d4baad5968c1ac0df15bbe0b7dab8a
Bug-Url: https://bugzilla.redhat.com/1282832
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
(cherry picked from commit 1dcf01ef247ead15b6c49f7b6efc95f8ceac7d41)
---
M Makefile
M src/ovirtcli/command/command.py
M src/ovirtcli/shell/cmdshell.py
A src/ovirtcli/utils/optionhelper.py
4 files changed, 78 insertions(+), 51 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved; Passed CI tests
--
To view, visit https://gerrit.ovirt.org/48812
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I42fb362c59d4baad5968c1ac0df15bbe0b7dab8a
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-engine-cli
Gerrit-Branch: cli_3.6
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine-sdk[sdk_3.6]: sdk: Add support for matrix parameters to "add" methods
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: sdk: Add support for matrix parameters to "add" methods
......................................................................
sdk: Add support for matrix parameters to "add" methods
Currently the "add" methods don't support the matrix or query parameters
declared in the RSDL. For example, the method that adds a disk to a
storage domain supports an "unregistered" matrix parameter, but in the
current Python SDK the method is declared as follows:
def add(self, disk, correlation_id=None, expect=None)
This patch adds support for the matrix parameters, so that this method,
for example, will instead be declared like this:
def add(self, disk, correlation_id=None, expect=None, unregistered=None)
The user will then be able to use this "unregistered" parameter. For
example, to resgister an unregistered disk:
sd = api.storagedomains.get(name="mysd")
sd.disks.add(
disk=params.Disk(id="51bd5eee-6dab-4ba2-8851-ca91729aeed5"),
unregistered=True
)
This support for matrix parameters will also be available in the CLI, so
users could, for example, use the following command to register a disk:
$ add disk \
--parent-storagedomain-name mydata \
--unregistered true \
--id 51bd5eee-6dab-4ba2-8851-ca91729aeed5
Change-Id: I7a4f5fa36c96f59d79d1d6458936107a6ab02d89
Bug-Url: https://bugzilla.redhat.com/1282770
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M Makefile
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/Collection.java
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/SubCollection.java
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionAddTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionGetDisksTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionGetSearchableTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionListSearchableTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ParamsImportsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ResourceDeleteWithBodyTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ResourceDeleteWithParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubCollectionAddTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubCollectionListWithParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceDeleteWithUrlParamsAndBodyTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceDeleteWithUrlParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceUpdateTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/utils/ParamUtils.java
M src/ovirtsdk/api.py
M src/ovirtsdk/infrastructure/brokers.py
M src/ovirtsdk/utils/searchhelper.py
M src/ovirtsdk/utils/urlhelper.py
M src/ovirtsdk/xml/params.py
21 files changed, 1,449 insertions(+), 1,054 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me; Ready for merge
Jenkins CI: Passed CI tests
--
To view, visit https://gerrit.ovirt.org/48722
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I7a4f5fa36c96f59d79d1d6458936107a6ab02d89
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine-sdk
Gerrit-Branch: sdk_3.6
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine-sdk[master]: sdk: Add support for matrix parameters to "add" methods
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: sdk: Add support for matrix parameters to "add" methods
......................................................................
sdk: Add support for matrix parameters to "add" methods
Currently the "add" methods don't support the matrix or query parameters
declared in the RSDL. For example, the method that adds a disk to a
storage domain supports an "unregistered" matrix parameter, but in the
current Python SDK the method is declared as follows:
def add(self, disk, correlation_id=None, expect=None)
This patch adds support for the matrix parameters, so that this method,
for example, will instead be declared like this:
def add(self, disk, correlation_id=None, expect=None, unregistered=None)
The user will then be able to use this "unregistered" parameter. For
example, to resgister an unregistered disk:
sd = api.storagedomains.get(name="mysd")
sd.disks.add(
disk=params.Disk(id="51bd5eee-6dab-4ba2-8851-ca91729aeed5"),
unregistered=True
)
This support for matrix parameters will also be available in the CLI, so
users could, for example, use the following command to register a disk:
$ add disk \
--parent-storagedomain-name mydata \
--unregistered true \
--id 51bd5eee-6dab-4ba2-8851-ca91729aeed5
Change-Id: I7a4f5fa36c96f59d79d1d6458936107a6ab02d89
Bug-Url: https://bugzilla.redhat.com/1282770
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/Collection.java
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/SubCollection.java
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionAddTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionGetDisksTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionGetSearchableTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/CollectionListSearchableTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ParamsImportsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ResourceDeleteWithBodyTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/ResourceDeleteWithParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubCollectionAddTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubCollectionListWithParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceDeleteWithUrlParamsAndBodyTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceDeleteWithUrlParamsTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/templates/SubResourceUpdateTemplate
M generator/src/main/java/org/ovirt/engine/sdk/generator/python/utils/ParamUtils.java
M src/ovirtsdk/api.py
M src/ovirtsdk/infrastructure/brokers.py
M src/ovirtsdk/utils/searchhelper.py
M src/ovirtsdk/utils/urlhelper.py
M src/ovirtsdk/xml/params.py
20 files changed, 1,454 insertions(+), 1,055 deletions(-)
Approvals:
Juan Hernandez: Looks good to me; Passed CI tests; Ready for merge
Jenkins CI: Passed CI tests
Maor Lipchuk: Verified; Looks good to me
--
To view, visit https://gerrit.ovirt.org/48677
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I7a4f5fa36c96f59d79d1d6458936107a6ab02d89
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine-sdk
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Daniel Erez <derez(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Maor Lipchuk <mlipchuk(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: core: Remove the Findbugs profiles
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: core: Remove the Findbugs profiles
......................................................................
core: Remove the Findbugs profiles
Currently we have two Maven profiles related to Findbugs, one named
"findbugs" that adds the project specific exclussions, and another one
named "findbugs-general" that also adds the shared exclussions. As both
exclussions need to be always enabled these profiles aren't needed,
instead the required settings can be specified in the Findbugs plugin,
inside the "plugins" section of the root POM.
After applying this patch the invocation of Findbugs will just be the
following:
$ mvn findbugs:findbugs
The "-Pfindbugs-general" option is no longer required.
Change-Id: Ife1fafa2b6b7db4ee12d61835319059396a1f68e
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M pom.xml
1 file changed, 20 insertions(+), 56 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved; Passed CI tests
Oved Ourfali: Looks good to me, but someone else must approve
--
To view, visit https://gerrit.ovirt.org/48687
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ife1fafa2b6b7db4ee12d61835319059396a1f68e
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Anton Marchukov <amarchuk(a)redhat.com>
Gerrit-Reviewer: David Caro <dcaro(a)redhat.com>
Gerrit-Reviewer: Eyal Edri <eedri(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Oved Ourfali <oourfali(a)redhat.com>
Gerrit-Reviewer: Shahar Havivi <shavivi(a)redhat.com>
Gerrit-Reviewer: Sharon Naftaly <snaftaly(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: core: VmValidator#vmNotHavingPassthroughVnics linq
by amureini@redhat.com
Allon Mureinik has submitted this change and it was merged.
Change subject: core: VmValidator#vmNotHavingPassthroughVnics linq
......................................................................
core: VmValidator#vmNotHavingPassthroughVnics linq
Replaced the usage of LinqUtils with a single fluent call to Java 8's
streaming API.
This patch both simplifies the code and offers a slight performance
boost since the list of interfaces is only iterated once, instead of
twice in the original code (once for filtering the passthrough nics and
once for extracting their Names with ReplacementUtils).
Change-Id: Ibb009e2c2e604a740712987fd35763c578f2b36c
Signed-off-by: Allon Mureinik <amureini(a)redhat.com>
---
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/validator/VmValidator.java
1 file changed, 7 insertions(+), 9 deletions(-)
Approvals:
Jenkins CI: Passed CI tests
Allon Mureinik: Verified
Arik Hadas: Looks good to me, approved
Yevgeny Zaspitsky: Looks good to me, but someone else must approve
--
To view, visit https://gerrit.ovirt.org/48891
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ibb009e2c2e604a740712987fd35763c578f2b36c
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Alona Kaplan <alkaplan(a)redhat.com>
Gerrit-Reviewer: Arik Hadas <ahadas(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Yevgeny Zaspitsky <yzaspits(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months
Change in ovirt-engine[master]: core: VmValidator#vmNotHavingPassthroughVnics replacements
by amureini@redhat.com
Allon Mureinik has submitted this change and it was merged.
Change subject: core: VmValidator#vmNotHavingPassthroughVnics replacements
......................................................................
core: VmValidator#vmNotHavingPassthroughVnics replacements
Calculate the list of replacement strings only if needed. This patch
improves the code's readability by emphasizing that the replacements
are only used in an error case, and offers a [very] slight performance
improvement in the non-error case.
Change-Id: I4f3c285c5195c369101f9b09b7e9c2867d911a31
Signed-off-by: Allon Mureinik <amureini(a)redhat.com>
---
M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/validator/VmValidator.java
1 file changed, 2 insertions(+), 3 deletions(-)
Approvals:
Jenkins CI: Passed CI tests
Allon Mureinik: Verified
Arik Hadas: Looks good to me, approved
Yevgeny Zaspitsky: Looks good to me, but someone else must approve
--
To view, visit https://gerrit.ovirt.org/48892
To unsubscribe, visit https://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I4f3c285c5195c369101f9b09b7e9c2867d911a31
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Arik Hadas <ahadas(a)redhat.com>
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: Yevgeny Zaspitsky <yzaspits(a)redhat.com>
Gerrit-Reviewer: gerrit-hooks <automation(a)ovirt.org>
9 years, 5 months