diff --git a/sonic_service_client/dbus_client.go b/sonic_service_client/dbus_client.go index e376e17f..7d5d3a9f 100644 --- a/sonic_service_client/dbus_client.go +++ b/sonic_service_client/dbus_client.go @@ -116,7 +116,7 @@ func (c *DbusClient) ApplyPatchYang(patch string) error { busName := c.busNamePrefix + modName busPath := c.busPathPrefix + modName intName := c.intNamePrefix + modName + ".apply_patch_yang" - err := DbusApi(busName, busPath, intName, 240, patch) + err := DbusApi(busName, busPath, intName, 600, patch) return err } @@ -126,7 +126,7 @@ func (c *DbusClient) ApplyPatchDb(patch string) error { busName := c.busNamePrefix + modName busPath := c.busPathPrefix + modName intName := c.intNamePrefix + modName + ".apply_patch_db" - err := DbusApi(busName, busPath, intName, 240, patch) + err := DbusApi(busName, busPath, intName, 600, patch) return err }