mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix sqs message reading
This commit is contained in:
parent
dce2702e1b
commit
4b27afe176
|
@ -92,7 +92,9 @@ func (k *AwsSqsInput) ReceiveMessage() (key string, message *filer_pb.EventNotif
|
|||
}
|
||||
|
||||
// process the message
|
||||
key = *result.Messages[0].Attributes["key"]
|
||||
// fmt.Printf("messages: %+v\n", result.Messages[0])
|
||||
keyValue := result.Messages[0].MessageAttributes["key"]
|
||||
key = *keyValue.StringValue
|
||||
text := *result.Messages[0].Body
|
||||
message = &filer_pb.EventNotification{}
|
||||
err = proto.UnmarshalText(text, message)
|
||||
|
|
Loading…
Reference in a new issue