| Index: dashboard/dashboard/common/utils.py
|
| diff --git a/dashboard/dashboard/common/utils.py b/dashboard/dashboard/common/utils.py
|
| index 4e2350b43cab19930990188a5332e043d293ffa0..434a243c48a0ca5782696fffae34ab8958959ca4 100644
|
| --- a/dashboard/dashboard/common/utils.py
|
| +++ b/dashboard/dashboard/common/utils.py
|
| @@ -504,3 +504,7 @@ def GetLogdogLogUriFromStdioLink(stdio_link):
|
| s_param = urllib.quote('chrome/bb/%s/%s/%s/+/recipes/steps/%s/0/stdout' % (
|
| master, bot, buildnumber, step), safe='')
|
| return 'https://luci-logdog.appspot.com/v/?s=%s' % s_param
|
| +
|
| +def GetRowKey(testmetadata_key, revision):
|
| + test_container_key = GetTestContainerKey(testmetadata_key)
|
| + return ndb.Key('Row', revision, parent=test_container_key)
|
|
|