Skip to content

Commit 520b2bd

Browse files
reutshalroysagi
authored andcommitted
Fixed the 'database' parameter (#10718)
* Fixed parameter * Update 1_0_1.md Co-authored-by: roysagi <50295826+roysagi@users.noreply.github.com>
1 parent bb56aa9 commit 520b2bd

File tree

4 files changed

+22
-17
lines changed

4 files changed

+22
-17
lines changed

Packs/Vertica/Integrations/Vertica/Vertica.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def convert_datetime_to_string(v):
4848
def connect_db():
4949
USERNAME = demisto.params().get('credentials').get('identifier')
5050
PASSWORD = demisto.params().get('credentials').get('password')
51-
DATABASE = demisto.params().get('database')
51+
DATABASE = demisto.params().get('database (mydb)')
5252
PORT = int(demisto.params().get('port', 5433))
5353
SERVER = demisto.params()['url'][:-1] if (demisto.params()['url'] and demisto.params()
5454
['url'].endswith('/')) else demisto.params()['url']

Packs/Vertica/Integrations/Vertica/Vertica.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ script:
4646
description: The content of rows.
4747
type: string
4848
description: Executes a query on the Vertica database.
49-
dockerimage: demisto/vertica:1.0.0.150
49+
dockerimage: demisto/vertica:1.0.0.12410
5050
runonce: false
5151
subtype: python3
5252
tests:

Packs/Vertica/ReleaseNotes/1_0_1.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
#### Integrations
3+
##### Vertica
4+
- Fixed an issue where the *Database* integration parameter was not used correctly.
5+
- Upgraded the Docker image to demisto/vertica:1.0.0.12410.

Packs/Vertica/pack_metadata.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "Vertica",
3-
"description": "Analytic database management software",
4-
"support": "xsoar",
5-
"currentVersion": "1.0.0",
6-
"author": "Cortex XSOAR",
7-
"url": "https://www.paloaltonetworks.com/cortex",
8-
"email": "",
9-
"created": "2020-04-14T00:00:00Z",
10-
"categories": [
11-
"Database"
12-
],
13-
"tags": [],
14-
"useCases": [],
15-
"keywords": []
16-
}
2+
"name": "Vertica",
3+
"description": "Analytic database management software",
4+
"support": "xsoar",
5+
"currentVersion": "1.0.1",
6+
"author": "Cortex XSOAR",
7+
"url": "https://www.paloaltonetworks.com/cortex",
8+
"email": "",
9+
"created": "2020-04-14T00:00:00Z",
10+
"categories": [
11+
"Database"
12+
],
13+
"tags": [],
14+
"useCases": [],
15+
"keywords": []
16+
}

0 commit comments

Comments
 (0)