Skip to content

Commit

Permalink
Fixed bug when queries for huge data were running forever.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fanda Vacek committed Feb 2, 2024
1 parent f49cc98 commit 156dab6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Checks:
-hicpp-use-override,
-hicpp-vararg,
-misc-const-correctness,
-misc-include-cleaner,
-misc-no-recursion,
-misc-non-private-member-variables-in-classes,
-misc-unused-parameters,
Expand Down
2 changes: 1 addition & 1 deletion shvspy/src/appversion.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#define APP_VERSION "1.7.0"
#define APP_VERSION "1.7.1"

1 change: 0 additions & 1 deletion shvspy/src/servertreemodel/shvbrokernodeitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,6 @@ void ShvBrokerNodeItem::createSubscriptions()
connect(rpc, &RpcCall::maybeResult, this, [this](const auto &result, const auto &err) {
using ShvApiVersion = shv::iotqt::rpc::ClientConnection::ShvApiVersion;
if(err.isValid()) {
shvError() << "Call check SHV API version error:" << err.toString();
clientConnection()->setShvApiVersion(ShvApiVersion::V2);
}
else {
Expand Down

0 comments on commit 156dab6

Please sign in to comment.