Traceback (most recent call last): File "/home/tmp/test.py", line 65, in <module> main() File "/home/tmp/test.py", line 59, in main producer.sendFileData(filePath + fileName) File "/home/tmp/test.py", line 40, in sendFileData producer.send(self.kafkatopic, "parmasMessage") File "/root/anaconda3/lib/python3.10/site-packages/kafka/producer/kafka.py", line 585, in send assert type(value_bytes) in (bytes, bytearray, memoryview, type(None)) AssertionError
时间: 2024-04-05 08:30:22 浏览: 338
这个错误的意思是在 `/home/tmp/test.py` 文件的第 65 行出现了一个异常,它提示在 `/home/tmp/test.py` 文件的第 40 行中的 `send` 函数中, `value_bytes` 的类型不是 `bytes`, `bytearray`, `memoryview` 或 `NoneType` 中的任何一种类型。这个错误通常表示 `value_bytes` 的类型有问题,需要检查函数参数类型是否正确或者函数调用方式是否正确。
阅读全文