Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.4.x'
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Smith <[email protected]>
  • Loading branch information
jakesmith committed Nov 30, 2023
2 parents 71e52e2 + 32c22a2 commit 1850d9c
Show file tree
Hide file tree
Showing 54 changed files with 3,577 additions and 5,681 deletions.
12 changes: 12 additions & 0 deletions common/thorhelper/thorcommon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,10 @@ class CStatsContextLogger : public CSimpleInterfaceOf<IContextLogger>
{
return traceLevel;
}
virtual ISpan * queryActiveSpan() const override
{
return activeSpan;
}
virtual void setActiveSpan(ISpan * span) override
{
activeSpan.set(span);
Expand All @@ -725,6 +729,14 @@ class CStatsContextLogger : public CSimpleInterfaceOf<IContextLogger>
{
return ::getClientHeaders(activeSpan);
}
virtual IProperties * getSpanContext() const override
{
return ::getSpanContext(activeSpan);
}
virtual void setSpanAttribute(const char *name, const char *value) const override
{
activeSpan->setSpanAttribute(name, value);
}
virtual const char *queryGlobalId() const override
{
return activeSpan->queryGlobalId();
Expand Down
7 changes: 4 additions & 3 deletions docs/EN_US/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@
# This CMakeLists intended to be used in docs/EN
# Refactored for internationalization
###
# Last Mod GP 12/2022
# Last Mod GP 11/2023
###
# Removed AWS
# Removed HPCC in a VM
# Removed Monitoring
# Removed ECLWatch
####################
#########################################
#
# Doc dirs to include.
#
Expand Down Expand Up @@ -77,7 +79,6 @@ add_subdirectory(HPCCDataTutorial)
add_subdirectory(HPCCSystemAdmin)
add_subdirectory(HPCCSpark)
add_subdirectory(HPCC4J)
add_subdirectory(InstantCloud)
add_subdirectory(Installing_and_RunningTheHPCCPlatform)
add_subdirectory(JDBC-driver)
add_subdirectory(RoxieReference)
Expand Down
66 changes: 0 additions & 66 deletions docs/EN_US/InstantCloud/AWS-Mods/AWSIncludes.xml

This file was deleted.

17 changes: 0 additions & 17 deletions docs/EN_US/InstantCloud/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 1850d9c

Please sign in to comment.