(
self, feature_service: FeatureService, project: str, commit: bool = True
)
| 900 | conn.execute(update_stmt) |
| 901 | |
| 902 | def apply_feature_service( |
| 903 | self, feature_service: FeatureService, project: str, commit: bool = True |
| 904 | ): |
| 905 | return self._apply_object( |
| 906 | feature_services, |
| 907 | project, |
| 908 | "feature_service_name", |
| 909 | feature_service, |
| 910 | "feature_service_proto", |
| 911 | ) |
| 912 | |
| 913 | def delete_data_source(self, name: str, project: str, commit: bool = True): |
| 914 | with self.write_engine.begin() as conn: |
no test coverage detected