Skip to content

Commit 7cb883b

Browse files
authored
fix: use correct hostnames for production env (#8189)
* fix: use correct hostnames for production env * mark scans as not required
1 parent 49abe79 commit 7cb883b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configuration/application.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ ovsx:
306306
enabled: true
307307
enforced: false
308308
type: "CLAMAV_REST"
309-
required: true
309+
required: false
310310
async: false
311311
timeout-minutes: 5
312312

@@ -321,7 +321,7 @@ ovsx:
321321

322322
start:
323323
method: POST
324-
url: "http://clamav-staging:9000/scan"
324+
url: "http://clamav-production:9000/scan"
325325
headers:
326326
Accept: "application/json"
327327
body:
@@ -347,7 +347,7 @@ ovsx:
347347
yara:
348348
enabled: true # Enable when yara-rest service is deployed
349349
type: "YARA"
350-
required: true
350+
required: false
351351
enforced: false
352352
async: false # Synchronous - YARA is fast
353353
timeout-minutes: 5
@@ -361,7 +361,7 @@ ovsx:
361361

362362
start:
363363
method: POST
364-
url: "http://yara-staging:9001/scan"
364+
url: "http://yara-production:9001/scan"
365365
headers:
366366
Accept: "application/json"
367367
body:

0 commit comments

Comments
 (0)