Password as variable not saveable

If I try to save the password as an environment variable (with the double curly brackets) it is not shown as a variable, but as a string.

Yet, if I do a request, something strange happens. I get a 401 response, then in a blink of a second, I get a 200 response.
See images.
It looks like, it is trying to do the request without the parent auth, and then when it gets a 401, it uses the correct auth from parent, delivering a correct response?
If I do the request second time, it works immediatelly and I receive a 200 response. If I leave the editor open for a while (I guess the auth expires), the behaviour is repeatable (first 401 and then 200 response)
image_480.png


First, make sure that the environment in which you send the request contains the set variable “VaultPassword”. Secondly, you can check the actual requests of the two requests before and after, check whether the variable is correctly replaced, and compare whether there are any differences.


on the screenshot you can see that in the parent request, the password variable is not parsed…but when we send the request,which should inherit the password,we receive a 401 response,then after a few miliseconds the right 200 response. that is strange

I will check the actual request,but first on Monday. Will come back to you