pepe

Results 6 comments of pepe

` private static final Verification verifier = JWT.require(Algorithm.RSA256(getPublicKey("/keys/public.pem"), null)); ` ` public DecodedJWT verifyToken(String token){ return verifier.build().verify(token); } ` Maybe I should finalize builder of Verifier in first line to...

@jimmyjames Yes, i've updated to 4.0.0 and change my code to build Verifier only once and no more errors spotted ;)

Hey, I have a very similar problem during recording data by DistributionSummary and publishing using ElasticMeterRegistry with 1min step. So while fixing StepCounter, please take a look at StepDistributionSummary too....

Hey, Thanks for fix. It is better but not ideal. In context of AWS Lambda, metrics still are not published on Lambda invocation shutdown. But with this version I'd successfully...

I've changed/extended my code a little for better understanding. MicrometerElasticRegistry class: ``` public class MicrometerElasticRegistry extends ElasticMeterRegistry { public MicrometerElasticRegistry() { super(ElasticConfig.DEFAULT, Clock.SYSTEM); } public void forcePublish() { super.publish(); }...