server24 commented on issue #3493: terracota.org HTTP 403
URL: https://github.com/apache/cloudstack/issues/3493#issuecomment-511888297
 
 
   I found the specific message you are making reference to in the file:
   
   net/sf/ehcache/util/UpdateChecker.class
   
   included in the following JAR:
   /usr/share/cloudstack-management/lib/cloudstack-4.11.3.0.jar
   
   Sourcecode:
   
https://jar-download.com/artifacts/net.sf.ehcache/ehcache-core/2.6.11/source-code/net/sf/ehcache/util/UpdateChecker.java
   
   Excerpt:
   ...
   ```
   public class UpdateChecker extends TimerTask {
       private static final Logger LOG = 
LoggerFactory.getLogger(UpdateChecker.class.getName());
       private static final long MILLIS_PER_SECOND = 1000L;
       private static final int CONNECT_TIMEOUT = 3000;
       private static final String UNKNOWN = "UNKNOWN";
       private static final String UPDATE_CHECK_URL = 
"http://www.terracotta.org/kit/reflector?pageID=update.properties";;
       private static final long START_TIME = System.currentTimeMillis();
   ```
   ...
   ```
       public void checkForUpdate() {
           try {
               if (!Boolean.getBoolean("net.sf.ehcache.skipUpdateCheck")) {
                   doCheck();
               }
           } catch (Throwable t) {
               LOG.debug("Update check failed: ", t);
           }
   ```
   ...
   
   I don't know why I do not see this in my logs, but the message stems from 
that class mentioned above, so we just have to figure out why it is shown in 
your logs/the update-call is being triggered.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to