Skip to content

Commit a635139

Browse files
committed
fix: Enable faulthandler to get a coredump on segfaults for embedded go fs
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 6b4e8d0 commit a635139

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

sdk/python/feast/embedded_go/online_features_service.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import faulthandler
12
from functools import partial
23
from pathlib import Path
34
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple, Union
@@ -51,6 +52,7 @@ def __init__(
5152
),
5253
self._transformation_callback,
5354
)
55+
faulthandler.enable()
5456

5557
def get_online_features(
5658
self,

0 commit comments

Comments
 (0)