我的问题是计划方法“订阅”被调用两次。
这是我使用的模板。
https://github.com/JetBrains/gcp-samples/tree/master/google-appengine-sample
当我使用$mvn spring-boot:run
时,在本地工作正常
但是我使用$mvn appengine:deploy
调度两次。
我的代码:
@Component
class ScheduledTasks {
@Scheduled(cron = "0 0 * * * *")
fun subscription() {
var hasBeenInitialized = false
val firebaseApps = FirebaseApp.getApps()
for (app in firebaseApps) {
if (app.name == FirebaseApp.DEFAULT_APP_NAME) {
hasBeenInitialized = true
}
}
if(!hasBeenInitialized) {
InitializeGCP()
}
var db = FirestoreClient.getFirestore()
val query = db.collection("subscription").get()
val querySnapshot = query.get()
val documents = querySnapshot.documents
for (document in documents) {
if (localTime.equals(document.getString("time"))) {
...post to my ChatBot Api...
}
}
}
}
}
我的app.yaml:
runtime: java
env: flex
runtime_config:
jdk: openjdk8
答案 0 :(得分:0)
我检查我的GCP。
我有两个版本相同的实例。
这有关系吗?
答案 1 :(得分:0)
检查服务器是否有两个实例?此Cron作业仅对一台服务器是唯一的。