@@ -213,7 +213,7 @@ def on_post(self, req, resp, tenant_id):
213
213
resp .set_header ('x-compute-request-id' , 'create' )
214
214
resp .status = 202
215
215
resp .body = {'server' : {
216
- # TODO(imkarrer) - Casted to string to make tempest pass, make sure correct # noqa
216
+ # Casted to string to make tempest pass
217
217
'id' : str (new_instance ['id' ]),
218
218
'links' : [{
219
219
'href' : self .app .get_endpoint_url (
@@ -560,8 +560,8 @@ def get_server_details_dict(app, req, instance, is_list):
560
560
561
561
# TODO(kmcdonald) - Don't hardcode this
562
562
image_name = ''
563
- # TODO(imkarrer) - returning None makes tempest fail, conditionally returning empty string # noqa
564
- # TODO(imkarrer) - same thing with zone
563
+ # returning None makes tempest fail,
564
+ # conditionally returning empty string for uid and zone
565
565
uid = str (utils .lookup (instance ,
566
566
'billingItem' ,
567
567
'orderItem' ,
@@ -608,7 +608,6 @@ def get_server_details_dict(app, req, instance, is_list):
608
608
'tenant_id' : tenant_id ,
609
609
# NOTE(bodenr): userRecordId accessibility determined by permissions
610
610
# of API caller's user id and api key. Otherwise it will be None
611
- # TODO(imkarrer) - returning None makes tempest fail, conditionally returning empty string # noqa
612
611
'user_id' : uid ,
613
612
'updated' : instance ['modifyDate' ],
614
613
'image_name' : image_name ,
0 commit comments