cdalexndr

Results 43 comments of cdalexndr

``` sh-4.4# $JAVA_HOME/bin/java -version openjdk version "15.0.1" 2020-10-20 OpenJDK Runtime Environment AdoptOpenJDK (build 15.0.1+9) OpenJDK 64-Bit Server VM AdoptOpenJDK (build 15.0.1+9, mixed mode, sharing) ``` ``` sh-4.4# ./jvmtop.sh seems to...

Waiting on https://github.com/raphw/byte-buddy/issues/1047

Following https://stackoverflow.com/a/20360269/6937584, I only use `doReturn` syntax. It seems that using `when` syntax has problems with spies. So using `doReturn` should be compatible with all use cases.

This issue needs to be reopened because it still reproduces with v3.12.4 Was fixed in v3.12.0 by 123beb8311ed6303ba71d682cff8434fe36b7f0f, but 1a8946f19cb8c677fe779f8acbda97e284f7d61f reverted the fix. e1f98555ec904e8f8150cb24fa90392393cad9be also removed the test added by...

@raphw why was https://github.com/mockito/mockito/commit/1a8946f19cb8c677fe779f8acbda97e284f7d61f needed? (Note that the type cache was fixed 2h before your commit: https://github.com/mockito/mockito/commit/4f81d4f1de676f845d6ee111eb6285dbdd5935c6)

The issue is not with the documentation access. In the projetct's github home page it says `We primarily use Atlassian JIRA for ticketing`, so you prefer users to submit bugs...

Here's a basic validation code snippet: ``` String html = ... EmbeddedValidator validator = new EmbeddedValidator(); validator.setOutputFormat( EmbeddedValidator.OutputFormat.GNU ); try { String output = validator.validate( new ByteArrayInputStream( html.getBytes( StandardCharsets.UTF_8 )...

@eyalkoren Thanks for the workarounds. Additional use case: when `@Scheduled` takes a long time and records many spans (exceding _transaction_max_spans_) and I want to split it into multiple transactions, instead...

For my use case, only `@IgnoreTransaction` si required, and is easier to implement. When the creation of new transaction is triggered, if the method has this annotation, the transaction will...

As npm states that [TSLint is deprecated and use ESLint instead](https://www.npmjs.com/package/tslint), I assume the migration is complete. Shoudn't this issue be closed?