Open
Description
I am from Spinnaker community. We have recently migrated some of our services from retrofit1 to retrofit2. We have hundreds of apis overall.
After migration we are facing challenges with path parameter encoding.
With retrofit1, the path param [foo] b:ar (baz)
used to be encoded to %5Bfoo%5D%20b%3Aar%20%28baz%29
and api has no issues.
But after migrating to retrofit2, the encoded value became [foo]%20b:ar%20(baz)
and api rejects it with 400.
Is there any plan to fix this issue? What is the work around you suggest?