Add exclusion for "API mode: {}" from S3 in 00002_log_and_exception_messages_formatting

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
Azat Khuzhin 2023-07-09 08:21:18 +02:00
parent b958363630
commit ac972661f9

View File

@ -36,7 +36,7 @@ create temporary table known_short_messages (s String) as select * from (select
'Database {} doesn''t exist', 'Dictionary ({}) not found', 'Unknown table function {}',
'Unknown format {}', 'Unknown explain kind ''{}''', 'Unknown setting {}', 'Unknown input format {}',
'Unknown identifier: ''{}''', 'User name is empty', 'Expected function, got: {}',
'Attempt to read after eof', 'String size is too big ({}), maximum: {}'
'Attempt to read after eof', 'String size is too big ({}), maximum: {}', 'API mode: {}'
] as arr) array join arr;
-- Check that we don't have too many short meaningless message patterns.