openstackgerrit | Merged openstack/puppet-manila master: Add glance options https://review.opendev.org/745765 | 00:21 |
---|---|---|
*** takamatsu has quit IRC | 00:45 | |
*** takamatsu has joined #openstack-manila | 00:51 | |
openstackgerrit | zhongshengping proposed openstack/puppet-manila master: Add mysql_enable_ndb option https://review.opendev.org/748093 | 03:54 |
openstackgerrit | zhongshengping proposed openstack/puppet-manila master: Add mysql_enable_ndb option https://review.opendev.org/748093 | 03:57 |
*** jmlowe has quit IRC | 04:18 | |
*** jmlowe has joined #openstack-manila | 04:29 | |
*** AnaghaR has joined #openstack-manila | 05:24 | |
*** vishalmanchanda has joined #openstack-manila | 06:49 | |
*** AnaghaR has quit IRC | 07:10 | |
*** tosky has joined #openstack-manila | 07:40 | |
*** tosky has quit IRC | 08:32 | |
*** tosky has joined #openstack-manila | 08:33 | |
*** arne_wiebalck has quit IRC | 08:33 | |
*** arne_wiebalck has joined #openstack-manila | 08:35 | |
*** baojg has joined #openstack-manila | 09:53 | |
*** AnaghaR has joined #openstack-manila | 10:08 | |
AnaghaR | Hi, I am working on one of the bug i.e. "Snapshot list cannot be sorted by 'name'". I am not able to understand where the code resides. I have cloned devstack folder. Please help. | 10:15 |
carloss | Hi, AnaghaR, thanks for picking this bug up to solve it. As this is a manila specific bug, you'll need to clone the openstack/manila folder - you can see it in this link: https://github.com/openstack/manila. | 11:13 |
carloss | The place where manila is currently getting the sort parameter is here: https://github.com/openstack/manila/blob/master/manila/api/v1/share_snapshots.py#L88 ... You can take a look in the function that is getting the snapshots and adding the sort_key to it. | 11:13 |
carloss | As mentioned in the bug comments, manila successfully filters snapshots when 'display_name' is specified instead of 'name', but as folks just mentioned, 'display_name' is a server side field name. | 11:22 |
carloss | One of the ways to solve this would be to check if the value that is being specified is 'name' and internally change it to 'display_name', so this bug would be solved and the user wouldn't need to specify the "server-side" attribute | 11:22 |
*** raildo has joined #openstack-manila | 11:44 | |
*** AnaghaR has quit IRC | 11:47 | |
*** AnaghaR has joined #openstack-manila | 11:47 | |
AnaghaR | carloss: Thanks for the steps. Even I was thinking of following the same steps. | 11:50 |
carloss | yw AnaghaR :) | 11:51 |
openstackgerrit | Takashi Kajinami proposed openstack/puppet-manila stable/ussuri: Add CentOS8 to nodesets https://review.opendev.org/748187 | 12:21 |
*** _erlon_ has joined #openstack-manila | 12:22 | |
openstackgerrit | Lee Yarwood proposed openstack/devstack-plugin-ceph master: zuul: Add devstack-plugin-ceph-compute-qcow2 job https://review.opendev.org/748212 | 12:33 |
*** AnaghaR has quit IRC | 12:38 | |
openstackgerrit | Lee Yarwood proposed openstack/devstack-plugin-ceph master: zuul: Add devstack-plugin-ceph-compute-qcow2 job https://review.opendev.org/748212 | 12:50 |
vkmc | carloss++ | 12:53 |
openstackgerrit | Lee Yarwood proposed openstack/devstack-plugin-ceph master: zuul: Add devstack-plugin-ceph-compute-qcow2 job https://review.opendev.org/748212 | 13:12 |
openstackgerrit | Merged openstack/puppet-manila stable/ussuri: Add CentOS8 to nodesets https://review.opendev.org/748187 | 13:48 |
*** andrebeltrami has joined #openstack-manila | 13:56 | |
openstackgerrit | Eric Harney proposed openstack/devstack-plugin-ceph master: DNM: Octopus test run https://review.opendev.org/748245 | 14:25 |
*** lpetrut has joined #openstack-manila | 14:46 | |
*** tkajinam has quit IRC | 14:57 | |
*** lpetrut has quit IRC | 14:58 | |
*** AnaghaR has joined #openstack-manila | 16:11 | |
*** oneswig has joined #openstack-manila | 16:43 | |
*** lpetrut has joined #openstack-manila | 16:49 | |
*** lpetrut has quit IRC | 16:49 | |
oneswig | Hi all - is there any support for DHSS share servers exporting SMB/CIFS instead of NFS? I haven't seen anything but wanted to check | 16:50 |
*** oneswig has quit IRC | 17:00 | |
AnaghaR | Hi, I have clone the manila from https://github.com/openstack/manila. I have also used the command "tox -epy36" for unit testing. I got following msg: py36: commands succeeded congratulations :) | 17:10 |
AnaghaR | Need help to start the project also do we have different steps to connect to API. | 17:12 |
*** jv_ has quit IRC | 17:13 | |
*** ganso has quit IRC | 17:21 | |
*** ganso has joined #openstack-manila | 17:27 | |
vkmc | AnaghaR, hey | 17:47 |
vkmc | AnaghaR, you didn't need to clone the repo if you had devstack | 17:47 |
vkmc | AnaghaR, devstack place all the repos under /opt/stack/, manila is on /opt/stack/manila | 17:48 |
AnaghaR | vkmc: ok. | 17:48 |
AnaghaR | So if I make changes in the /opt/stack/manila I will be able to see the changes in devstack folder? | 17:49 |
vkmc | AnaghaR, if you make the changes in /opt/stack/manila you will be able to see the changes on your devstack deploy | 17:50 |
vkmc | devstack folder holds the code that we use to deploy openstack | 17:50 |
AnaghaR | ok | 17:50 |
vkmc | as I mentioned, devstack is a bash script that pulls from the different repos of the services that compose openstack | 17:50 |
vkmc | install that code | 17:51 |
vkmc | and then start the services | 17:51 |
vkmc | in a very minimal, to be used for development, environment | 17:51 |
AnaghaR | ok | 17:51 |
AnaghaR | vkmc: will work on it. Thank you. | 17:52 |
vkmc | AnaghaR, sure | 17:53 |
vkmc | precise steps you need to do are: 1. cd /opt/stack/manila 2. git checkout -b bug/1779732 3. change code to include the fix you want to include 4. run pep8 (tox -e pep8) 5. run unit tests (tox -e py36) 6. commit change (git commit -a) 7. submit for review (git review -d) | 17:55 |
vkmc | AnaghaR, ^ | 17:55 |
vkmc | AnaghaR, if you manually want to test the change you made | 17:55 |
vkmc | after step 3. | 17:55 |
*** vhari has quit IRC | 17:56 | |
vkmc | 1. install code with change in place (pip install -e .) 2. run manila snapshot command with specific param to see that bug is fixed | 17:56 |
AnaghaR | vkmc: ok | 17:56 |
*** AnaghaR has quit IRC | 17:57 | |
*** baojg has quit IRC | 18:52 | |
*** baojg has joined #openstack-manila | 18:53 | |
*** vhari has joined #openstack-manila | 19:03 | |
*** vhari has quit IRC | 19:09 | |
*** vhari has joined #openstack-manila | 19:11 | |
*** vhari has quit IRC | 19:13 | |
*** vhari has joined #openstack-manila | 19:14 | |
*** tosky has quit IRC | 19:38 | |
*** vishalmanchanda has quit IRC | 20:37 | |
*** ganso has quit IRC | 21:40 | |
*** ganso has joined #openstack-manila | 21:43 | |
*** ganso has quit IRC | 21:52 | |
*** ganso has joined #openstack-manila | 21:53 | |
*** raildo_ has joined #openstack-manila | 22:01 | |
*** raildo has quit IRC | 22:04 | |
*** tkajinam has joined #openstack-manila | 23:01 | |
*** baojg has quit IRC | 23:21 | |
*** baojg has joined #openstack-manila | 23:21 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!