Skip to content

Commit

Permalink
fix: Enable faulthandler to get a coredump on segfaults for embedded …
Browse files Browse the repository at this point in the history
…go fs

Signed-off-by: Achal Shah <[email protected]>
  • Loading branch information
achals committed Jun 17, 2022
1 parent 6b4e8d0 commit a635139
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/python/feast/embedded_go/online_features_service.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import faulthandler
from functools import partial
from pathlib import Path
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple, Union
Expand Down Expand Up @@ -51,6 +52,7 @@ def __init__(
),
self._transformation_callback,
)
faulthandler.enable()

def get_online_features(
self,
Expand Down

0 comments on commit a635139

Please sign in to comment.