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)? |
Beta Was this translation helpful? Give feedback.
2 replies
-
Any workaround to above issue ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions