Skip to content

Commit

Permalink
fix: show edge-runtime & deno version on start
Browse files Browse the repository at this point in the history
  • Loading branch information
laktek committed Feb 5, 2024
1 parent 26992c0 commit 05358c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/functions/serve/templates/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ serve(async (req: Request) => {
}, {
onListen: () => {
console.log(
`Serving functions on http://127.0.0.1:${HOST_PORT}/functions/v1/<function-name>`,
`Serving functions on http://127.0.0.1:${HOST_PORT}/functions/v1/<function-name>\nUsing ${Deno.version.deno}`,
);
},
});
2 changes: 1 addition & 1 deletion internal/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const (
PgmetaImage = "supabase/postgres-meta:v0.75.0"
StudioImage = "supabase/studio:20240101-8e4a094"
ImageProxyImage = "darthsim/imgproxy:v3.8.0"
EdgeRuntimeImage = "supabase/edge-runtime:v1.33.0"
EdgeRuntimeImage = "supabase/edge-runtime:v1.33.5"
VectorImage = "timberio/vector:0.28.1-alpine"
PgbouncerImage = "bitnami/pgbouncer:1.20.1-debian-11-r39"
PgProveImage = "supabase/pg_prove:3.36"
Expand Down

0 comments on commit 05358c6

Please sign in to comment.