Skip to content

Commit

Permalink
Version 0.7.61
Browse files Browse the repository at this point in the history
  • Loading branch information
drolbr committed Jul 17, 2023
1 parent 07e3874 commit 980f009
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/overpass_api/core/settings.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Basic_Settings::Basic_Settings()
db_logfile_name("database.log"),
client_logfile_name("transactions.log"),
shared_name_base("/osm3s"),
version("0.7.60.6"),
version("0.7.61"),
source_hash("e2dc3e5b4b9ebbc314b210b8fdeb4a9f960a2b84"),
#ifdef HAVE_LZ4
compression_method(File_Blocks_Index_Base::LZ4_COMPRESSION),
Expand Down
2 changes: 1 addition & 1 deletion src/overpass_api/dispatch/dispatcher_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ int main(int argc, char* argv[])
rate_limit = atoll(((std::string)argv[argpos]).substr(13).c_str());
else if (!(strncmp(argv[argpos], "--allow-duplicate-queries=", 26)))
bit_limits = ((bit_limits & 0xfffffffc) | 0x2 |
((std::string)argv[argpos]).substr(26) == "yes");
(((std::string)argv[argpos]).substr(26) == "yes" ? 0x1 : 0));
else if (!(strncmp(argv[argpos], "--server-name=", 14)))
server_name = ((std::string)argv[argpos]).substr(14);
else
Expand Down

0 comments on commit 980f009

Please sign in to comment.