Skip to content

Commit

Permalink
[202405] Update dbus timeout to 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
ganglyu committed Nov 12, 2024
1 parent 7fe0bcc commit ff1ca30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sonic_service_client/dbus_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand All @@ -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
}

Expand Down

0 comments on commit ff1ca30

Please sign in to comment.