Skip to content

Commit b22278d

Browse files
committed
Merge pull request #35 from RoboticCheese/roboticcheese/case-ssh-ids-as-string
Fix #34; make key IDs always a String
2 parents c482a02 + 2e54008 commit b22278d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/kitchen/driver/digitalocean.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def create_server
118118
region: config[:region],
119119
image: config[:image],
120120
size: config[:size],
121-
ssh_keys: config[:ssh_key_ids].split(/, ?/),
121+
ssh_keys: config[:ssh_key_ids].to_s.split(/, ?/),
122122
private_networking: config[:private_networking],
123123
ipv6: config[:ipv6]
124124
)

0 commit comments

Comments
 (0)