Skip to content

Commit

Permalink
Merge pull request #37 from OilerNetwork/feat/updateWorkflow
Browse files Browse the repository at this point in the history
Return db url
  • Loading branch information
dhruv035 authored Nov 27, 2024
2 parents 5a74c57 + 7b1a5ea commit 39f5c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/getGasData/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export async function GET(request: Request) {
} catch (error: any) {
console.error("Error fetching data", error);
return NextResponse.json(
{ error: "Internal server error", details: error.message },
{ error: "Internal server error", details: error.message, db_url: process.env.FOSSIL_DB_URL},
{ status: 500 },
);
}
Expand Down

0 comments on commit 39f5c9b

Please sign in to comment.