Coder Social home page Coder Social logo

Comments (5)

shred avatar shred commented on August 17, 2024 1

Your code is similar to my example, but it has a major difference: instead of invoking challenge.getStatus() it only reads a status variable. This is causing the problem.

Your code might have worked in the past. However, Let's Encrypt is switching to an asynchronous finalization process, which means that the order status is now processing first, which is the behavior that you are seeing. I recommend to change your code, because it definitely won't work like that with the asynchronous finalization.

I don't know if Let's Encrypt has some kind of "negative list" for domain names, but I think it is very unlikely that the domain name (or the domain seller) is a problem here.

from acme4j.

shred avatar shred commented on August 17, 2024 1

You're welcome! If there is still a problem after you changed your code, feel free to reopen this bug.

from acme4j.

shred avatar shred commented on August 17, 2024

The reason might be too much of optimizing... 😉

This is an extract of your code:

while (status != Status.VALID && attempts-- > 0) {
  if (status == Status.INVALID) {
     Debug.logInfo("...");
  }
  Thread.sleep(3000L);
  challenge.update();
}

In the while condition you check if the status variable changes to VALID. But inside the loop you never write a new status to the variable, so it will never change its value.

You could try this:

  challenge.update();
  status = challenge.getStatus();

Does it fix your issue?

from acme4j.

fsl1994 avatar fsl1994 commented on August 17, 2024

Thank you very much. I'll try. I am not familiar with this framework, and this code is to copy the test exmaple you provided. I would like to ask another question, is it possible that the problem is the domain name? However, the domain name I want to test and the dns resolution are all correct. This domain name was bought from a relatively small domain name service provider.

from acme4j.

fsl1994 avatar fsl1994 commented on August 17, 2024

Got it,thank you

from acme4j.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.