-
Notifications
You must be signed in to change notification settings - Fork 340
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
Add keyword argument skip_schema_validation
to ChargePoint.call()
#315
Labels
Comments
OrangeTux
pushed a commit
that referenced
this issue
Jun 18, 2024
Implements schema validation skipping when running `call`. `skip_schema_validation` is defaulted to `False`, and once set to `True`, will skip schema validation of both request and response. Implements #315.
RoaringDev1203
added a commit
to RoaringDev1203/Cratus-OCPP
that referenced
this issue
Aug 27, 2024
Implements schema validation skipping when running `call`. `skip_schema_validation` is defaulted to `False`, and once set to `True`, will skip schema validation of both request and response. Implements mobilityhouse/ocpp#315.
ajmirsky
pushed a commit
to ajmirsky/ocpp
that referenced
this issue
Nov 26, 2024
Implements schema validation skipping when running `call`. `skip_schema_validation` is defaulted to `False`, and once set to `True`, will skip schema validation of both request and response. Implements mobilityhouse#315.
This issue is stale because it has been open for 30 days with no activity. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Schema validation for incoming requests can be disabled using
@on(skip_schema_validation=True)
. However, for sending requests it can't be disabled.I'm currently working on a fuzzer and deliberately want to send invalid requests.
Therefore, we should ask support for this keyword argument to
ChargePoint.call()
as well.The text was updated successfully, but these errors were encountered: