()
| 766 | initial_response_dict: Optional[Dict[str, List[Any]]] = None |
| 767 | |
| 768 | def _is_metrics_active(): |
| 769 | try: |
| 770 | from feast.metrics import _config |
| 771 | |
| 772 | return _config.online_features |
| 773 | except Exception: |
| 774 | return False |
| 775 | |
| 776 | _metrics_active = _is_metrics_active() |
| 777 |
no outgoing calls
no test coverage detected