Closed cmwylie19 closed 3 years ago
This command did not seem to be working on a mac:
./grpcurl -plaintext -H "Authorization: Bearer ${token}" -authority dev.petstore.com 172.18.1.2:80 test.solo.io.PetStore/ListPets
so i changed the 172.18.1.2:80 to $(glooctl proxy url | cut -c 8-) and it worked.
172.18.1.2:80
$(glooctl proxy url | cut -c 8-)
Just spoke with Baptiste and he said this is not a problem in the workshop itself. Going to close this PR.
@cmwylie19 I think it would be better to use a delimiter in the cut.
Something like cut -c: -f1
cut -c: -f1
This command did not seem to be working on a mac:
so i changed the
172.18.1.2:80
to$(glooctl proxy url | cut -c 8-)
and it worked.