Skip to content

Commit

Permalink
Fix output rendering (#353)
Browse files Browse the repository at this point in the history
* Fix output rendering

* Fix output arts

* Update output arts with bool value
  • Loading branch information
DeepikaDixit authored and mergify[bot] committed Oct 11, 2019
1 parent eb3762d commit b33a7ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/function/describe_backups.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func describeBackupsPodFunc(cli kubernetes.Interface, tp param.TemplateParams, n
DescribeBackupsFileCount: nil,
DescribeBackupsSize: nil,
DescribeBackupsPasswordIncorrect: "true",
DescribeBackupsRepoDoesNotExist: nil,
DescribeBackupsRepoDoesNotExist: "false",
},
nil

Expand All @@ -105,8 +105,8 @@ func describeBackupsPodFunc(cli kubernetes.Interface, tp param.TemplateParams, n
DescribeBackupsSnapshotIDs: nil,
DescribeBackupsFileCount: nil,
DescribeBackupsSize: nil,
DescribeBackupsPasswordIncorrect: nil,
DescribeBackupsRepoDoesNotExist: "false",
DescribeBackupsPasswordIncorrect: "false",
DescribeBackupsRepoDoesNotExist: "true",
},
nil
default:
Expand Down

0 comments on commit b33a7ae

Please sign in to comment.