Support the ongoing development of Laravel.io →
posted 8 years ago
Requests
Last updated 1 year ago.
0

Post some code

0

Hey,

I had the same problem with the SQS config for Laravel's queues and it turns out the way the credentials are passed has changed. The Laravel suggested way is:

$config => [ ... 'key' => 'XXXXXXX', 'secret' => 'XXXXXXXX', ... ];

And the way it works now is:

$config => [ ... 'credentials' => [ 'key' => 'XXXXXXX', 'secret' => 'XXXXXXXX', ], ... ],

Cheers, Mike

Last updated 8 years ago.
0

Thanks @mikechernev, that helped me...

0

Sign in to participate in this thread!

Eventy

Your banner here too?

akinsayo akinsayo Joined 28 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.