1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Cloud RunになったCloud Functionsで第一世代を使い続けたいときにやること

Last updated at Posted at 2024-10-17

概要

  • 久々にCloud Functionを利用するプロダクトを起動したら動かなかったので修正した
  • firebase-functions をアップデートしたのが事の始まり

firebase-functions をアップデートしたらどうなったのか

4.6.06.0.1 にアップデートしたところ軒並み怒られました

firebase-1     | TypeError: functions.runWith is not a function
firebase-1     | TypeError: functions.region is not a function
...

アップデートしたことで、デフォルトがv2になったため、v1の書き方だと駄目ですよ。ってことですね。理解

修正

マイグレーションする必要はありますが、一旦その場しのぎしたい場合は、v1を明示的にインポートすればおkです

typescript
- import * as functions from 'firebase-functions'
+ import * as functions from 'firebase-functions/v1'

そしたらエラーは無くなりましたー。よかったー(駄目)

雑感

さっさとマイグレーションしよう(やばい)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?