@secondlayer/subgraphs 3.7.0 → 3.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3393,10 +3393,10 @@ function handlerImportUrl(handlerPath, cacheBust = Date.now()) {
|
|
|
3393
3393
|
return `${pathToFileURL(resolve(handlerPath)).href}?t=${cacheBust}`;
|
|
3394
3394
|
}
|
|
3395
3395
|
function sourceListenerUrl() {
|
|
3396
|
-
return process.env.SOURCE_DATABASE_URL
|
|
3396
|
+
return process.env.SOURCE_DATABASE_URL || process.env.DATABASE_URL;
|
|
3397
3397
|
}
|
|
3398
3398
|
function targetListenerUrl() {
|
|
3399
|
-
return process.env.TARGET_DATABASE_URL
|
|
3399
|
+
return process.env.TARGET_DATABASE_URL || process.env.DATABASE_URL;
|
|
3400
3400
|
}
|
|
3401
3401
|
function isHandlerNotFoundError(err) {
|
|
3402
3402
|
if (!(err instanceof Error))
|
|
@@ -3699,5 +3699,5 @@ export {
|
|
|
3699
3699
|
startSubgraphOperationRunner
|
|
3700
3700
|
};
|
|
3701
3701
|
|
|
3702
|
-
//# debugId=
|
|
3702
|
+
//# debugId=81F8DFE131D3131664756E2164756E21
|
|
3703
3703
|
//# sourceMappingURL=processor.js.map
|