You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going through the Quickstart tutorial, and noticed the last section of the tutorial "Executing plugins" continually produced 404 errors. The instructions from Quickstart are:
export ENV_TOKEN=<your previously generated token>
curl http://local.suborbital.network:8080/com.suborbital.acmeco/default/hello/v1.0.0 \
--header "Authorization: Bearer $ENV_TOKEN" \
-d 'my friend'
404 page not found
After a little investigation of se2-node exec.ts file, I found a different URL structure which works:
The current quickstart appears to be ${execUri}/${tenant}/${namespace}/${name}/${version}
But what works appears to be ${execUri}/name/${tenant}/${namespace}/${name}
The text was updated successfully, but these errors were encountered:
I was going through the Quickstart tutorial, and noticed the last section of the tutorial "Executing plugins" continually produced 404 errors. The instructions from Quickstart are:
After a little investigation of se2-node exec.ts file, I found a different URL structure which works:
The current quickstart appears to be
${execUri}/${tenant}/${namespace}/${name}/${version}
But what works appears to be
${execUri}/name/${tenant}/${namespace}/${name}
The text was updated successfully, but these errors were encountered: