You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HIVE-29912: added configuration variable hive.metastore.httpserver.use.https that drives if catalog/property servlets are using https;
- requires the same keystore/truststore configuration than useSSL;
- added tests & self signed certificates (good for 10 years);
- renamed conditional version of createSslContextFactory to createSslContextFactoryIf;
- addressing review comments;
- USE_SSL drive https endpoint creation;
- refactored ServletServerBuilder#createConnector();
- removed useless method ServletServerBuilder#createSslContextFactory() and ServletSecurity#createSslContextFactory();
- removed junit.jupiter.* that break compilation (?!);
Copy file name to clipboardExpand all lines: standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/properties/HMSPropertyManager.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@
31
31
* <ul>
32
32
* <li>name : when it refers to a cluster property named 'name'</li>
33
33
* <li>db.name : when it refers to a database property named 'name' for the database 'db'</li>
34
-
* <li>db.table.name : when it refers to a table property named 'name' for the table 'table' in the database 'db</li>
34
+
* <li>db.table.name : when it refers to a table property named 'name' for the table 'table' in the database 'db'</li>
Copy file name to clipboardExpand all lines: standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ServletServerBuilder.java
0 commit comments