Skip to content

Commit 2118905

Browse files
committed
Fixed "version is not official" message
1 parent 845f841 commit 2118905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Common/SignalHandlers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,14 +577,14 @@ try
577577
}
578578

579579
/// Advice the user to send it manually.
580-
if (std::string_view(VERSION_OFFICIAL).contains("official build"))
580+
if (std::string_view(VERSION_OFFICIAL).contains("altinity build"))
581581
{
582582
const auto & date_lut = DateLUT::instance();
583583

584584
/// Approximate support period, upper bound.
585585
if (time(nullptr) - date_lut.makeDate(2000 + VERSION_MAJOR, VERSION_MINOR, 1) < (365 + 30) * 86400)
586586
{
587-
LOG_FATAL(log, "Report this error to https://github.com/ClickHouse/ClickHouse/issues");
587+
LOG_FATAL(log, "Report this error to https://github.com/Altinity/ClickHouse/issues");
588588
}
589589
else
590590
{

0 commit comments

Comments
 (0)