Skip to content

Commit 4ff1975

Browse files
committed
alignInfo parameter is not needed (false is its default value)
Older versions of MT-Monkey workers (e.g. the Bulgarian one) acceppt only string values and fail on Boolean. Dutch implementation of MT-Monkey worker accepts only Boolean and fails on string. So it is safer to not use Booleans parameters.
1 parent cf40e46 commit 4ff1975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmdline-client/Query.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sub call {
2323
sourceLang => $self->sourceLang,
2424
targetLang => $self->targetLang,
2525
text => $text,
26-
alignmentInfo => JSON::false,
26+
#alignmentInfo => JSON::false,
2727
systemId => $self->systemId,
2828
};
2929

0 commit comments

Comments
 (0)