lordgamez commented on code in PR #2050:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2050#discussion_r2442401507
##########
extensions/python/pythonprocessors/nifiapi/properties.py:
##########
@@ -262,12 +261,17 @@ def asDataSize(self, data_unit: DataUnit) -> float:
return 0
def evaluateAttributeExpressions(self, flow_file: FlowFile = None):
- if flow_file is None or not self.el_supported:
Review Comment:
There are use cases where no flow file is provided but we still want to
evaluate the expression language expression (like using a `date()` function).
Previously that was done in the first `getProperty` call, but now we do not do
any evaluation as we only call the `getRawProperty`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]