Skip to content

Commit 5b37484

Browse files
committed
Fix formatting verb for sandbox ID %d -> %q
PiperOrigin-RevId: 888695467
1 parent b7386e3 commit 5b37484

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runsc/sandbox/sandbox.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ func (s *Sandbox) WaitFSCheckpoint() error {
14511451
// WaitFSRestore waits for filesystems to have been successfully restored from
14521452
// checkpoint.
14531453
func (s *Sandbox) WaitFSRestore(cid string) error {
1454-
log.Debugf("Waiting for filesystem restore to complete in container %q in sandbox %d", cid, s.ID)
1454+
log.Debugf("Waiting for filesystem restore to complete in container %q in sandbox %q", cid, s.ID)
14551455
args := boot.WaitFSRestoreArgs{
14561456
CID: cid,
14571457
}

0 commit comments

Comments
 (0)