Skip to content

Commit 1845d02

Browse files
author
Rakesh Venkatesh
committed
fix travis failures
1 parent 5304e1c commit 1845d02

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

api/src/main/java/org/apache/cloudstack/api/command/user/project/DeleteProjectCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class DeleteProjectCmd extends BaseAsyncCmd {
4848
@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = ProjectResponse.class, required = true, description = "id of the project to be deleted")
4949
private Long id;
5050

51-
@Parameter(name = ApiConstants.CLEANUP, type = CommandType.BOOLEAN, description = "true if all project resources have to be cleaned up, false otherwise")
51+
@Parameter(name = ApiConstants.CLEANUP, type = CommandType.BOOLEAN, since = "4.16.0", description = "true if all project resources have to be cleaned up, false otherwise")
5252
private Boolean cleanup;
5353

5454
/////////////////////////////////////////////////////

tools/marvin/marvin/lib/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4100,6 +4100,7 @@ def delete(self, apiclient):
41004100

41014101
cmd = deleteProject.deleteProjectCmd()
41024102
cmd.id = self.id
4103+
cmd.cleanup = True
41034104
apiclient.deleteProject(cmd)
41044105

41054106
def update(self, apiclient, **kwargs):

0 commit comments

Comments
 (0)