Change in ovirt-engine-cli[master]: cli: ovirt-cli DistributionNotFound exception on f18 #881011
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: cli: ovirt-cli DistributionNotFound exception on f18 #881011
......................................................................
cli: ovirt-cli DistributionNotFound exception on f18 #881011
https://bugzilla.redhat.com/show_bug.cgi?id=881011
Change-Id: Icbbf415b82022ec324eb9819a4166366a6318fe3
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M setup.py
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12189
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Icbbf415b82022ec324eb9819a4166366a6318fe3
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine-cli
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: core: Make explicit version of maven war plugin
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: core: Make explicit version of maven war plugin
......................................................................
core: Make explicit version of maven war plugin
Currently we don't explicitly specify the version of the maven war
plugin that we use. This patch makes it explicit in the plugin
management section of the root POM.
Change-Id: I52d60c584be7236ce0c9b6cfb1dc970a9fab4591
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M pom.xml
1 file changed, 6 insertions(+), 0 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/11683
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I52d60c584be7236ce0c9b6cfb1dc970a9fab4591
Gerrit-PatchSet: 4
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Asaf Shakarchi <asaf(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: core: Make antrun plugin version explicit
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: core: Make antrun plugin version explicit
......................................................................
core: Make antrun plugin version explicit
Currently we don't explicitly specify the version of the maven ant
plugin that we use. This means that we use an old version. This patch
udpates to version 1.7 and makes it explicit in the parent POM.
Change-Id: Iede68182eaa101813abccb3d534fe297651ff648
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M ear/pom.xml
M pom.xml
2 files changed, 9 insertions(+), 3 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/11682
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Iede68182eaa101813abccb3d534fe297651ff648
Gerrit-PatchSet: 4
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Asaf Shakarchi <asaf(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Ofer Schreiber <oschreib(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: core: Make explicit version of maven ear plugin
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: core: Make explicit version of maven ear plugin
......................................................................
core: Make explicit version of maven ear plugin
Currently we don't explicitly specify the version of the maven ear
plugin that we use. This patch makes it explicit in the plugin
management section of the root POM.
Change-Id: Icf66612379bb1b9506b617771a8ee32c6491931a
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M pom.xml
1 file changed, 7 insertions(+), 0 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/11684
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Icf66612379bb1b9506b617771a8ee32c6491931a
Gerrit-PatchSet: 4
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: core: Don't use commons collections clone method
by juan.hernandez@redhat.com
Juan Hernandez has submitted this change and it was merged.
Change subject: core: Don't use commons collections clone method
......................................................................
core: Don't use commons collections clone method
The commons collections package provides a mechanism to clone an object
doing serialization and then deserialization. Unfortunatelly the
implementation uses its own class loader (the class loader that loaded
commons collections itself) to load the class of the serialized object.
This means that the deserialization will fail if commons collections
happens to use be loaded by a class loader that doesn't have access to
the class being cloned. This is what happens if we try to use a JBoss
module instead of dropping commons-collections in the lib directory of
the ear.
This patch implements the clone method so that it uses the context class
loader if possible, this solves the issue with separate class loaders.
Change-Id: I218940edb8fbd9e3b10e4bf01dfc84ac84196213
Signed-off-by: Juan Hernandez <juan.hernandez(a)redhat.com>
---
M backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/collections/CopyOnAccessMap.java
1 file changed, 70 insertions(+), 9 deletions(-)
Approvals:
Juan Hernandez: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/11594
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I218940edb8fbd9e3b10e4bf01dfc84ac84196213
Gerrit-PatchSet: 5
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Allon Mureinik <amureini(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yair Zaslavsky <yzaslavs(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[engine_3.2]: restapi: add missing /api/disks/xxx sub-collections
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: restapi: add missing /api/disks/xxx sub-collections
......................................................................
restapi: add missing /api/disks/xxx sub-collections
Change-Id: I967668f52da1d4a96a1789a4870ea8caa5610112
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M backend/manager/modules/restapi/interface/definition/src/main/resources/rsdl_metadata.yaml
1 file changed, 15 insertions(+), 0 deletions(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12188
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I967668f52da1d4a96a1789a4870ea8caa5610112
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: engine_3.2
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: restapi: fix broken /api/disks collection
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: restapi: fix broken /api/disks collection
......................................................................
restapi: fix broken /api/disks collection
Change-Id: I50be14b480474a2a2ac4ad8f89f48ad8070ee8c6
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M backend/manager/modules/restapi/interface/definition/src/main/java/org/ovirt/engine/api/resource/StorageDomainContentDisksResource.java
1 file changed, 0 insertions(+), 1 deletion(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12187
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I50be14b480474a2a2ac4ad8f89f48ad8070ee8c6
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 10 months
Change in ovirt-live[master]: packaging: modify ovirt-live to 3.2 stable
by mgoldboi@redhat.com
Moran Goldboim has submitted this change and it was merged.
Change subject: packaging: modify ovirt-live to 3.2 stable
......................................................................
packaging: modify ovirt-live to 3.2 stable
*modifies the ovirt-live to base on ovirt 3.2 stable version.
*change admin password to "ovirt"
*minor tweaks
Change-Id: Id8807f5a25ad1690a1407db8aab25541ca1de080
Signed-off-by: Ohad Basan <obasan(a)redhat.com>
---
M build.sh
M oVirtLiveFiles/engine-setup-yad.sh
M oVirtLiveFiles/ovirt-answer
3 files changed, 8 insertions(+), 8 deletions(-)
Approvals:
Moran Goldboim: Looks good to me, approved
Ohad Basan: Verified
--
To view, visit http://gerrit.ovirt.org/12179
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Id8807f5a25ad1690a1407db8aab25541ca1de080
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-live
Gerrit-Branch: master
Gerrit-Owner: Ohad Basan <obasan(a)redhat.com>
Gerrit-Reviewer: Eyal Edri <eedri(a)redhat.com>
Gerrit-Reviewer: Moran Goldboim <mgoldboi(a)redhat.com>
Gerrit-Reviewer: Ohad Basan <obasan(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: restapi: add missing /api/disks/xxx sub-collections descript...
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: restapi: add missing /api/disks/xxx sub-collections descriptions
......................................................................
restapi: add missing /api/disks/xxx sub-collections descriptions
Change-Id: Ia2404c2ddab08d46a4e798340a7e27e87517d0d6
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M backend/manager/modules/restapi/interface/definition/src/main/resources/rsdl_metadata.yaml
1 file changed, 30 insertions(+), 0 deletions(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12183
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ia2404c2ddab08d46a4e798340a7e27e87517d0d6
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 10 months
Change in ovirt-engine[master]: restapi: log error only when no InputStream
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: restapi: log error only when no InputStream
......................................................................
restapi: log error only when no InputStream
Change-Id: I179cef646da35ebfbc28d96823f5e4ea7429532f
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/rsdl/RsdlBuilder.java
1 file changed, 3 insertions(+), 2 deletions(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12166
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I179cef646da35ebfbc28d96823f5e4ea7429532f
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Ori Liel <oliel(a)redhat.com>
11 years, 10 months