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
It seems like the connector is not properly using the HASURA_SERVICE_TOKEN_SECRET env var, since I was able to curl the schema without providing auth token in the headers
Expected:
curl -v -X GET http://localhost:8082/schema
{"message":"Internal error","details":{"cause":"Bearer token does not match."}}
curl -v -X GET http://localhost:8082/schema -H "Authorization: Bearer <HASURA_SERVICE_TOKEN_SECRET>"
<outputs schema>
Current :
curl -v -X GET http://localhost:8082/schema
<outputs schema>
The text was updated successfully, but these errors were encountered:
It seems like the connector is not properly using the
HASURA_SERVICE_TOKEN_SECRET
env var, since I was able to curl the schema without providing auth token in the headersExpected:
Current :
The text was updated successfully, but these errors were encountered: