Ashley Wright
commited on
Commit
•
7d60587
1
Parent(s):
921dd6f
Fix socket path being one too high
Browse files- src/main.py +1 -1
src/main.py
CHANGED
@@ -9,7 +9,7 @@ from pipelines.models import TextToImageRequest
|
|
9 |
|
10 |
from pipeline import load_pipeline, infer
|
11 |
|
12 |
-
SOCKET = abspath(Path(__file__).parent / "inferences.sock")
|
13 |
|
14 |
|
15 |
def main():
|
|
|
9 |
|
10 |
from pipeline import load_pipeline, infer
|
11 |
|
12 |
+
SOCKET = abspath(Path(__file__).parent.parent / "inferences.sock")
|
13 |
|
14 |
|
15 |
def main():
|