From 513e7e3a9736210674f89ab07b1e4c974833c115 Mon Sep 17 00:00:00 2001 From: "fiodar.rekish" Date: Fri, 10 Feb 2023 15:43:18 +0400 Subject: [PATCH] readme fix --- README.md | 20 +++++++++++++++++--- build.gradle | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b621b90..9c7220c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ This microservice allows sending and receiving messages via FIX protocol + *sessions* - list of session settings + *maxBatchSize* - max size of outgoing message batch (`1000` by default) + *maxFlushTime* - max message batch flush time (`1000` by default) -+ *batchByGroup* - batch messages by group instead of session alias and direction (`true` by default) + *publishSentEvents* - enables/disables publish of "message sent" events (`true` by default) + *publishConnectEvents* - enables/disables publish of "connect/disconnect" events (`true` by default) @@ -226,7 +225,6 @@ spec: custom-config: maxBatchSize: 1000 maxFlushTime: 1000 - batchByGroup: false publishSentEvents: true publishConnectEvents: true sessions: @@ -284,12 +282,28 @@ spec: settings: storageOnDemand: false queueLength: 1000 - - name: outgoing + - name: incoming_messages connection-type: mq attributes: - publish - store - raw + filters: + - metadata: + - field-name: direction + expected-value: FIRST + operation: EQUAL + - name: outgoing_messages + connection-type: mq + attributes: + - publish + - store + - raw + filters: + - metadata: + - field-name: direction + expected-value: SECOND + operation: EQUAL extended-settings: externalBox: enabled: false diff --git a/build.gradle b/build.gradle index ff5d94f..b88c8a4 100644 --- a/build.gradle +++ b/build.gradle @@ -50,7 +50,7 @@ dependencies { implementation 'com.exactpro.th2:netty-bytebuf-utils:0.0.1' implementation ('com.exactpro.th2:conn-dirty-tcp-core:2.0.5') { exclude group: 'org.slf4j', module: 'slf4j-log4j12' - because 'Projects should use only slf4j-api, without coupling to a sertain implementation' + because 'Projects should use only slf4j-api, without coupling to a certain implementation' } implementation 'org.slf4j:slf4j-api'