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
// The ifPresent is not ideal, but compute() does not allow the computation to return null. So we can't preserve
// a state where the object does not exist using compute alone. But even with ifPresent, as we are open to
// the object disappearing between the ifPresent and the compute, which would again lead to the compute creating
// a new object when we don't want it to. But at least this will happen much less frequently.
db.get(name).ifPresent {
The text was updated successfully, but these errors were encountered:
A TODO in HealthCheckMonitoringService.kt:
The text was updated successfully, but these errors were encountered: