Hi Guys,<br><br>I am walking through the OVS Plugin code and configured Quantum without Keystone (noauth). However, I am confused here about 'context' object (/quantum/context.py). I observed that, context object contains security info on the requested information. as I configured noauth, I am getting the information in context object is 'None'.<br>
<br>Can any one elaborate me more on 'context'? how it's been generating? ..may be a sample work flow will be sufficient to understand (request to context) <br><br>At the OVS plugin side, here, Since the context contain <b>None tenant_id</b> (because <b>noauth</b> configuration) and <b>is_admin</b> is "TRUE", then How the network info is being populated from DB? In this case, I want to populate the network info based on tenant instead admin user.<br>
<br>def get_networks(self, context, filters=None, fields=None):<br>        <b>nets = super(OVSQuantumPluginV2, self).get_networks(context, filters, None)  <----- What will be happened after executing this line? How can we debug this call to understand the concept?<br>
        </b>for net in nets:<br>            self._extend_network_dict_provider(context, net)<br>            self._extend_network_dict_l3(context, net)<br><br>        # TODO(rkukura): Filter on extended provider attributes.<br>
        nets = self._filter_nets_l3(context, nets, filters)<br><br>Cheer,<br>Hitesh