Skip to content

Commit ebcba99

Browse files
committed
DM-52370: incremented the REST API version to 52
1 parent ef0ee97 commit ebcba99

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

python/lsst/qserv/admin/replication_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
chunk_info_file = "chunk_info.json"
4545

46-
repl_api_version = 51
46+
repl_api_version = 52
4747

4848
_log = logging.getLogger(__name__)
4949

src/http/ChttpMetaModule.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ lsst::qserv::http::AuthContext const authContext;
3737

3838
namespace lsst::qserv::http {
3939

40-
unsigned int const ChttpMetaModule::version = 51;
40+
unsigned int const ChttpMetaModule::version = 52;
4141

4242
void ChttpMetaModule::process(string const& context, nlohmann::json const& info, httplib::Request const& req,
4343
httplib::Response& resp, string const& subModuleName) {

src/http/MetaModule.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lsst::qserv::http::AuthContext const authContext;
3636

3737
namespace lsst::qserv::http {
3838

39-
unsigned int const MetaModule::version = 51;
39+
unsigned int const MetaModule::version = 52;
4040

4141
void MetaModule::process(string const& context, nlohmann::json const& info,
4242
shared_ptr<qhttp::Request> const& req, shared_ptr<qhttp::Response> const& resp,

src/www/qserv/js/Common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function(sqlFormatter,
66
_) {
77

88
class Common {
9-
static RestAPIVersion = 51;
9+
static RestAPIVersion = 52;
1010
static query2text(query, expanded) {
1111
if (expanded) {
1212
if (query.length > Common._max_expanded_length) {

0 commit comments

Comments
 (0)