Author: tucu
Date: Tue Nov 22 07:12:51 2011
New Revision: 1204834
URL: http://svn.apache.org/viewvc?rev=1204834&view=rev
Log:
OOZIE-609 OOZIE-609 Oozie services fail to start with log enabled. (tucu)
Modified:
incubator/oozie/trunk/core/src/main/java/org/apache/oozie/service/Services.java
incubator/oozie/trunk/release-log.txt
Modified:
incubator/oozie/trunk/core/src/main/java/org/apache/oozie/service/Services.java
URL:
http://svn.apache.org/viewvc/incubator/oozie/trunk/core/src/main/java/org/apache/oozie/service/Services.java?rev=1204834&r1=1204833&r2=1204834&view=diff
==============================================================================
---
incubator/oozie/trunk/core/src/main/java/org/apache/oozie/service/Services.java
(original)
+++
incubator/oozie/trunk/core/src/main/java/org/apache/oozie/service/Services.java
Tue Nov 22 07:12:51 2011
@@ -235,7 +235,7 @@ public class Services {
for (Class klass : classes) {
try {
Service service = (Service) klass.newInstance();
- log.debug("Loading service [{}] implementation [{}]",
service.getInterface(),
+ log.debug("Loading service [{0}] implementation [{1}]",
service.getInterface(),
service.getClass());
if (!service.getInterface().isInstance(service)) {
throw new ServiceException(ErrorCode.E0101, klass,
service.getInterface().getName());
@@ -269,7 +269,7 @@ public class Services {
//removing duplicate services, strategy: last one wins
for (Service service : list) {
if (map.containsKey(service.getInterface())) {
- log.debug("Replacing service [{}] implementation [{}]",
service.getInterface(),
+ log.debug("Replacing service [{0}] implementation [{1}]",
service.getInterface(),
service.getClass());
}
map.put(service.getInterface(), service);
Modified: incubator/oozie/trunk/release-log.txt
URL:
http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1204834&r1=1204833&r2=1204834&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Tue Nov 22 07:12:51 2011
@@ -1,5 +1,6 @@
-- Oozie 3.2.0 release
+OOZIE-609 OOZIE-609 Oozie services fail to start with log enabled. (tucu)
OOZIE-607 Pig POM brings in several unneeded dependencies. (tucu)
OOZIE-601 Oozie's POMs should use org.apache.oozie as group. (tucu)
OOZIE-480 In Oozie-site.xml, if we specify oozie.services.ext property is not
overriding the services. (tucu)