Not able to update connect_timeout using admin api

Hi everyone. I want to increase the connection timeout using admin API but it is not increasing.
Steps I followed.

kubectl port-forward --namespace kong deployment/ingress-kong 8444:8444 

Then using postman I called the API.
PATCH: https://127.0.0.1:8444/services/0da1acfa-6664-40e9-8bb8-80a2442d5e9f
and JSON body.

{
    "tags": [
        "managed-by-ingress-controller"
    ],
    "ca_certificates": null,
    "enabled": true,
    "connect_timeout": 600000,
    "read_timeout": 600000,
    "path": "/",
    "protocol": "http",
    "host": "mysvc.auth.80.svc",
    "tls_verify": null,
    "created_at": 1650023172,
    "tls_verify_depth": null,
    "retries": 5,
    "name": "auth.mysvc.pnum-80",
    "updated_at": 1650023172,
    "id": "0da1acfa-6664-40e9-8bb8-80a2442d5e9f",
    "port": 80,
    "write_timeout": 600000,
    "client_certificate": null
}

It is giving 200 but again after GET request, I am getting 60000 in all three timeouts.

Apparently you are using ingress-controller to manage your cluster. You should use KongIngress CRD to change timeout on service instead of using admin api.

Here is an example

Thanks for helping @fomm. I am able to increase the timeouts.