diff --git a/src/controller/java/AndroidDeviceControllerWrapper.cpp b/src/controller/java/AndroidDeviceControllerWrapper.cpp index 012cf341e680fe..8bf806c0b42557 100644 --- a/src/controller/java/AndroidDeviceControllerWrapper.cpp +++ b/src/controller/java/AndroidDeviceControllerWrapper.cpp @@ -123,13 +123,6 @@ AndroidDeviceControllerWrapper * AndroidDeviceControllerWrapper::AllocateNew(Jav return nullptr; } - *errInfoOnFailure = wrapper->Controller()->ServiceEvents(); - - if (*errInfoOnFailure != CHIP_NO_ERROR) - { - return nullptr; - } - return wrapper.release(); } diff --git a/src/controller/python/ChipDeviceController-ScriptBinding.cpp b/src/controller/python/ChipDeviceController-ScriptBinding.cpp index 8e58e19e563bfa..527bd0886d7b09 100644 --- a/src/controller/python/ChipDeviceController-ScriptBinding.cpp +++ b/src/controller/python/ChipDeviceController-ScriptBinding.cpp @@ -165,7 +165,6 @@ CHIP_ERROR pychip_DeviceController_NewDeviceController(chip::Controller::DeviceC (*outDevCtrl)->SetUdpListenPort(CHIP_PORT + 1); ReturnErrorOnFailure((*outDevCtrl)->Init(localDeviceId, initParams)); - ReturnErrorOnFailure((*outDevCtrl)->ServiceEvents()); return CHIP_NO_ERROR; }