You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2022/10/31 05:56:53 UTC

[iotdb] branch master updated (caca66ada7 -> 0e843a7614)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from caca66ada7 [IOTDB-2884]Redo Log for SchemaFile (#7726)
     add 0e843a7614 Rename mpprest to rest (#7804)

No new revisions were added by this update.

Summary of changes:
 openapi/pom.xml                                    | 26 ----------------------
 .../MPPRestService.java => rest/RestService.java}  | 20 ++++++++---------
 .../{mpprest => rest}/filter/ApiOriginFilter.java  |  2 +-
 .../filter/AuthorizationFilter.java                |  4 ++--
 .../filter/BasicSecurityContext.java               |  2 +-
 .../db/protocol/{mpprest => rest}/filter/User.java |  2 +-
 .../{mpprest => rest}/filter/UserCache.java        |  2 +-
 .../handler/AuthorizationHandler.java              |  4 ++--
 .../handler/ExceptionHandler.java                  |  4 ++--
 .../handler/QueryDataSetHandler.java               |  4 ++--
 .../handler/RequestValidationHandler.java          |  8 +++----
 .../handler/StatementConstructionHandler.java      |  4 ++--
 .../impl/GrafanaApiServiceImpl.java                | 20 ++++++++---------
 .../{mpprest => rest}/impl/PingApiServiceImpl.java |  6 ++---
 .../{mpprest => rest}/impl/RestApiServiceImpl.java | 20 ++++++++---------
 .../java/org/apache/iotdb/db/service/DataNode.java |  4 ++--
 .../java/org/apache/iotdb/db/service/NewIoTDB.java |  4 ++--
 17 files changed, 55 insertions(+), 81 deletions(-)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest/MPPRestService.java => rest/RestService.java} (90%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/filter/ApiOriginFilter.java (96%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/filter/AuthorizationFilter.java (97%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/filter/BasicSecurityContext.java (96%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/filter/User.java (95%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/filter/UserCache.java (97%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/handler/AuthorizationHandler.java (93%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/handler/ExceptionHandler.java (97%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/handler/QueryDataSetHandler.java (98%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/handler/RequestValidationHandler.java (89%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/handler/StatementConstructionHandler.java (98%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/impl/GrafanaApiServiceImpl.java (93%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/impl/PingApiServiceImpl.java (91%)
 rename server/src/main/java/org/apache/iotdb/db/protocol/{mpprest => rest}/impl/RestApiServiceImpl.java (91%)