Skip to content

Commit

Permalink
RDKTV-31638 - [RDKE][XUMO] [FSR]- Network(Wifi) scan Failed (rdkcentr…
Browse files Browse the repository at this point in the history
…al#5484)

* RDKTV-31638 - [RDKE][XUMO] [FSR]- Network(Wifi) scan Failed

Reason for change: Increased the timeout for out of process networkmanager plugin
initialization
Test Procedure: Run curl command to check the functionality of wifi scan
Risks: Low
Priority: P1
Signed-off-by: Gururaaja ESR <[email protected]>
  • Loading branch information
gururaajar authored Jul 2, 2024
1 parent 46b473c commit 85a200c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NetworkManager/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ find_package(WPEFramework)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
set(VERSION_PATCH 8)
set(VERSION_PATCH 9)

add_compile_definitions(NETWORKMANAGER_MAJOR_VERSION=${VERSION_MAJOR})
add_compile_definitions(NETWORKMANAGER_MINOR_VERSION=${VERSION_MINOR})
Expand Down
2 changes: 1 addition & 1 deletion NetworkManager/NetworkManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ namespace WPEFramework
//
// Ideally for large, complex plugins we would actually split the plugin into two libraries - a thin library that just calls
// _service->Root to launch WPEProcess, and a larger library that is only ever run inside WPEProcess only (we do this for Cobalt and WebKitBrowser)
_NetworkManager = service->Root<Exchange::INetworkManager>(_connectionId, 5000, _T("NetworkManagerImplementation"));
_NetworkManager = service->Root<Exchange::INetworkManager>(_connectionId, 25000, _T("NetworkManagerImplementation"));

// Still running inside the main WPEFramework process - the child process will have now been spawned and registered if necessary
if (_NetworkManager != nullptr)
Expand Down
2 changes: 1 addition & 1 deletion docs/api/NetworkManagerPlugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a name="NetworkManager_Plugin"></a>
# NetworkManager Plugin

**Version: [0.2.8]()**
**Version: [0.2.9]()**

A NetworkManager plugin for Thunder framework.

Expand Down

0 comments on commit 85a200c

Please sign in to comment.