Andrey Beletsky
Andrey Beletsky
I use ``` AmazonS3ClientBuilder.standard() .withClientConfiguration(clientConfiguration()) .build(); ``` to build AmazonS3 where ``` private ClientConfiguration clientConfiguration() { ConnectionPool connectionPool = awsProperties.getS3().getConnectionPool(); return PredefinedClientConfigurations.defaultConfig() .withMaxConnections(connectionPool.getMaxConnections()) .withConnectionTTL(connectionPool.getConnectionTtl()); } ``` ## Describe the bug...
**Versions:** NPM - 8.19.2 **Run command:** ``` npx create-react-app web --template cra-template-must-have-libraries ``` **Error log:** ``` Installing template dependencies using npm... npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to...
**Encryption** Current version ``` options = { ... privateKeys: openpgp.readArmoredKey(privkey).keys, // for signing (optional) ... }; ``` but should be ``` options = { ... privateKeys: openpgp.readArmoredKey(privkey).keys .map(key => openpgp.decryptKey({...
### Integration sentry-spring-boot ### Java Version 8 ### Version 7.9.0 ### Steps to Reproduce By default Sentry has NoOpTransportFactory set, but it is overridden to AsyncHttpTransportFactory inside SentryClient. ### Expected...