Skip to content
Snippets Groups Projects
Commit 49e04f90 authored by Yan Sushchynski (EPAM)'s avatar Yan Sushchynski (EPAM)
Browse files

Merge branch 'fix_xuserid_optional_for_GC' into 'master'

Make xuserid header optional for GC in the default policies.

See merge request !566
parents 90c101f0 5e4c9e3e
No related branches found
No related tags found
1 merge request!566Make xuserid header optional for GC in the default policies.
Pipeline #312142 failed
......@@ -6,7 +6,7 @@ headers = {
"Content-Type": "application/json",
"data-partition-id":input.datapartitionid,
"Authorization": sprintf("Bearer %v", [input.token]),
"x-user-id": input.xuserid,
"x-user-id": object.get(input, "xuserid", null),
"Accept": "application/json"
}
......
......@@ -6,7 +6,7 @@ headers = {
"content-type": "application/json",
"data-partition-id":input.datapartitionid,
"authorization": sprintf("Bearer %v", [input.token]),
"x-user-id": input.xuserid,
"x-user-id": object.get(input, "xuserid", null),
"accept": "application/json"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment