ContributionsMost RecentMost LikesSolutionsRe: swagger ui for react - 'showMutatedRequest' property not working RonRatovsky HKosova any help on this plz? Re: swagger ui for react - 'showMutatedRequest' property not working @ponelat any help here plz swagger ui for react - 'showMutatedRequest' property not working Hi, i am using swagger-ui-react package and invoking swagger UI as below : <SwaggerUI spec={swagger} supportedSubmitMethods = {['get', 'post', 'put', 'delete', 'patch']} showMutatedRequest="false" /> Unfortunately the showMutatedRequest property is not working for me...kindly let me know how to get this working Re: swagger ui time out error ponelat not Docker image, we are importing swagger-ui like this : {% cdn_asset /swagger-ui/2.2.10/swagger-ui.js %} {% cdn_asset /swagger-ui/2.2.10/swagger-ui.css %} Re: swagger ui time out error Hi ponelat , Thanks for quick response, the request is able to reach backend server and our KIBANA logs is able to show the response time also... but since its taking around 20seconds, the TRYOUT option from swagger UI is showing "TIMEOUT" but its working fine from POSTMAN... hence our consumers are worried... let me know how can I increase the TIMEOUT value from my swagger UI code swagger ui time out error Hi Team, We am using swagger UI integrated with our dev portal .. when using the "TRY OUT" option, our consumers are encountering a "REQUEST TIME OUT 504" error ...the same end point works fine in POSTMAN with no time out error... how should i configure the TIMEOUT to be increased to minimum of 60sec atleast. My code goes here: ====================================== window.swaggerUi = new SwaggerUi({ spec: specObj, validatorUrl: null, dom_id: "swagger-ui-container", supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'], ReadTimeout: 120000, ConnectTimeout: 120000, onComplete: function(swaggerApi, swaggerUi) {....................................