Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RejectInvalidMessage not honoured for FIXT messages #520

Closed
sylr opened this issue Oct 28, 2022 · 1 comment
Closed

RejectInvalidMessage not honoured for FIXT messages #520

sylr opened this issue Oct 28, 2022 · 1 comment

Comments

@sylr
Copy link
Contributor

sylr commented Oct 28, 2022

Any reason why RejectInvalidMessage is not honoured for FIXT messages ?

quickfix/validation.go

Lines 96 to 104 in 7945e4b

if settings.RejectInvalidMessage {
if err := validateFields(d, d, msgType, msg); err != nil {
return err
}
if err := validateWalk(d, d, msgType, msg); err != nil {
return err
}
}
vs

quickfix/validation.go

Lines 124 to 130 in 7945e4b

if err := validateWalk(transportDD, appDD, msgType, msg); err != nil {
return err
}
if err := validateFields(transportDD, appDD, msgType, msg); err != nil {
return err
}

@sylr
Copy link
Contributor Author

sylr commented Aug 8, 2023

Closed by #572.

@sylr sylr closed this as completed Aug 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant