Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/rtss-server into test
This commit is contained in:
commit
06e8e2d5ac
@ -168,7 +168,7 @@ public class ScriptExecuteService {
|
||||
if (!passGeneralCheck(simulation, script, member, ScriptActionBO.ActionType.Conversation)) {
|
||||
return;
|
||||
}
|
||||
if (StrUtils.isMatch(action.getContent(), message.getContent(), 60)) {
|
||||
if (StrUtils.isMatch(action.getContent(), message.getContent(), 20)) {
|
||||
message.setContent(action.getContent());
|
||||
}
|
||||
}
|
||||
@ -180,7 +180,7 @@ public class ScriptExecuteService {
|
||||
return;
|
||||
}
|
||||
ScriptActionBO action = script.getNextNeedPassAction();
|
||||
if (!StrUtils.isMatch(action.getContent(), message.getContent(), 60)) {
|
||||
if (!StrUtils.isMatch(action.getContent(), message.getContent(), 20)) {
|
||||
applicationContext.publishEvent(new SimulationScriptActionErrorEvent(this, simulation, action));
|
||||
if (Objects.equals(script.getMode(), ScriptBO.Mode.TEST_MODE)) {
|
||||
for (ConversationMember conversationMember : conversation.getMemberList()) {
|
||||
|
Loading…
Reference in New Issue
Block a user