commit | 387a1cad9d4e536f0d35601ca6230d40cb826e57 | [log] [tgz] |
---|---|---|
author | Shashikanth VH <shashikanth.vh@huawei.com> | Tue Feb 09 20:35:21 2016 +0530 |
committer | Shashikanth VH <shashikanth.vh@huawei.com> | Tue Feb 09 20:35:35 2016 +0530 |
tree | 3f3e31f1e2cb3340450de6e5cef922841549fdb3 | |
parent | fde9c95dfe33cb5b8eb4d8a5f58a11e122762145 [diff] |
null dereference fix. Change-Id: I98b6226fea3f457fef11c65c092453ffa881b59e
diff --git a/core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java b/core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java index 936d859..5f6fb04 100644 --- a/core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java +++ b/core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java
@@ -484,7 +484,7 @@ if (requested == null && response == null) { // something was off with DeviceProvider, maybe check channel too? - log.warn("Failed to assert role [{}] onto Device {}", requested, deviceId); + log.warn("Failed to assert role onto Device {}", deviceId); mastershipService.relinquishMastership(deviceId); return; }