Skip to content

Commit

Permalink
Merge pull request vmware-tanzu#5294 from cleverhu/change-CSISnapshot…
Browse files Browse the repository at this point in the history
…Timeout-to-normal-var

change CSISnapshotTimeout from pointer to normal variable
  • Loading branch information
reasonerjt authored Oct 19, 2022
2 parents 4d85b78 + 067a3ec commit fc03804
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelogs/unreleased/5294-cleverhu
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
change CSISnapshotTimeout from pointer to normal variables.
2 changes: 1 addition & 1 deletion pkg/cmd/util/output/backup_describer.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func DescribeBackupSpec(d *Describer, spec velerov1api.BackupSpec) {
d.Printf("TTL:\t%s\n", spec.TTL.Duration)

d.Println()
d.Printf("CSISnapshotTimeout:\t%s\n", &spec.CSISnapshotTimeout.Duration)
d.Printf("CSISnapshotTimeout:\t%s\n", spec.CSISnapshotTimeout.Duration)

d.Println()
if len(spec.Hooks.Resources) == 0 {
Expand Down

0 comments on commit fc03804

Please sign in to comment.