Skip to content
Snippets Groups Projects
Commit e9794d54 authored by Alexa Valentová's avatar Alexa Valentová
Browse files

Remove ClamAV requirement

parent 9d9a7cec
No related branches found
No related tags found
No related merge requests found
Pipeline #20737 passed
...@@ -1642,6 +1642,7 @@ class Command(BaseCommand): ...@@ -1642,6 +1642,7 @@ class Command(BaseCommand):
if self.verbosity >= 2: if self.verbosity >= 2:
self.stdout.write("\n") self.stdout.write("\n")
self.import_all_contracts(git_dir) self.import_all_contracts(git_dir)
if self.verbosity >= 1: if self.verbosity >= 1:
......
...@@ -236,8 +236,8 @@ DBSETTINGS_VALUE_LENGTH = 65536 ...@@ -236,8 +236,8 @@ DBSETTINGS_VALUE_LENGTH = 65536
# ClamAV # ClamAV
CLAMD_USE_TCP = True CLAMD_USE_TCP = True
CLAMD_TCP_SOCKET = env.int("CLAMD_TCP_SOCKET") CLAMD_TCP_SOCKET = env.int("CLAMD_TCP_SOCKET", None)
CLAMD_TCP_ADDR = env.str("CLAMD_TCP_ADDR") CLAMD_TCP_ADDR = env.str("CLAMD_TCP_ADDR", None)
# Sentry # Sentry
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment