You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: worker/cppworker/worker/OCCChild.cpp
+19-3
Original file line number
Diff line number
Diff line change
@@ -1056,11 +1056,27 @@ int OCCChild::handle_command(const int _cmd, std::string &_line)
1056
1056
{
1057
1057
if (config->is_switch_enabled("enable_bind_hash_logging", false)) {
1058
1058
bool skip = false;
1059
-
if (m_corr_id.length() > 16) { // Max hex value that can be stored in ULLONG_MAX (FFFFFFFFFFFFFFFF)
1059
+
if (m_corr_id.length() > 16 && m_corr_id.length() != 32) { // Max hex value that can be stored in ULLONG_MAX (FFFFFFFFFFFFFFFF); corrid.length() != 32 checked to handle new corrid with length 32
0 commit comments