Ping @alexbourlier I just tested and cannot confirm this bug (you can find a SIB - Benoit Test circle in the list). I properly got a 201 created right after the POST.
As far as I know there were no recent deployments.
@alexbourlier there is also the possibility that the core team did not properly implement the support of the required-* on the richtext widget. If you can confirm, let me know.
Actually, it's true that it's working with a description, and the required may not be properly implemented. However, the server should return an error and not stay in a pending state forever. I think we have 2 issues here
At the moment, the project team is... dead, as JB has no internet. If you have somebody in your CTO bagpack that can take this on, he or she is most welcome
I don't know if it's specific to Firefox, but doing the same, on my side I have a POST request made, but waiting in pending indefinitely, and a OPTIONS after the POST, which resolves with a 200
Firefox here, two different behavior on the same browser?
I tried on community too, got the same behavior as my upper comment #966 (comment 50884)
So, I created a local server and tried it there. It looks that my Firefox does not show the request at all, but there is a POST with an empty body made.
I replicated this in a unit test and the issue is that description isn't defined in the context (or sent as a URL), and when this happens PyLD actually just strips it out of the request, so it's never makes it to LDPSerializer
I sent the same request with the context changed as follows and it passed:
I'm surprised the server hangs when it hits this, it doesn't respond 500 ? In my test it threw an exception sqlite3.IntegrityError: NOT NULL constraint failed: djangoldp_circle_circle.description
that looks weird to me because we are often not defining every property in the context.
@balessan I'm certain that it does this, but it's a bit of a black box for me how it does it - like it seems completely fine with me passing a property which doesn't exist on the HD ontology, but for other properties having @vocab: 'happy-dev.fr/owl/#' seems to be enough... A priori it could be reading some properties from the vocabulary, and if they're not explicitly defined on it then it's permissive with any URL given explicitly ? We'd need to spend some time debugging PyLD to know for sure (or ask them)
it just hangs indeed
@alexbourlier could you please reproduce and confirm if in the Network/Réseau panel of your browser's dev tools you have a response from the server of 500 on the request or if it's waiting for the server to send one ? I assume it's waiting but just to make sure it's a backend problem
I didn't realise that Django default does not apply when the field is explicitly set to None. I added null=True because it was the easiest way to solve it
This fix just stops the 500 though, the bug will now be "when I create a circle the description is not set correctly" - see my previous comment #966 (comment 51050)
How are we moving forward with that bug ?
Discussions opened for things serverside which made this bug less conspicuous than it should have been (just opened a new one in this list):