null dereference fix.
Change-Id: I98b6226fea3f457fef11c65c092453ffa881b59e
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -484,7 +484,7 @@ public class DeviceManager | ... | @@ -484,7 +484,7 @@ public class DeviceManager |
| 484 | 484 | ||
| 485 | if (requested == null && response == null) { | 485 | if (requested == null && response == null) { |
| 486 | // something was off with DeviceProvider, maybe check channel too? | 486 | // something was off with DeviceProvider, maybe check channel too? |
| 487 | - log.warn("Failed to assert role [{}] onto Device {}", requested, deviceId); | 487 | + log.warn("Failed to assert role onto Device {}", deviceId); |
| 488 | mastershipService.relinquishMastership(deviceId); | 488 | mastershipService.relinquishMastership(deviceId); |
| 489 | return; | 489 | return; |
| 490 | } | 490 | } | ... | ... |
-
Please register or login to post a comment