PLDM:Use new alias of DBUS_TIMEOUT for bus.call
This commit uses a new global variable for DBUS_TIMEOUT which is included as an input parameter for bus.call dbus calls. The new alias makes the bus.call function shorter and readable.
Change-Id: I336c97bc0631d5370ff3648e41f50e3e283d771b
Signed-off-by: vkaverap@in.ibm.com <vkaverap@in.ibm.com>
diff --git a/oem/ibm/libpldmresponder/inband_code_update.cpp b/oem/ibm/libpldmresponder/inband_code_update.cpp
index b74e101..e4fed04 100644
--- a/oem/ibm/libpldmresponder/inband_code_update.cpp
+++ b/oem/ibm/libpldmresponder/inband_code_update.cpp
@@ -170,9 +170,7 @@
method.append("xyz.openbmc_project.Association", "endpoints");
std::variant<std::vector<std::string>> paths;
- auto reply = bus.call(
- method,
- std::chrono::duration_cast<microsec>(sec(DBUS_TIMEOUT)).count());
+ auto reply = bus.call(method, dbusTimeout);
reply.read(paths);
runningVersion = std::get<std::vector<std::string>>(paths)[0];
@@ -181,9 +179,7 @@
propIntf, "Get");
method1.append("xyz.openbmc_project.Association", "endpoints");
- auto reply1 = bus.call(
- method1,
- std::chrono::duration_cast<microsec>(sec(DBUS_TIMEOUT)).count());
+ auto reply1 = bus.call(method1, dbusTimeout);
reply1.read(paths);
for (const auto& path : std::get<std::vector<std::string>>(paths))
{