mxm commented on code in PR #710: URL: https://github.com/apache/flink-kubernetes-operator/pull/710#discussion_r1392788100
########## flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/autoscaler/ConfigMapStore.java: ########## @@ -63,29 +93,29 @@ protected void putSerializedState( protected Optional<String> getSerializedState( KubernetesJobAutoScalerContext jobContext, String key) { - return getConfigMap(jobContext).map(configMap -> configMap.getData().get(key)); + return Optional.ofNullable(getConfigMap(jobContext).configMap.getData().get(key)); } protected void removeSerializedState(KubernetesJobAutoScalerContext jobContext, String key) { - getConfigMap(jobContext) - .ifPresentOrElse( - configMap -> configMap.getData().remove(key), - () -> { - throw new IllegalStateException( - "The configMap isn't created, so the remove is unavailable."); - }); + getConfigMap(jobContext).removeKey(key); } public void flush(KubernetesJobAutoScalerContext jobContext) { - Optional<ConfigMap> configMapOpt = cache.get(jobContext.getJobKey()); - if (configMapOpt == null || configMapOpt.isEmpty()) { + ConfigMapState configMapState = cache.get(jobContext.getJobKey()); + if (configMapState == null || (configMapState.flushed && configMapState.exists)) { Review Comment: This should be nicer now. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org