We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d68cf commit 7025457Copy full SHA for 7025457
src/firebase_functions/private/serving.py
@@ -20,6 +20,7 @@
20
import enum
21
import yaml
22
import importlib
23
+import sys
24
from os import kill, getpid
25
from signal import SIGTERM
26
@@ -32,6 +33,7 @@
32
33
34
35
def get_functions():
36
+ sys.path.insert(0, os.getcwd())
37
spec = importlib.util.spec_from_file_location("main", "main.py")
38
if spec is not None and spec.loader is not None:
39
module = importlib.util.module_from_spec(spec)
0 commit comments