Skip to content

Commit

Permalink
#73: Fixed "query_via_exaplus" (#74)
Browse files Browse the repository at this point in the history
fixes #73
  • Loading branch information
tomuben authored Jul 31, 2024
1 parent 796ee1c commit 8fe077e
Show file tree
Hide file tree
Showing 6 changed files with 151 additions and 154 deletions.
2 changes: 1 addition & 1 deletion doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

* [0.7.0](changes_0.7.0.md)
* [0.6.1](changes_0.6.1)
* [0.6.0](changes_0.6.0.md)
* [0.5.1](changes_0.5.1.md)
* [0.5.0](changes_0.5.0.md)
Expand Down
7 changes: 7 additions & 0 deletions doc/changes/changes_0.6.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Exasol Python Test Framework 0.6.1, released 2024-07-31

Code name: Hotfix for 'query_via_exaplus'

## Summary

This release fixes the test function 'query_via_exaplus' which does not work with custom certificates. The function now ignores TLS certificates.
6 changes: 0 additions & 6 deletions doc/changes/changes_0.7.0.md

This file was deleted.

2 changes: 1 addition & 1 deletion exasol_python_test_framework/udf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def query(self, *args, **kwargs):

def query_via_exaplus(self, query):
cmd = '''%(exaplus)s -c %(conn)s -u %(user)s -P %(password)s
-no-config -autocommit ON -L -pipe''' % {
-no-config -autocommit ON -L -pipe -jdbcparam validateservercertificate=0''' % {
'exaplus': os.environ.get('EXAPLUS'),
'conn': opts.server,
'user': self.user,
Expand Down
Loading

0 comments on commit 8fe077e

Please sign in to comment.