Spaces:
Build error
Build error
serving: switching to h2c
Browse files
backend/functions/src/stand-alone/crawl.ts
CHANGED
|
@@ -165,4 +165,4 @@ const instance = container.resolve(CrawlStandAloneServer);
|
|
| 165 |
|
| 166 |
export default instance;
|
| 167 |
|
| 168 |
-
instance.serviceReady().then((s) => s.listen(parseInt(process.env.PORT || '') || 3000));
|
|
|
|
| 165 |
|
| 166 |
export default instance;
|
| 167 |
|
| 168 |
+
instance.serviceReady().then((s) => s.h2c().listen(parseInt(process.env.PORT || '') || 3000));
|
backend/functions/src/stand-alone/search.ts
CHANGED
|
@@ -165,4 +165,4 @@ const instance = container.resolve(SearchStandAloneServer);
|
|
| 165 |
|
| 166 |
export default instance;
|
| 167 |
|
| 168 |
-
instance.serviceReady().then((s) => s.listen(parseInt(process.env.PORT || '') || 3000));
|
|
|
|
| 165 |
|
| 166 |
export default instance;
|
| 167 |
|
| 168 |
+
instance.serviceReady().then((s) => s.h2c().listen(parseInt(process.env.PORT || '') || 3000));
|
thinapps-shared
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
Subproject commit
|
|
|
|
| 1 |
+
Subproject commit b2c5c65f11cab47a228b65b5727c743c481c8288
|