Repository: brooklyn-server
Updated Branches:
  refs/heads/master 8d382ab37 -> f85674e55


Fix config key names in BlockingEntity (in tests)


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/e00a9db6
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/e00a9db6
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/e00a9db6

Branch: refs/heads/master
Commit: e00a9db64a096708758397cdd2d1ea57d2359606
Parents: 8d382ab
Author: Aled Sage <aled.s...@gmail.com>
Authored: Fri Feb 2 09:03:05 2018 +0000
Committer: Aled Sage <aled.s...@gmail.com>
Committed: Fri Feb 2 09:03:05 2018 +0000

----------------------------------------------------------------------
 .../org/apache/brooklyn/core/test/entity/BlockingEntity.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/e00a9db6/core/src/test/java/org/apache/brooklyn/core/test/entity/BlockingEntity.java
----------------------------------------------------------------------
diff --git 
a/core/src/test/java/org/apache/brooklyn/core/test/entity/BlockingEntity.java 
b/core/src/test/java/org/apache/brooklyn/core/test/entity/BlockingEntity.java
index dcf3e5c..855bdb5 100644
--- 
a/core/src/test/java/org/apache/brooklyn/core/test/entity/BlockingEntity.java
+++ 
b/core/src/test/java/org/apache/brooklyn/core/test/entity/BlockingEntity.java
@@ -44,7 +44,7 @@ public interface BlockingEntity extends TestEntity {
     @SetFromFlag("executingShutdownNotificationLatch")
     public static final ConfigKey<CountDownLatch> 
EXECUTING_SHUTDOWN_NOTIFICATION_LATCH = new 
BasicConfigKey<CountDownLatch>(CountDownLatch.class, 
"test.executingShutdownNotificationLatch", "");
     
-    public static final ConfigKey<Duration> STARTUP_DELAY = new 
BasicConfigKey<Duration>(Duration.class, "startupLatch", "Delay before 
starting");
+    public static final ConfigKey<Duration> STARTUP_DELAY = new 
BasicConfigKey<Duration>(Duration.class, "startupDelay", "Delay before 
starting");
     
-    public static final ConfigKey<Duration> SHUTDOWN_DELAY = new 
BasicConfigKey<Duration>(Duration.class, "startupLatch", "Delay before 
stopping");
+    public static final ConfigKey<Duration> SHUTDOWN_DELAY = new 
BasicConfigKey<Duration>(Duration.class, "shutdownDelay", "Delay before 
stopping");
 }

Reply via email to