Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nifi/user_python_extensions/record_add_geolocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def process(self, context: ProcessContext, flowFile: JavaObject) -> FlowFileTran
try:
record[self.geolocation_field_name] = f"{float(_lat)},{float(_long)}"
except ValueError:
self.logger.debug(f"invalid lat/long values for postcode {_postcode}: {_lat}, {_long}")
self.logger.debug("invalid lat/long values encountered for a record; geolocation not set")
error_records.append(record)


Expand Down
Loading