Skip to content

Commit

Permalink
update core version
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Plotnikov committed Oct 11, 2023
1 parent 6e2e7ac commit f255967
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
id 'com.palantir.docker' version '0.25.0'
id "org.owasp.dependencycheck" version "8.2.1"
id "com.gorylenko.gradle-git-properties" version "2.4.1"
Expand Down Expand Up @@ -38,17 +38,18 @@ repositories {
}

dependencies {
api platform('com.exactpro.th2:bom:4.4.0')
api platform('com.exactpro.th2:bom:4.5.0')

implementation("com.exactpro.th2:common:5.3.0-separate-executor+") {
exclude group: 'com.exactpro.th2', module: 'task-utils'
implementation("com.exactpro.th2:common:5.4.0-dev") {
exclude group: 'com.exactpro.th2', module: 'cradle-core'
exclude group: 'com.exactpro.th2', module: 'cradle-cassandra'
}
implementation "com.exactpro.th2:common-utils:2.1.0-TH2-5001+"
implementation group: 'com.exactpro.th2', name: 'common-utils', version: '2.2.1-dev'

implementation 'com.exactpro.th2:netty-bytebuf-utils:0.0.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2'

implementation 'com.exactpro.th2:conn-dirty-tcp-core:3.1.0-TH2-5001+'
implementation 'com.exactpro.th2:conn-dirty-tcp-core:3.2.1-TH2-5001+'
implementation 'com.exactpro.th2:grpc-lw-data-provider:2.0.0-dev-version-2+'

implementation 'org.slf4j:slf4j-api'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/exactpro/th2/FixHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ private Map<String, String> transformProcessor(
ByteBuf message,
Map<String, String> metadata
) {
long timeToBlock = strategy.getConfig().getDuration().toMillis();
long timeToBlock = strategy.getConfig().getDuration().toMillis() + 3000;
long startTime = System.currentTimeMillis();
while (System.currentTimeMillis() - startTime <= timeToBlock) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ data class RuleConfiguration(
RuleType.SPLIT_SEND -> {
require(splitSendConfiguration != null) { "`splitSendConfiguration` is required for $ruleType" }
}
else -> {}
}
}

Expand Down

0 comments on commit f255967

Please sign in to comment.