aiweed

Results 3 issues of aiweed

ull,"localFolderPath":"/home/jason/work","panFolderPath":"/work/work","statusUpdateTime":"","driveId":"15195090","useInternalUrl":false,"downloadRange":null,"downloadBlockSize":262144,"uploadRange":null,"uploadEntity":{"parent_file_id":"64c081f47c4da04a069b466cb48a2b2a2c42a451","part_info_list":null,"upload_id":"rapid-d5c5f02d-61fa-49ae-bfc1-59495bf5e7aa","rapid_upload":true,"type":"file","file_id":"64c22dbb6252f92097b94d7ca8c901f9cdc027f9","domain_id":"bj29","drive_id":"15195090","file_name":"issue22198.go","encrypt_mode":"none","location":"cn-beijing"},"uploadPartSeq":0,"uploadBlockSize":1048576} panic: runtime error: index out of range [0] with length 0 goroutine 25 [running]: github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTask).uploadFile(0xc001ed8000, 0xf20678, 0xc0003d1180, 0x0, 0x0) /Users/tickstep/Documents/Workspace/go/projects/aliyunpan/internal/syncdrive/file_action_task.go:540 +0x2505 github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTask).DoAction(0xc001ed8000, 0xf20678, 0xc0003d1180, 0x0, 0x0) /Users/tickstep/Documents/Workspace/go/projects/aliyunpan/internal/syncdrive/file_action_task.go:70 +0x1cf0 github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTaskManager).fileActionTaskExecutor.func1(0xc001ed8000,...

o_list":null,"upload_id":"rapid-d5c5f02d-61fa-49ae-bfc1-59495bf5e7aa","rapid_upload":true,"type":"file","file_id":"64c22dbb6252f92097b94d7ca8c901f9cdc027f9","domain_id":"bj29","drive_id":"15195090","file_name":"issue22198.go","encrypt_mode":"none","location":"cn-beijing"},"uploadPartSeq":0,"uploadBlockSize":1048576} panic: runtime error: index out of range [0] with length 0 goroutine 25 [running]: github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTask).uploadFile(0xc001ed8000, 0xf20678, 0xc0003d1180, 0x0, 0x0) /Users/tickstep/Documents/Workspace/go/projects/aliyunpan/internal/syncdrive/file_action_task.go:540 +0x2505 github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTask).DoAction(0xc001ed8000, 0xf20678, 0xc0003d1180, 0x0, 0x0) /Users/tickstep/Documents/Workspace/go/projects/aliyunpan/internal/syncdrive/file_action_task.go:70 +0x1cf0 github.com/tickstep/aliyunpan/internal/syncdrive.(*FileActionTaskManager).fileActionTaskExecutor.func1(0xc001ed8000,...

问题: open62541.c:73504: UA_NodeMap_releaseNode: Assertion `entry->refCount > 0' failed. 一个断言错误,程序直接退出,1.3.6版本,1.3.7版本和1.3.9版本都会出现 1、在一个单核的ARM CPU上程序一直可以正常运行,放到双核的ARM CPU运行一断时间就会出现上边的问题 2、具体情况是我从其它设备读取的数据通过UA_Server_writeValue写入node,我在所有引用到server的位置都加了全局锁 void Opcua::opcuaWriteValue(OpcuaNode *node, bool value) { UA_Boolean myBool = value; UA_Variant myVar; UA_Variant_init(&myVar); UA_Variant_setScalar(&myVar, &myBool, &UA_TYPES[UA_TYPES_BOOLEAN]); serverMutex.lock();...