I am trying to deploy a Google Cloud HTTP function, using this line in zsh shell (Arch Linux):
gcloud functions deploy testing --runtime python38 --trigger-http --allow-unauthenticated
when the function is only [main.py]:
def testing(request):
print("yes")
return 'finished', 200
and this is the error it is giving:
ERROR:
error fetching storage source: generic::unknown: retry budget exhausted (3 attempts): fetching gcs source: unpacking source from gcs: source fetch container exited with non-zero status: 1
However, the funny thing is, that the other google cloud functions that I have (some are HTTP-trigger and some are Cloud Storage-trigger) deploy fine. The only thing I think may be the issue is a cloud function amount limit (?? maybe??)
Help me please