-
-
Notifications
You must be signed in to change notification settings - Fork 206
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
Cannot use image "slugs" when creating servers #43
Comments
What version are you using? |
Latest stable tag. On October 21, 2014 at 3:51:37 PM, Hannoun Yassir (notifications@github.com) wrote: What version are you using? — |
Can you try the newest release? |
Now I have even bigger problems. Neither works: |
I had to fork this library and hack in some changes because it is way too brittle against API changes in the way it is throwing exceptions even if DigitalOcean simply adds a new property. Had broken Laravel Forge entirely. |
@taylorotwell Are you using the Laravel wrapper? |
That doesn't make much difference. All my wrapper does is instantiate the classes, nothing more. |
No I'm not. Plain library. On Saturday, October 25, 2014, Graham Campbell notifications@github.com
|
@GrahamCampbell can you reproduce this error? here is the code i'm using to test : $adapter = new GuzzleAdapter('MY TOKEN');
$digitalOcean = new DigitalOceanV2($adapter);
$droplet = $digitalOcean->droplet();
try {
echo "<pre>";
var_dump($droplet->create("test", "nyc1", "512mb", "ubuntu-14-04-x64"));
echo "</pre>";
} catch (Exception $e) {
die($e->getMessage());
} |
I don't have any time right now, but I can have a go tomorrow or the day after. Ping me in 48 hours if I forget. |
@taylorotwell are you still getting this error with the latest version 0.2 or the master branch? |
It’s fixed. On Mon, Oct 27, 2014 at 2:34 PM, Hannoun Yassir notifications@github.com
|
I've been trying this for several days off and on and can't get this to work. Passing
ubuntu-14-04-x64
in the "image id" field will not work. I get invalid image errors. Using the BuzzAdapter.The text was updated successfully, but these errors were encountered: