Skip to content

Commit 039a61b

Browse files
author
game-workstore-bot
committed
Updated README.md
1 parent 7294242 commit 039a61b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,29 @@ on upmsync.yaml, the job 'upload_aws' illustrates a possible way to upload your
3737
Requires a service account to enable it to upload.
3838
> You need to set the template 'cloudformation_function.yaml' public in your bucket repository to enable AWS::Stack to read from it.
3939
40+
# Implementation
41+
42+
## GCP Troubleshoot
43+
44+
> My function is returning ErrorProtocol for any input.
45+
if you don't give access public for your function it might fail
46+
47+
## AWS Troubleshoot
48+
> CloudFormation is returning errors
49+
50+
Verify all variables, !Ref and links, you might be forgetting something. CloudFormations is very sensitive to linkage errors.
51+
52+
> My lambda is returning error 500 Internal Server error.
53+
If you are receiving this and error object is returning null, it might be a bad configuration causing your lambda to not run.
54+
Verify if you function is running by adding a fmt.Println("test") at main() function to ensure the function is starting.
55+
Some issues that may prevent the start of function:
56+
- The functions ins't at correct path when extracted from the zip.
57+
- The function package name isn't main where main() function is declared.
58+
- lambda.Start() is never begin called to initialize the function.
59+
- The function is crashing upon initialization
60+
61+
If the function is working normally, them you might receive error 500 - ErrorInternalServer with AWSError, when specified by the programmer.
62+
4063
# Contributions
4164

4265
If you are using this library and want to submit a change, go ahead! Overall, this project accepts contributions if:

0 commit comments

Comments
 (0)