Skip to content

Commit

Permalink
imperva_cloud_waf: fix syntax for error message construction (elastic…
Browse files Browse the repository at this point in the history
  • Loading branch information
efd6 authored Feb 14, 2025
1 parent ed09273 commit c5ea194
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions packages/imperva_cloud_waf/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.6.2"
changes:
- description: Fix error message formatting syntax in agent configuration.
type: bugfix
link: https://github.com/elastic/integrations/pull/12779
- version: "1.6.1"
changes:
- description: Updated SSL description to be uniform and to include links to documentation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ program: |
"error": {
"code": string(resp.StatusCode),
"id": string(resp.Status),
"message": "GET " + state.url + "logs.index: " + "+(
"message": "GET " + state.url + "logs.index: " + (
size(resp.Body) != 0 ?
string(resp.Body)
:
Expand Down Expand Up @@ -98,7 +98,7 @@ program: |
"error": {
"code": string(resp.StatusCode),
"id": string(resp.Status),
"message": "GET " + state.url+v.worklist[v.next].filename + ": " + "+(
"message": "GET " + state.url+v.worklist[v.next].filename + ": " +(
size(resp.Body) != 0 ?
string(resp.Body)
:
Expand Down
2 changes: 1 addition & 1 deletion packages/imperva_cloud_waf/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.0.3
name: imperva_cloud_waf
title: Imperva Cloud WAF
version: "1.6.1"
version: "1.6.2"
description: Collect logs from Imperva Cloud WAF with Elastic Agent.
type: integration
categories:
Expand Down

0 comments on commit c5ea194

Please sign in to comment.