-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
I'm trying to provide a basic example of SQS integration with my custom native runtime, but I'm stuck on the following error Cannot create an instance of com.amazonaws.auth.AWS4Signer
.
Repro:
- Install leiningen & run
wget https://raw.githubusercontent.com/FieryCod/holy-lambda/master/resources/fnative && chmod +x fnative && sudo mv fnative /usr/local/bin
git clone git@github.com:FieryCod/holy-lambda.git
cd examples/sqs-example
make install-holy-lambda compile native-compile native-sqs-invoke
The result is the error message:
{
"errorType": "java.lang.IllegalStateException",
"errorMessage": "Cannot create an instance of com.amazonaws.auth.AWS4Signer"
}
Spent almost 4 hours trying to somehow make it work. Would highly appreciate any help and hints.