We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the payload below - with the test variable appearing twice - was accepted by the daemon when POST'ing to https://(server)/api/projects/(project)/env
test
POST
https://(server)/api/projects/(project)/env
the daemon only kept the "later" value (of new variable), but I believe that it should have returned an error instead
new variable
{ "envVariables": [ { "name": "another", "value": "test" }, { "name": "test", "value": "" }, { "name": "testt", "value": "" }, { "name": "test", "value": "new variable" } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the payload below - with the
test
variable appearing twice - was accepted by the daemon whenPOST
'ing tohttps://(server)/api/projects/(project)/env
the daemon only kept the "later" value (of
new variable
), but I believe that it should have returned an error insteadThe text was updated successfully, but these errors were encountered: