update limit

This commit is contained in:
Viet-Tien Ngoc 2024-08-06 10:52:28 +07:00
parent 891e7f1f5b
commit db93cbf834

View file

@ -93,9 +93,11 @@ async function clickhouseQuery(data: {
event_name: eventName, event_name: eventName,
}; };
jsonBlobs.blobs.forEach((blob, i) => { jsonBlobs.blobs.forEach((blob, i) => {
if (i >= 20) return; // 20 is the max number of blobs
message[`blob${i + 1}`] = blob; message[`blob${i + 1}`] = blob;
}); });
jsonBlobs.doubles.forEach((double, i) => { jsonBlobs.doubles.forEach((double, i) => {
if (i >= 20) return; // 20 is the max number of doubles
message[`double${i + 1}`] = double; message[`double${i + 1}`] = double;
}); });