Fixed
Status Update
Comments
js...@gmail.com <js...@gmail.com>
ma...@google.com <ma...@google.com> #2
This also brings back dialog content size animations issues :( But on all devices this time.
See attached video
Repro:
Dialog(
onDismissRequest = {
if (dialogState.canDismiss.value) {
dialogNavigator.hide()
}
},
properties = properties,
content = {
Surface(
modifier = modifier
.safeContentPadding()
.fillMaxWidth(0.8f)
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
.....A composable that change it's size
}
},
)
Description
1. Click on
2. Look at the log
Does this problem exist with both the SDK app server and our production app
servers?
Production log
What is the expected output? What do you see instead?
Error
Traceback (most recent call last):
File "/base/data/home/apps/payrate/9.9/Main.py", line 90, in get
for result in get_visas(keyword, int(page),s):
File "/base/data/home/apps/payrate/9.9/Main.py", line 138, in get_visas
visas = db_visas(keyword,offset)
File "/base/data/home/apps/payrate/9.9/Main.py", line 148, in db_visas
for result in query.Get(101, offset):
File "/base/python_lib/versions/1/google/appengine/api/datastore.py",
line 938, in Get
return self._Run(limit, offset)._Next(limit)
File "/base/python_lib/versions/1/google/appengine/api/datastore.py",
line 885, in _Run
*datastore_index.CompositeIndexForQuery(pb)[:-1])
TypeError: 'NoneType' object is unsubscriptable
What version of the product are you using? On what operating system?
Its a production issue
Please provide any additional information below.
Model Details :
*************
class VisaLoader(bulkload.Loader):
def __init__(self):
# Our 'Person' entity contains a name string and an email
bulkload.Loader.__init__(self, 'Visa',
[
('Date_Filed',str),
('Case_Number',str),
('Employer_Name',str),
('Address_1',str),
('Address_2',str),
('City',str),
('State',str),
('Zip_Code',str),
('Nbr_Immigrants',str),
('Job_Title',str),
('Certified_Begin_Date',str),
('Occupation_Code',str),
('Case_Status',str),
('Wage_Rate_From_1',str),
('Wage_Rate_Per_1',str),
('Wage_Rate_To_1',str),
('Part_Time_1',str),
('Work_City_1',str),
('Work_State_1',str)
])
*************
I am trying to use searchable model. I have around 700K record in datastore
of type Visa.
I am using the following code to retrieve the data
def get_visas(keyword, offset, querystring):
"""get_visas()
Checks the cache to see if there are cached greetings.
If not, call render_greetings and set the cache
Returns:
A string of HTML containing greetings.
"""
#logging.error(querystring)
visas = memcache.get(querystring)
if visas is not None:
return visas
else:
visas = db_visas(keyword,offset)
# logging.error(querystring)
if not memcache.add(querystring, visas, 10):
logging.error("Memcache set failed.")
return visas
def db_visas(keyword, offset):
visas=[]
query = search.SearchableQuery('Visa')
query.Search(keyword)
for result in query.Get(101, offset):
visas.append(result)
return visas