Skip to content

Commit

Permalink
Merge pull request #172 from sayalilunkad/virtualip
Browse files Browse the repository at this point in the history
crowbar-client: Fix suggestion parameter (bsc#1069792)
  • Loading branch information
sayalilunkad authored Dec 5, 2017
2 parents 2d49629 + 2c7d7af commit 7509fc7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/crowbar/client/request/host_ip/allocate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def content
name: attrs.node,
network: attrs.network,
range: attrs.range,
suggestion: attrs.suggest
suggestion: attrs.suggestion
)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/crowbar/client/request/virtual_ip/allocate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def content
name: attrs.service,
network: attrs.network,
range: attrs.range,
suggestion: attrs.suggest
suggestion: attrs.suggestion
)
end

Expand Down
2 changes: 1 addition & 1 deletion spec/crowbar/client/request/host_ip/allocate_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
node: "",
network: "",
range: "",
suggest: "",
suggestion: "",
proposal: "default"
}
end
Expand Down
2 changes: 1 addition & 1 deletion spec/crowbar/client/request/virtual_ip/allocate_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
service: "",
network: "",
range: "",
suggest: "",
suggestion: "",
proposal: "default"
}
end
Expand Down

0 comments on commit 7509fc7

Please sign in to comment.