You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we are currently relying on a decorator that decorates the _on_actionChargePoint handlers.
At the level of those handlers we do not have access to the message.unique_id which is a logging requirement, for that we decided to use ChargePoint._handle_call method.
By doing so we lost access to the response which is also a required field for the logging.
To resolve this, we want to make ChargePoint._handle_call has the response as return value.
In our app we are logging the OCPP call results:
_on_action
ChargePoint
handlers.message.unique_id
which is a logging requirement, for that we decided to useChargePoint._handle_call
method.ChargePoint._handle_call
has the response as return value.So basically the following:
The text was updated successfully, but these errors were encountered: