You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: util/billing.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -277,7 +277,7 @@ func SetClusterPlan() {
277
277
}
278
278
_, err:=getClusterPlan(clusterID)
279
279
iferr!=nil {
280
-
log.Fatalln("Unable to fetch the cluster plan. Please make sure that you're using a valid CLUSTER_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.", err)
280
+
log.Errorln("Unable to fetch the cluster plan. Please make sure that you're using a valid CLUSTER_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.", err)
281
281
return
282
282
}
283
283
}
@@ -363,7 +363,7 @@ func ReportUsage() {
363
363
364
364
result, err:=getArcInstance(arcID)
365
365
iferr!=nil {
366
-
log.Fatalln("Unable to fetch the arc instance. Please make sure that you're using a valid ARC_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.")
366
+
log.Errorln("Unable to fetch the arc instance. Please make sure that you're using a valid ARC_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.")
367
367
return
368
368
}
369
369
@@ -412,7 +412,7 @@ func ReportHostedArcUsage() {
412
412
// getArcClusterInstance(clusterId)
413
413
result, err:=getArcClusterInstance(clusterID)
414
414
iferr!=nil {
415
-
log.Fatalln("Unable to fetch the arc instance. Please make sure that you're using a valid CLUSTER_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.", err)
415
+
log.Errorln("Unable to fetch the arc instance. Please make sure that you're using a valid CLUSTER_ID. If the issue persists please contact support@appbase.io with your ARC_ID or registered e-mail address.", err)
0 commit comments