Skip to content

Commit

Permalink
Further version 1 MongoDB export fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dreibh committed Dec 10, 2024
1 parent f675050 commit fc7c784
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT(hipercontracer LANGUAGES C CXX)

SET(BUILD_MAJOR "2")
SET(BUILD_MINOR "0")
SET(BUILD_PATCH "0~rc2.0")
SET(BUILD_PATCH "0~rc2.3")
SET(BUILD_VERSION ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_PATCH})

# HiPerConTracer needs at least C++17!
Expand Down
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
hipercontracer (2.0.0~rc2.0-1ubuntu1) jammy; urgency=medium
hipercontracer (2.0.0~rc2.3-1ubuntu1) jammy; urgency=medium

* New upstream release.

-- Thomas Dreibholz <[email protected]> Mon, 02 Dec 2024 11:26:00 +0100
-- Thomas Dreibholz <[email protected]> Tue, 10 Dec 2024 11:06:17 +0100

hipercontracer (1.6.10-1ubuntu1) jammy; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion freebsd/hipercontracer/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PORTNAME= hipercontracer
DISTVERSION= 2.0.0~rc2.0
DISTVERSION= 2.0.0~rc2.3
PORTREVISION= 1
CATEGORIES= benchmarks
MASTER_SITES= https://www.nntb.no/~dreibh/hipercontracer/download/
Expand Down
2 changes: 1 addition & 1 deletion rpm/hipercontracer.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: hipercontracer
Version: 2.0.0~rc2.0
Version: 2.0.0~rc2.3
Release: 1
Summary: High-Performance Connectivity Tracer (HiPerConTracer)
Group: Applications/Internet
Expand Down
10 changes: 5 additions & 5 deletions src/hpct-query.cc
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ int main(int argc, char** argv)
const long long delayAppSend = -1;
const long long delayQueuing = -1;
const long long delayAppReceive = -1;
const long long rttApplication = databaseClient->getBigInt("rtt");
const long long rttApplication = 1000 * databaseClient->getBigInt("rtt");
const long long rttSoftware = 0;
const long long rttHardware = 0;
OUTPUT_PING_V2;
Expand Down Expand Up @@ -833,10 +833,10 @@ int main(int argc, char** argv)
const boost::asio::ip::address hopIP = statement.decodeAddress(databaseClient->getString("hop"));
const unsigned int status = databaseClient->getInteger("status");
const unsigned int timeSource = 0x00000000;
const long long delayAppSend = 0;
const long long delayQueuing = 0;
const long long delayAppReceive = 0;
const long long rttApplication = databaseClient->getBigInt("rtt");
const long long delayAppSend = -1;
const long long delayQueuing = -1;
const long long delayAppReceive = -1;
const long long rttApplication = 1000 * databaseClient->getBigInt("rtt");
const long long rttSoftware = -1;
const long long rttHardware = -1;
OUTPUT_TRACEROUTE_HOP_V2;
Expand Down

0 comments on commit fc7c784

Please sign in to comment.