I am not sure this is the correct place to ask the question so please redirect me to the right place if this is the wrong place for this question.
When using tests to post data to postman echo at https://postman-echo.com/get , the response coming back has changed over the last few days. In the past it used to be
{
"args": {
"testGetQuery": "test"
},
"headers": {
"x-forwarded-proto": "https",
"x-forwarded-port": "443",
"host": "postman-echo.com",
"accept-encoding": "gzip, deflate",
},
"url": "https://postman-echo.com/get?testGetQuery=test"
}
and now it has changed to
{
"args": {
"testGetQuery": "test"
},
"headers": {
"host": "postman-echo.com",
"x-forwarded-proto": "http",
"x-request-start": "t=1718178185.406",
"connection": "close",
"x-forwarded-port": "443",
"accept-encoding": "gzip, deflate",
},
"url": "http://postman-echo.com/get?testGetQuery=test"
}
notice that the url has changed to http and it looks like my request is passing through some load balancer that uses http to the backend and adds the x-forwarded-proto header as well.
Is this a planned change or a bug? should I adapt my tests to these new responses or if this is a bug wait for it to be fixed?