diff --git a/sonic_service_client/dbus_client.go b/sonic_service_client/dbus_client.go index 51777099..d54dda13 100644 --- a/sonic_service_client/dbus_client.go +++ b/sonic_service_client/dbus_client.go @@ -125,7 +125,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 } @@ -135,7 +135,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 }