Vasily Geyer

Results 17 comments of Vasily Geyer

would be great to have PR to get it fixed for everyone

we have the same issue which causes athenapdf to terminate ``` 2018/07/06 08:34:05 worker=2 queue=0 fetcher= converter= uploader= 2018/07/06 11:32:42 worker=5 queue=0 fetcher= converter= uploader= 2018/07/06 11:32:57 Unable to contact...

we also encountered the same problem. The main reason for us to use s3 plugin was to reduce costs for storing huge log files. We use fluentd+s3 next to regular...

we also need this. We have like 200 different endpoints and we add new, doing it manually seems to be a hustle

@JosephWoodward found it, i didn't configure this ``` x.ContentType = "application/json"; x.ResponseBody(s => JsonConvert.SerializeObject(new { Message = "An error occurred whilst processing your request" })); ``` After adding this part,...

@JosephWoodward right :) mb i copied wrong code. Sorry for that

we also need this since there is no other good way to get security alerts

``` var lineItems = new ArrayList(); var lineItem = new Item(new Product(item.getDescription(), "", "C62", new BigDecimal(item.getVat())), item.getUnitPrice(), item.getQuantity() ); lineItem.addAllowance(new Allowance() .setPercent(allowance.getPercent()) .setTotalAmount(allowance.getTotalAmount()) .setTaxPercent(lineItem.getProduct().getVATPercent()) .setReasonCode("95") .setCategoryCode(TaxCategoryCodeTypeConstants.STANDARDRATE) .setReason(allowance.getReason())); Invoice i =...

@FrankHossfeld but that way you set allowance on the invoice level, meaning it's global allowance not related to any line item. What i'm doing is setting allowance for specific line...

@FrankHossfeld did you have the same error before? can you explain how you fixed it?