private void safeFlushWithLogging()

in amazon-sns-trigger-server/src/main/java/jetbrains/buildServer/clouds/amazon/sns/trigger/utils/CustomDataStorageWrapper.java [94:101]


  private void safeFlushWithLogging() {
    if (!safeFlush()) {
      LOG.error("Failed to flush session storage after 10 retries. Session data may be lost.");
    }

    // in any case, we need to update our state copy with the latest values from store
    myStateCopy.putAll(transformToStringOptionalMap(getValuesSafe()));
  }