We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code:
django-x509/django_x509/base/models.py
Lines 206 to 217 in c5a5acd
Generates two queries for creating a certificate and a CA.
I figured this out while working on openwisp/openwisp-controller#455.
I think this part could be optimized.
The text was updated successfully, but these errors were encountered:
Hi Sir, I'm new to contributing to this project, but I'm eager to join your organization and excited to help out!
I've looked into the issue and believe the root cause is the redundant super().save calls in the save method. To optimize this, we can:
This will reduce database writes and ensure data consistency.
I'm going to dive into a PR to implement this change. Let me know if you have any suggestions.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This code:
django-x509/django_x509/base/models.py
Lines 206 to 217 in c5a5acd
Generates two queries for creating a certificate and a CA.
I figured this out while working on openwisp/openwisp-controller#455.
I think this part could be optimized.
The text was updated successfully, but these errors were encountered: