In azure container app, when I save document with URL in id, it automatically saves as attachment with id truncated #5401
Unanswered
kiran312-byte
asked this question in
General
Replies: 2 comments 2 replies
|
A total guess but it sounds like the Azure container ingress is modifying the payload. Have you tried disabling ingress URL decoding (as per https://learn.microsoft.com/en-us/answers/questions/1293667/azure-container-app-ingress-decoding-url)? |
2 replies
|
Any workaround to above issue ? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
image: couchdb:3.4
we are in process of migrating on-prem couchdb to azure container app and noticed that whenever I create document with id (having URL) , it saves it as attachment with the entire url truncated. This happens only on azure container app environment. Any suggestions ?
Example: Create below document in couchdb running on azure container app
{
"_id": "https://jenkins-url.com/apache/couchdb/issues",
"data": {
}
}
It saves as:
{
"_id": "https:",
"_rev": "3-0a75e1166f208cf890521969ca0a5705",
"_attachments": {
"jenkins-url.com/apache/couchdb/issues": {
"content_type": "application/json",
"revpos": 1,
"digest": "md5-x9Q29fDPDRaitZxtKAVNPw==",
"length": 65,
"stub": true
}
}
}
All reactions