*** salv-orlando has joined #openstack-sdks | 00:09 | |
*** yuanying has joined #openstack-sdks | 00:10 | |
*** salv-orlando has quit IRC | 00:14 | |
*** reedip__ has joined #openstack-sdks | 00:20 | |
*** purplerbot has quit IRC | 00:24 | |
*** purplerbot has joined #openstack-sdks | 00:24 | |
*** knikolla has quit IRC | 00:37 | |
*** knikolla_ has joined #openstack-sdks | 00:39 | |
*** knikolla_ has quit IRC | 00:41 | |
*** Qiming has quit IRC | 00:58 | |
openstackgerrit | James Benson proposed openstack/python-openstackclient: Updated the man pages of service delete https://review.openstack.org/303542 | 01:05 |
---|---|---|
*** tangchen has joined #openstack-sdks | 01:09 | |
tangchen | stevemar: Hi Steve, please help to review this patch if you have time. https://review.openstack.org/#/c/297063/ Thx. | 01:10 |
stevemar | hey tangchen | 01:10 |
stevemar | sure | 01:10 |
tangchen | Thx :) | 01:10 |
stevemar | tangchen: beautiful! | 01:11 |
tangchen | stevemar: Thank you very much. :) | 01:12 |
*** thrash is now known as thrash|g0ne | 01:15 | |
*** fzdarsky_ has joined #openstack-sdks | 01:33 | |
*** fzdarsky has quit IRC | 01:36 | |
reedip | stevemar: there? | 01:38 |
*** lhcheng has quit IRC | 01:38 | |
reedip | tangchen : ?? | 01:38 |
*** salv-orlando has joined #openstack-sdks | 01:39 | |
*** knikolla has joined #openstack-sdks | 01:39 | |
*** salv-orlando has quit IRC | 01:41 | |
*** tangchen has quit IRC | 01:42 | |
*** tangchen_ has joined #openstack-sdks | 01:42 | |
tangchen_ | reedip: Hi, I'm here. | 01:42 |
tangchen_ | reedip: I got offline just now. | 01:42 |
openstackgerrit | James Benson proposed openstack/python-openstackclient: Updated the man pages of service delete https://review.openstack.org/303542 | 01:43 |
stevemar | reedip: i'm sorta around :) | 01:43 |
reedip | lol ... | 01:44 |
reedip | review requested for https://review.openstack.org/#/c/303212/ and https://review.openstack.org/300305 ( stevemar: I know thgey are ugly, I am not as talented as tangchen :) ) | 01:45 |
*** reedip__ has quit IRC | 01:45 | |
stevemar | reedip: none of us are as talented as tangchen_ | 01:45 |
stevemar | reedip: i'm pretty sure tangchen_ is a robot | 01:45 |
*** reedip__ has joined #openstack-sdks | 01:45 | |
reedip | tangchen_ : Ex Machina??? | 01:46 |
reedip | Reminds me of https://en.wikipedia.org/wiki/Turing_test | 01:46 |
tangchen_ | stevemar, reedip: haha, I'm a Virgo......:) | 01:49 |
tangchen_ | Looking at them. | 01:49 |
reedip | tnagchen_ thanks ... :) | 01:50 |
*** salv-orlando has joined #openstack-sdks | 01:50 | |
reedip | tangchen* | 01:50 |
*** salv-orlando has quit IRC | 01:57 | |
*** yanyanhu has joined #openstack-sdks | 01:58 | |
*** Qiming has joined #openstack-sdks | 01:58 | |
*** yanyanhu has quit IRC | 01:59 | |
*** yanyanhu has joined #openstack-sdks | 02:00 | |
*** yanyanhu has quit IRC | 02:01 | |
*** yanyanhu has joined #openstack-sdks | 02:02 | |
*** yanyanhu has quit IRC | 02:03 | |
*** yanyanhu has joined #openstack-sdks | 02:04 | |
openstackgerrit | Merged openstack/python-openstackclient: Add --address-scope option "subnet pool create/set" https://review.openstack.org/297063 | 02:06 |
tangchen_ | reedip: About these two patches, I think it is a behavior problem. I thought "set" means change it. But you idea is also reasonable because most of the time, users may just want to append something to a property.' | 02:16 |
reedip | tangchen_ you are correct. Set means to change | 02:16 |
reedip | but change can be append or overwrite | 02:16 |
reedip | the following patches target append | 02:16 |
reedip | this does the overwrite :) https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options | 02:16 |
*** khmcgill has joined #openstack-sdks | 02:17 | |
reedip | I will start it tomorrow | 02:17 |
tangchen_ | reedip: OK, I'm OK with the idea. :) | 02:17 |
tangchen_ | reedip: Will review the patches today. :) | 02:17 |
reedip | sure thanks :) | 02:17 |
khmcgill | Hey all, having issues getting a connection using v3 connection. v2 works fine. Getting 'HttpException: KS-B7349D8 Expecting to find domain in project. The server could not comply with the request since it is either malformed or otherwise incorrect. The client is assumed to be in error.' | 02:27 |
*** lhcheng has joined #openstack-sdks | 02:29 | |
khmcgill | when calling 'connection.Connection(auth_url=“host:port/v3”, project_name="admin", domain="default", username=“user”, password=“pw”, verify=False)' | 02:30 |
khmcgill | but...when I change domain="default" to domain_id="default",...I get "SDKException: Cannot authorize API client." | 02:31 |
khmcgill | Any ideas,..I've wasted all day on this. | 02:31 |
Qiming | khmcgill, project_name is not globally unique | 02:32 |
Qiming | no one can gurantee that | 02:32 |
Qiming | so there are two alternatives | 02:32 |
Qiming | 1. use project_id instead of project_name | 02:33 |
Qiming | 2. add project_domain_name or project_domain_id to the request | 02:33 |
Qiming | connection.Connection(auth_url=“host:port/v3”, project_name="admin", project_domain_name="default", username="user", password="pw") | 02:34 |
khmcgill | interesting, i'll give it a shot. | 02:35 |
*** erlon has quit IRC | 02:37 | |
*** amotoki has quit IRC | 02:38 | |
khmcgill | doh! works with project_domain_name="default" added | 02:39 |
khmcgill | Thanks Qiming | 02:40 |
*** yuanying has quit IRC | 02:54 | |
*** yanyanhu has quit IRC | 03:12 | |
*** yanyanhu has joined #openstack-sdks | 03:13 | |
*** lhcheng has quit IRC | 03:16 | |
*** khmcgill has quit IRC | 03:32 | |
*** yuanying has joined #openstack-sdks | 03:47 | |
*** amotoki has joined #openstack-sdks | 03:51 | |
*** RuiChen has joined #openstack-sdks | 03:55 | |
*** nikhil_k has joined #openstack-sdks | 03:56 | |
*** jamielennox is now known as jamielennox|away | 03:58 | |
*** nikhil has quit IRC | 04:00 | |
*** jamielennox|away is now known as jamielennox | 04:06 | |
*** yarkot_ has joined #openstack-sdks | 04:10 | |
*** lhcheng has joined #openstack-sdks | 04:11 | |
*** salv-orlando has joined #openstack-sdks | 04:46 | |
*** dfflanders has joined #openstack-sdks | 04:50 | |
*** salv-orlando has quit IRC | 04:54 | |
*** amotoki_ has joined #openstack-sdks | 05:02 | |
*** amotoki has quit IRC | 05:06 | |
stevemar | reedip: whats up with https://review.openstack.org/#/c/300305/4/openstackclient/network/v2/port.py ? looks like rtheis has comments | 05:54 |
reedip | ohh, I thought I sent the new patch | 05:55 |
reedip | will release the new PS for 300305 today | 05:56 |
reedip | thanks stevemar for the reminder | 05:56 |
stevemar | reedip: np, i was just confused :) | 05:59 |
stevemar | reedip: send me a msg when the new revision is up | 05:59 |
reedip | yes | 06:00 |
reedip | I will | 06:00 |
*** jaosorior has joined #openstack-sdks | 06:14 | |
*** salv-orlando has joined #openstack-sdks | 06:24 | |
*** salv-orlando has quit IRC | 06:30 | |
openstackgerrit | Tang Chen proposed openstack/python-openstacksdk: Trivial: Fix typo in update_port() comment https://review.openstack.org/304977 | 06:33 |
reedip | tangchen_, stevemar, rtheis: https://etherpad.openstack.org/p/newton-neutron-future-neutron-client | 06:41 |
reedip | maybe this etherpad could be of some importance for Newton ^^^ | 06:41 |
*** tangchen_ has quit IRC | 06:47 | |
*** tangchen has joined #openstack-sdks | 06:47 | |
tangchen | reedip: Thanks for the info. Will look at it. | 06:48 |
*** salv-orlando has joined #openstack-sdks | 06:51 | |
*** salv-orlando has quit IRC | 06:55 | |
*** Kevin_Zheng has quit IRC | 07:02 | |
*** Kevin_Zheng has joined #openstack-sdks | 07:02 | |
*** fzdarsky_ has quit IRC | 07:04 | |
*** fzdarsky_ has joined #openstack-sdks | 07:04 | |
*** fzdarsky_ is now known as fzdarsky | 07:04 | |
*** lucas-brno is now known as lucasagomes | 07:14 | |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: [WIP] Split network v2 and compute network doc https://review.openstack.org/305005 | 07:24 |
*** lhcheng has quit IRC | 07:39 | |
*** yarkot_ has quit IRC | 07:42 | |
*** jaosorior has quit IRC | 07:48 | |
*** jaosorior has joined #openstack-sdks | 07:48 | |
*** dfflanders has quit IRC | 07:56 | |
*** salv-orlando has joined #openstack-sdks | 08:12 | |
*** dfflanders has joined #openstack-sdks | 08:13 | |
*** salv-orlando has quit IRC | 08:17 | |
openstackgerrit | Merged openstack/python-openstacksdk: Trivial: Fix typo in update_port() comment https://review.openstack.org/304977 | 08:19 |
*** amotoki_ has quit IRC | 08:23 | |
*** salv-orlando has joined #openstack-sdks | 08:24 | |
*** salv-orlando has quit IRC | 08:28 | |
openstackgerrit | Merged openstack/python-openstackclient: Fix SSL/TLS verification for network commands https://review.openstack.org/303472 | 08:31 |
*** subscope has joined #openstack-sdks | 08:34 | |
*** kromanenko has joined #openstack-sdks | 08:36 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient: Append existing information during port set https://review.openstack.org/300305 | 08:46 |
openstackgerrit | Reedip proposed openstack/python-openstackclient: Add option to unset information from ports https://review.openstack.org/302530 | 08:52 |
*** e0ne has joined #openstack-sdks | 08:53 | |
*** cdent has joined #openstack-sdks | 09:03 | |
*** cdent has quit IRC | 09:18 | |
*** subscope has quit IRC | 09:39 | |
*** jamespd_ has joined #openstack-sdks | 09:43 | |
*** chlong has quit IRC | 09:47 | |
*** jamespd has quit IRC | 09:47 | |
*** cdent has joined #openstack-sdks | 09:48 | |
*** lucasagomes is now known as lucas-hungry | 09:51 | |
*** chlong has joined #openstack-sdks | 09:54 | |
*** jamie_h has joined #openstack-sdks | 09:59 | |
*** jamie_h has quit IRC | 10:01 | |
*** jamie_h has joined #openstack-sdks | 10:01 | |
*** RuiChen has quit IRC | 10:03 | |
*** RuiChen has joined #openstack-sdks | 10:04 | |
*** sdague has joined #openstack-sdks | 10:04 | |
*** yanyanhu has quit IRC | 10:11 | |
*** Qiming has quit IRC | 10:20 | |
*** amotoki has joined #openstack-sdks | 10:22 | |
*** nikhil has joined #openstack-sdks | 10:30 | |
*** nikhil_k has quit IRC | 10:32 | |
*** openstackstatus has quit IRC | 10:32 | |
*** dims has quit IRC | 10:33 | |
*** openstack has joined #openstack-sdks | 11:33 | |
*** _RuiChen has joined #openstack-sdks | 11:34 | |
*** salv-orl_ has joined #openstack-sdks | 11:34 | |
*** openstackgerrit has quit IRC | 11:35 | |
*** alex_xu has quit IRC | 11:35 | |
*** amotoki has quit IRC | 11:36 | |
*** salv-orlando has quit IRC | 11:36 | |
*** bapalm has quit IRC | 11:36 | |
*** bnemec has quit IRC | 11:36 | |
*** kuzko_ has joined #openstack-sdks | 11:36 | |
*** sdague has quit IRC | 11:37 | |
*** RuiChen has quit IRC | 11:37 | |
*** christi3k has quit IRC | 11:37 | |
*** GreenBlood has quit IRC | 11:37 | |
*** kuzko has quit IRC | 11:37 | |
*** GrineBloude has joined #openstack-sdks | 11:37 | |
*** bnemec has joined #openstack-sdks | 11:38 | |
*** bapalm has joined #openstack-sdks | 11:41 | |
*** christi3k has joined #openstack-sdks | 11:42 | |
*** amotoki has joined #openstack-sdks | 11:42 | |
*** alex_xu has joined #openstack-sdks | 11:42 | |
*** Qiming has joined #openstack-sdks | 11:47 | |
*** erlon has joined #openstack-sdks | 11:51 | |
*** openstackgerrit has joined #openstack-sdks | 11:51 | |
*** sdague has joined #openstack-sdks | 11:51 | |
*** sheel has joined #openstack-sdks | 11:57 | |
*** amotoki has quit IRC | 12:08 | |
openstackgerrit | Kyrylo Romanenko proposed openstack/python-openstackclient: Update tests for server https://review.openstack.org/293636 | 12:17 |
*** e0ne has joined #openstack-sdks | 12:38 | |
*** dfflanders has quit IRC | 12:45 | |
*** amotoki has joined #openstack-sdks | 13:00 | |
openstackgerrit | Merged openstack/os-client-config: Add version string https://review.openstack.org/303913 | 13:02 |
*** gouthamr has joined #openstack-sdks | 13:03 | |
*** jaypipes has quit IRC | 13:07 | |
*** amotoki has quit IRC | 13:07 | |
*** ryansb_ has joined #openstack-sdks | 13:37 | |
*** ryansb_ has quit IRC | 13:37 | |
*** ryansb_ has joined #openstack-sdks | 13:37 | |
*** dims_ has joined #openstack-sdks | 13:43 | |
*** fzdarsky has quit IRC | 13:43 | |
*** dims has quit IRC | 13:43 | |
*** ryansb has quit IRC | 13:43 | |
*** rbradfor has quit IRC | 13:43 | |
*** gmann has quit IRC | 13:43 | |
*** _tutima has quit IRC | 13:43 | |
*** ryansb_ is now known as ryansb | 13:43 | |
*** rbradfor has joined #openstack-sdks | 13:44 | |
*** _tutima_ has joined #openstack-sdks | 13:47 | |
*** fzdarsky has joined #openstack-sdks | 13:49 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 13:51 | |
*** gmann has joined #openstack-sdks | 13:52 | |
*** gmann has quit IRC | 14:02 | |
*** _tutima_ is now known as _tutima | 14:02 | |
*** singhj has joined #openstack-sdks | 14:02 | |
*** gmann has joined #openstack-sdks | 14:07 | |
*** reedip__ has quit IRC | 14:09 | |
*** sheel has quit IRC | 14:17 | |
*** jaosorior has quit IRC | 14:21 | |
*** singhj has quit IRC | 14:23 | |
openstackgerrit | Steve Martinelli proposed openstack/python-openstackclient: Update tests for server https://review.openstack.org/293636 | 14:25 |
*** singhj has joined #openstack-sdks | 14:32 | |
*** rbradfor has quit IRC | 14:38 | |
*** dims_ has quit IRC | 14:38 | |
*** dims has joined #openstack-sdks | 14:41 | |
*** rbradfor has joined #openstack-sdks | 14:43 | |
*** sheel has joined #openstack-sdks | 14:43 | |
*** yarkot_ has joined #openstack-sdks | 14:45 | |
*** erlon has quit IRC | 14:47 | |
*** singhj has quit IRC | 14:58 | |
*** jaypipes has joined #openstack-sdks | 15:06 | |
*** alex_xu has quit IRC | 15:07 | |
*** alex_xu has joined #openstack-sdks | 15:11 | |
*** singhj has joined #openstack-sdks | 15:14 | |
*** e0ne has quit IRC | 15:17 | |
*** nikhil has quit IRC | 15:18 | |
openstackgerrit | Navid Pustchi proposed openstack/keystoneauth: Removing tox ignore D401 and make it compliant https://review.openstack.org/304843 | 15:26 |
*** singhj has quit IRC | 15:27 | |
openstackgerrit | Merged openstack/python-openstackclient: Updated from global requirements https://review.openstack.org/305230 | 15:27 |
*** Qiming has quit IRC | 15:28 | |
*** nikhil has joined #openstack-sdks | 15:28 | |
*** rtheis_ has joined #openstack-sdks | 15:37 | |
*** nikhil has quit IRC | 15:38 | |
*** yarkot_ has quit IRC | 15:38 | |
*** nikhil has joined #openstack-sdks | 15:38 | |
*** openstack has joined #openstack-sdks | 16:10 | |
*** RuiChen has joined #openstack-sdks | 16:11 | |
openstackgerrit | Kyrylo Romanenko proposed openstack/python-openstackclient: Use CommandFailed exception from tempest_lib https://review.openstack.org/305383 | 16:13 |
*** _RuiChen has quit IRC | 16:14 | |
*** jamie_h has quit IRC | 16:26 | |
*** ankur-gu_ has joined #openstack-sdks | 16:30 | |
openstackgerrit | Navid Pustchi proposed openstack/keystoneauth: Removing tox ignore D401 and make it compliant https://review.openstack.org/304843 | 16:31 |
*** lhcheng has joined #openstack-sdks | 16:46 | |
*** lhcheng has quit IRC | 16:46 | |
*** lhcheng has joined #openstack-sdks | 16:47 | |
*** salv-orl_ has quit IRC | 16:54 | |
*** amotoki has quit IRC | 16:54 | |
*** salv-orlando has joined #openstack-sdks | 16:55 | |
openstackgerrit | Richard Theis proposed openstack/python-openstackclient: Add options to security group rule list https://review.openstack.org/304297 | 16:56 |
*** salv-orlando has quit IRC | 16:59 | |
*** e0ne has quit IRC | 17:01 | |
*** salv-orlando has joined #openstack-sdks | 17:05 | |
*** ankur-gu_ has quit IRC | 17:09 | |
*** singhj has quit IRC | 17:18 | |
*** ankur-gu_ has joined #openstack-sdks | 17:25 | |
*** e0ne has joined #openstack-sdks | 17:43 | |
*** e0ne has quit IRC | 17:45 | |
*** e0ne has joined #openstack-sdks | 17:45 | |
*** cdent has quit IRC | 17:45 | |
*** ankur-gu_ has quit IRC | 17:45 | |
*** cdent has joined #openstack-sdks | 17:46 | |
*** kromanenko has quit IRC | 17:46 | |
*** sheel has quit IRC | 17:54 | |
*** cdent has quit IRC | 18:06 | |
openstackgerrit | Cedric Brandily proposed openstack/python-openstacksdk: Don't hide cacert when insecure == False https://review.openstack.org/304842 | 18:09 |
briancurtin | rtheis_: fyi, release is ready: https://pypi.python.org/pypi/openstacksdk/0.8.5 | 18:10 |
rtheis_ | Thank you briancurtin | 18:10 |
openstackgerrit | Cedric Brandily proposed openstack/python-openstackclient: Fix client certificate/key support for Network v2 commands https://review.openstack.org/304826 | 18:16 |
openstackgerrit | Cedric Brandily proposed openstack/python-openstackclient: Fix client certificate/key support for Network v2 commands https://review.openstack.org/304826 | 18:18 |
*** singhj has joined #openstack-sdks | 18:35 | |
*** rtheis has joined #openstack-sdks | 18:37 | |
*** dgonzalez has quit IRC | 18:37 | |
*** Kevin_Zheng has quit IRC | 18:37 | |
*** hogepodge has quit IRC | 18:38 | |
*** lucas-brno has quit IRC | 18:38 | |
*** charz has quit IRC | 18:38 | |
*** bapalm has quit IRC | 18:39 | |
*** GrineBloude has quit IRC | 18:39 | |
*** thrash has quit IRC | 18:39 | |
*** hockeynut has quit IRC | 18:39 | |
*** rtheis_ has quit IRC | 18:39 | |
*** openstackgerrit has quit IRC | 18:39 | |
*** GreenBlood has joined #openstack-sdks | 18:40 | |
*** tangchen has quit IRC | 18:41 | |
*** tangchen has joined #openstack-sdks | 18:41 | |
*** DuncanT has quit IRC | 18:41 | |
*** erlon has quit IRC | 18:41 | |
*** meteorfox has quit IRC | 18:41 | |
*** salv-orlando has quit IRC | 18:43 | |
*** bapalm has joined #openstack-sdks | 18:44 | |
*** dgonzalez has joined #openstack-sdks | 18:44 | |
*** hockeynut has joined #openstack-sdks | 18:44 | |
*** thrash has joined #openstack-sdks | 18:45 | |
*** thrash has quit IRC | 18:45 | |
*** thrash has joined #openstack-sdks | 18:45 | |
*** charz has joined #openstack-sdks | 18:45 | |
*** erlon has joined #openstack-sdks | 18:46 | |
*** lucasagomes has joined #openstack-sdks | 18:48 | |
*** Kevin_Zheng has joined #openstack-sdks | 18:51 | |
*** amotoki has joined #openstack-sdks | 18:55 | |
*** openstackgerrit has joined #openstack-sdks | 18:55 | |
*** amotoki has quit IRC | 19:00 | |
*** DuncanT has joined #openstack-sdks | 19:04 | |
*** meteorfox has joined #openstack-sdks | 19:06 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: [WIP] Refactor compute for new resource/proxy https://review.openstack.org/298900 | 19:07 |
*** e0ne has quit IRC | 19:07 | |
*** lhcheng has quit IRC | 19:16 | |
*** lhcheng has joined #openstack-sdks | 19:18 | |
*** lhcheng has quit IRC | 19:22 | |
*** e0ne has joined #openstack-sdks | 19:24 | |
*** salv-orlando has joined #openstack-sdks | 19:26 | |
*** cdent has joined #openstack-sdks | 19:28 | |
*** e0ne has quit IRC | 19:38 | |
*** sdague_ is now known as sdague | 19:42 | |
*** hogepodge has joined #openstack-sdks | 19:46 | |
*** gouthamr_ has joined #openstack-sdks | 19:46 | |
*** HenryG_ has joined #openstack-sdks | 19:46 | |
stevemar | rtheis: nice job on the /beta/ commands | 19:47 |
stevemar | i like it | 19:47 |
rtheis | stevemar: thank you | 19:47 |
*** lucasagomes has quit IRC | 19:48 | |
*** dgonzalez has quit IRC | 19:48 | |
*** tangchen has quit IRC | 19:48 | |
*** GreenBlood has quit IRC | 19:48 | |
*** gouthamr has quit IRC | 19:48 | |
*** markvoelker has quit IRC | 19:48 | |
*** david-lyle has quit IRC | 19:48 | |
*** baffle has quit IRC | 19:48 | |
*** redrobot has quit IRC | 19:48 | |
*** keekz has quit IRC | 19:48 | |
*** mordred has quit IRC | 19:48 | |
*** HenryG has quit IRC | 19:48 | |
*** HenryG_ is now known as HenryG | 19:49 | |
*** baffle_ has joined #openstack-sdks | 19:53 | |
*** gouthamr_ is now known as gouthame | 19:54 | |
*** gouthame is now known as gouthamr_ | 19:55 | |
*** singhj has quit IRC | 19:56 | |
*** amotoki has joined #openstack-sdks | 19:56 | |
*** gouthamr_ is now known as gouthamr | 19:56 | |
*** lucasagomes has joined #openstack-sdks | 19:58 | |
*** dgonzalez has joined #openstack-sdks | 19:58 | |
*** tangchen has joined #openstack-sdks | 19:58 | |
*** GreenBlood has joined #openstack-sdks | 19:58 | |
*** markvoelker has joined #openstack-sdks | 19:58 | |
*** david-lyle has joined #openstack-sdks | 19:58 | |
*** baffle has joined #openstack-sdks | 19:58 | |
*** redrobot has joined #openstack-sdks | 19:58 | |
*** keekz has joined #openstack-sdks | 19:58 | |
*** mordred has joined #openstack-sdks | 19:58 | |
*** singhj has joined #openstack-sdks | 20:00 | |
*** tangchen_ has joined #openstack-sdks | 20:00 | |
*** amotoki has quit IRC | 20:01 | |
*** dgonzalez_ has joined #openstack-sdks | 20:02 | |
*** lucasagomes has quit IRC | 20:04 | |
*** dgonzalez has quit IRC | 20:04 | |
*** tangchen has quit IRC | 20:04 | |
*** GreenBlood has quit IRC | 20:04 | |
*** markvoelker has quit IRC | 20:04 | |
*** david-lyle has quit IRC | 20:04 | |
*** baffle has quit IRC | 20:04 | |
*** redrobot has quit IRC | 20:04 | |
*** keekz has quit IRC | 20:04 | |
*** mordred has quit IRC | 20:04 | |
*** dgonzalez_ is now known as dgonzalez | 20:04 | |
*** david-lyle has joined #openstack-sdks | 20:05 | |
*** lucasagomes has joined #openstack-sdks | 20:11 | |
*** GreenBlood has joined #openstack-sdks | 20:11 | |
*** markvoelker has joined #openstack-sdks | 20:11 | |
*** redrobot has joined #openstack-sdks | 20:11 | |
*** keekz has joined #openstack-sdks | 20:11 | |
*** mordred has joined #openstack-sdks | 20:11 | |
*** GreenBlood has quit IRC | 20:12 | |
*** keekz has quit IRC | 20:12 | |
*** mordred has quit IRC | 20:12 | |
*** GreenBlood has joined #openstack-sdks | 20:12 | |
*** markvoelker_ has joined #openstack-sdks | 20:14 | |
*** lucasagomes has quit IRC | 20:15 | |
*** markvoelker has quit IRC | 20:15 | |
*** redrobot has quit IRC | 20:15 | |
*** keekz has joined #openstack-sdks | 20:20 | |
*** lucasagomes has joined #openstack-sdks | 20:21 | |
*** redrobot has joined #openstack-sdks | 20:23 | |
*** redrobot is now known as Guest78786 | 20:24 | |
*** mordred has joined #openstack-sdks | 20:24 | |
*** singhj has quit IRC | 20:24 | |
*** krotscheck is now known as krotscheck_dcm | 20:36 | |
*** gouthamr_ has joined #openstack-sdks | 20:37 | |
*** singhj has joined #openstack-sdks | 20:39 | |
*** timburke_ has joined #openstack-sdks | 20:40 | |
*** markvoelker has joined #openstack-sdks | 20:42 | |
*** jamespd has joined #openstack-sdks | 20:42 | |
*** Guest78786 is now known as redrobot | 20:43 | |
*** singhj has quit IRC | 20:44 | |
*** lbragstad_ has joined #openstack-sdks | 20:44 | |
*** markvoelker_ has quit IRC | 20:47 | |
*** gouthamr has quit IRC | 20:47 | |
*** thrash has quit IRC | 20:47 | |
*** jamespd_ has quit IRC | 20:47 | |
*** lbragstad has quit IRC | 20:47 | |
*** timburke has quit IRC | 20:47 | |
*** dfflanders has joined #openstack-sdks | 20:48 | |
*** thrash has joined #openstack-sdks | 20:52 | |
*** thrash has quit IRC | 20:52 | |
*** thrash has joined #openstack-sdks | 20:52 | |
*** singhj has joined #openstack-sdks | 20:53 | |
*** manjeets has joined #openstack-sdks | 20:57 | |
*** cdent has quit IRC | 21:02 | |
*** gouthamr_ has quit IRC | 21:07 | |
manjeets | in sdk dtroyer what is diff between allow_retrieve and allow_list ? | 21:10 |
manjeets | in my case i need a feature that just does list and show | 21:11 |
briancurtin | manjeets: what does “show” mean? | 21:11 |
manjeets | should i set allow_retreive = true ? | 21:11 |
briancurtin | allow_retrieve is for a GET of a single thing | 21:11 |
manjeets | ok | 21:11 |
briancurtin | allow_list is for a GET that’ll retrieve multiple things | 21:11 |
manjeets | so basically its for show ? | 21:11 |
briancurtin | what is show? | 21:11 |
manjeets | show will be getting one item of that list | 21:12 |
briancurtin | sure, then yes | 21:12 |
manjeets | thanks briancurtin | 21:12 |
briancurtin | manjeets: can i ask where this is coming up? | 21:12 |
manjeets | i wrote a neutron client few months back for network availability need to do that for osc as well | 21:13 |
manjeets | basically this change https://review.openstack.org/#/c/269926/ | 21:13 |
*** rtheis has quit IRC | 21:15 | |
*** singhj has quit IRC | 21:16 | |
*** singhj has joined #openstack-sdks | 21:17 | |
dtroyer | briancurtin: 'show' is OSC's CLI-level action to GET a single thing ;) | 21:20 |
*** lbragstad_ is now known as lbragstad | 21:21 | |
openstackgerrit | Merged openstack/python-openstackclient: Doc: Unify repeatable option comments https://review.openstack.org/304512 | 21:22 |
*** lhcheng has joined #openstack-sdks | 21:31 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 21:32 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 21:32 | |
*** dgonzalez has quit IRC | 21:35 | |
*** gouthamr has joined #openstack-sdks | 21:36 | |
*** dfflanders has quit IRC | 21:41 | |
*** dgonzalez has joined #openstack-sdks | 21:45 | |
*** timburke_ is now known as timburke | 21:48 | |
*** gouthamr_ has joined #openstack-sdks | 21:54 | |
*** gouthamr has quit IRC | 21:55 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 22:02 | |
*** gouthamr_ is now known as gouthamr | 22:14 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/python-openstacksdk: WIP: Add sdk for network ip availability https://review.openstack.org/305509 | 22:14 |
*** dfflanders has joined #openstack-sdks | 22:17 | |
*** singhj has quit IRC | 22:54 | |
*** reedip__ has joined #openstack-sdks | 22:59 | |
*** singhj has joined #openstack-sdks | 23:05 | |
*** gouthamr has quit IRC | 23:07 | |
*** singhj has quit IRC | 23:09 | |
*** sdague has quit IRC | 23:25 | |
*** Qiming has joined #openstack-sdks | 23:37 | |
*** salv-orlando has quit IRC | 23:42 | |
*** amotoki has joined #openstack-sdks | 23:58 | |
*** thrash is now known as thrash|g0ne | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!