(record)
| 65 | |
| 66 | |
| 67 | def get_host_field_dict(record): |
| 68 | return next(( |
| 69 | f.value for f in record.custom |
| 70 | if isinstance(f.value, dict) and 'hostName' in f.value and 'port' in f.value |
| 71 | ), None) |
| 72 | |
| 73 | |
| 74 | def detect_plugin(record, plugin_kwargs): |
no outgoing calls
no test coverage detected