Skip to content
New issue

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

Fix crash on saving endpoint (FFUF related only) #1063

Merged
merged 9 commits into from
Nov 27, 2023
Prev Previous commit
Next Next commit
Change method to create only to reduce query
  • Loading branch information
psyray committed Nov 22, 2023
commit e91ca6b974a37e4c77d54ed1a6c548f18fefe9a1
2 changes: 1 addition & 1 deletion web/reNgine/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4509,7 +4509,7 @@ def save_endpoint(
created = False
else:
# No existing record, create a new one
endpoint, created = EndPoint.objects.get_or_create(
endpoint, created = EndPoint.objects.create(
scan_history=scan,
target_domain=domain,
http_url=http_url,
Expand Down
Loading