Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update builder to set old deprecated fields to support volume creation (preserving name and description) for cinder API V1 #1058

Merged
merged 1 commit into from
Jul 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,14 @@ public static class ConcreteVolumeBuilder implements VolumeBuilder {
@Override
public VolumeBuilder name(String name) {
m.name = name;
m.displayName = name;
return this;
}

@Override
public VolumeBuilder description(String description) {
m.description = description;
m.displayDescription = description;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,14 @@ public static class ConcreteVolumeSnapshotBuilder implements VolumeSnapshotBuild
@Override
public VolumeSnapshotBuilder name(String name) {
m.name = name;
m.displayName = name;
return this;
}

@Override
public VolumeSnapshotBuilder description(String description) {
m.description = description;
m.displayDescription = description;
return this;
}

Expand Down