-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#43 TLS fingerprint support for ODBC #45
Conversation
doc/changes/changes_0.5.0.md
Outdated
@@ -1,13 +1,15 @@ | |||
# Exasol Tableau Connector 0.5.0, released 2022-02-?? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No release planned?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the reminder 😅
4. [Create a new GitHub release](https://github.com/exasol/tableau-connector/releases/new) and upload files | ||
* `target/tableau-exasol-connector-jdbc-<version>.taco` | ||
* `target/tableau-exasol-connector-odbc-<version>.taco` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe you can automate this with release droid?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The release requires signing the connector. I will clarify if we can use the certificate in a GitHub build.
@@ -5,7 +5,7 @@ | |||
<connection class='federated'> | |||
<named-connections> | |||
<named-connection name='leaf'> | |||
<connection tdvtconnection='exasol_odbctestname' class='exasol_odbc' odbc-connect-string-extras='' port='8563' schema='TESTV1' server='exasol.test.lan/15F9CA9BC95E14F1F913FC449A26723841C118CFB644957866ABB73C1399A7FF' tablename='Staples' username='TABLEAU_TEST_USER' /> | |||
<connection tdvtconnection='exasol_odbctestname' class='exasol_odbc' odbc-connect-string-extras='' port='8563' schema='TESTV1' server='exasol.test.lan' tablename='Staples' username='TABLEAU_TEST_USER' v-fingerprint='15F9CA9BC95E14F1F913FC449A26723841C118CFB644957866ABB73C1399A7FF' /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intended to commit the fingerprint here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. The test framework requires configuring the DB connection here. As long as we can only run the tests manually it doesn't make sense to extract this.
@@ -5,7 +5,7 @@ | |||
<connection class='federated'> | |||
<named-connections> | |||
<named-connection name='leaf'> | |||
<connection tdvtconnection='exasol_odbctestname' class='exasol_odbc' odbc-connect-string-extras='' port='8563' schema='TESTV1' server='exasol.test.lan/15F9CA9BC95E14F1F913FC449A26723841C118CFB644957866ABB73C1399A7FF' tablename='Calcs' username='TABLEAU_TEST_USER' /> | |||
<connection tdvtconnection='exasol_odbctestname' class='exasol_odbc' odbc-connect-string-extras='' port='8563' schema='TESTV1' server='exasol.test.lan' tablename='Calcs' username='TABLEAU_TEST_USER' v-fingerprint='15F9CA9BC95E14F1F913FC449A26723841C118CFB644957866ABB73C1399A7FF' /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intended to commit the fingerprint here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, see previous comment.
Co-authored-by: jakobbraun <[email protected]>
Closes #43