We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following is my function in my code:
def getData(self, bucket, key, nestedKey = None): expiry = None bucket_store = self.mClient.bucket(bucket) print self.mClient.get_buckets() returnKey = bucket_store.get(key) currenttime = datetime.datetime.now() returnData = returnKey.data if returnData != None: print "Empty return Data" if nestedKey != None and nestedKey in returnData: returnData = returnData[nestedKey] print "Getting Data for key : ",key," from bucket : ",bucket," wtih nested key : ",nestedKey print "Result : ",returnData," \n" return returnData
I get an error at "returnData = returnKey.data"
Any word for it? I am using version 2.7.5 for riak python client.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following is my function in my code:
I get an error at "returnData = returnKey.data"
Any word for it? I am using version 2.7.5 for riak python client.
The text was updated successfully, but these errors were encountered: