Vasily Geyer
Vasily Geyer
Is it possible to configure rate-limit based on a custom claim inside JWT token? If not then is it possible to implement this behavior by writing custom plugin in go-lang?
```csharp builder.UseGlobalExceptionHandler( x => { x.ContentType = "application/json"; x.ResponseBody(s => JsonConvert.SerializeObject(new { Message = "An error occurred whilst processing your request" })); x.Map().ToStatusCode(HttpStatusCode.NotFound); }); ``` Having this configuration and throwing...
We are getting `error starting chrome process: open /dev/null: too many open files` error from time to time and the process crashes. Any idea what could be the cause?
I only get those headers set but jwt token has more, e.g. `client_id` or our custom claim `account_code` I think it has something to do with `_` symbol ``` X-Kong-JWT-Claim-iss:...
Having a line item of 89.90 and add one line item allowance of 50% and global allowance of 50%, the not valid xml will be generated. 50 percent of 89.90...
having allowance and charge for the same line item, generates invalid xml ``` false 0.8000 WAT Reason 10 true 0.6000 WAT Reason 150 ``` 
Hello team, i'm setting allowances and charges for each line item ``` lineItem.addCharge(new Charge() .setPercent(surcharge.getPercent()) .setTotalAmount(surcharge.getTotalAmount()) .setTaxPercent(lineItem.getProduct().getVATPercent()) .setReasonCode("ZZZ") .setCategoryCode(TaxCategoryCodeTypeConstants.STANDARDRATE) .setReason(surcharge.getReason())); ``` When i take xml result and validate online, i...