*** btully has joined #openstack-glance | 00:06 | |
*** btully has quit IRC | 00:12 | |
*** TravT_ has joined #openstack-glance | 00:19 | |
*** TravT has quit IRC | 00:22 | |
*** rrecio has joined #openstack-glance | 00:32 | |
*** rrecio_ has quit IRC | 00:32 | |
openstackgerrit | Jin Li proposed openstack/glance-specs: change the example URLs in narrative-style API docs for glance-specs https://review.openstack.org/353787 | 00:35 |
---|---|---|
*** rrecio has quit IRC | 00:35 | |
*** rrecio has joined #openstack-glance | 00:38 | |
*** rrecio_ has joined #openstack-glance | 00:40 | |
*** stewie925 has joined #openstack-glance | 00:41 | |
stewie925 | hello glance folks | 00:41 |
stewie925 | can I do a "--debug" in glance command right? | 00:42 |
stewie925 | like "glance --debug image-list" | 00:42 |
*** rrecio has quit IRC | 00:43 | |
openstackgerrit | Timothy Symanczyk proposed openstack/glance: WIP Utilize the new 'shared' visibility value https://review.openstack.org/357530 | 00:45 |
tsymanczyk | stewie925 : tried it and it works for me. what are you seeing? | 00:46 |
*** sdake has quit IRC | 00:46 | |
stewie925 | tsymanczyk: it didnt work for me :( | 00:47 |
stewie925 | glance --debug image-list command is immediately followed by the image list | 00:47 |
tsymanczyk | timothy_symanczyk@devstack:/opt/stack/glance$ glance --debug image-list | 00:47 |
tsymanczyk | DEBUG:keystoneclient.session:REQ: curl -g -i -X GET http://devstack:5000/v3 -H "Accept: application/json" -H "User-Agent: python-keystoneclient" | 00:47 |
tsymanczyk | INFO:requests.packages.urllib3.connectionpool:Starting new HTTP connection (1): devstack | 00:47 |
tsymanczyk | DEBUG:requests.packages.urllib3.connectionpool:"GET /v3 HTTP/1.1" 200 256 | 00:47 |
stewie925 | was expecting some debugging output - set of CURL commands, http GET calls and such | 00:47 |
tsymanczyk | that's what i see. | 00:48 |
stewie925 | hmm I wonder why mine is not showing that | 00:48 |
stewie925 | I am using devstack | 00:48 |
stewie925 | openstack --debug and nova --debug work though | 00:48 |
tsymanczyk | me too, devstack master latest. what're you running? | 00:48 |
stewie925 | am running devstack master | 00:48 |
tsymanczyk | weird | 00:48 |
stewie925 | installed from June | 00:48 |
*** links has joined #openstack-glance | 00:49 | |
tsymanczyk | timothy_symanczyk@devstack:/opt/stack/glance$ glance --version | 00:49 |
tsymanczyk | 2.4.0 | 00:49 |
stewie925 | lemme check that | 00:49 |
stewie925 | 2.0.0 ugh | 00:49 |
stewie925 | is glance --debug a fairly new gfeature? | 00:49 |
stewie925 | feature | 00:49 |
tsymanczyk | i'm afraid i don't really know the history. | 00:50 |
tsymanczyk | lemme check git, see if it's obvious. | 00:50 |
stewie925 | its okay... I am pretty new to openstack I started in June | 00:50 |
stewie925 | ohthank you so much | 00:50 |
stewie925 | also I checked openstack --version (its 2.5.0) and nova --version (its 4.0.0) | 00:51 |
tsymanczyk | added in 2014 it looks like. | 00:53 |
tsymanczyk | weird | 00:53 |
tsymanczyk | maybe the 2.0.0 release chose not to include it for some reason. | 00:53 |
tsymanczyk | it's in the latest version of 2.0.0..... double weird. | 00:55 |
tsymanczyk | try "glance -d image-list" ? | 00:56 |
stewie925 | yeah ok let me try that | 00:56 |
stewie925 | hmm nada either | 00:56 |
stewie925 | you have a later version of glance 2.4.0 | 00:57 |
stewie925 | well, I was testing pdb (python debugger) on glance earlier, but I dont think that would affect the --debug feature though | 00:57 |
stewie925 | super strange | 00:58 |
tsymanczyk | i may have an answer for you hold on... | 00:58 |
stewie925 | tsymanczyk: appreciate it! | 00:59 |
stewie925 | in the meantime, I tried to run | 00:59 |
stewie925 | $ glance help | grep debug | 00:59 |
stewie925 | and it shows " -d, --debug Defaults to env[GLANCECLIENT_DEBUG]." | 00:59 |
*** bpokorny_ has joined #openstack-glance | 00:59 | |
stewie925 | so the feature must be there, you are right... | 00:59 |
tsymanczyk | see this is weird, the --debug flag turns on the envvar GLANCECLIENT_DEBUG | 01:00 |
tsymanczyk | in the 2.4.0 code | 01:00 |
stewie925 | and 2.0.0 probably does not? | 01:00 |
tsymanczyk | timothy_symanczyk@devstack:/usr/local/lib/python2.7/dist-packages/glanceclient$ grep -r GLANCECLIENT_DEBUG * | 01:00 |
tsymanczyk | common/utils.py: if bool(env('GLANCECLIENT_DEBUG')) is True: | 01:00 |
tsymanczyk | Binary file common/utils.pyc matches | 01:00 |
tsymanczyk | shell.py: default=bool(utils.env('GLANCECLIENT_DEBUG')), | 01:00 |
tsymanczyk | shell.py: help='Defaults to env[GLANCECLIENT_DEBUG].') | 01:00 |
tsymanczyk | Binary file shell.pyc matches | 01:00 |
tsymanczyk | Binary file tests/unit/test_shell.pyc matches | 01:00 |
tsymanczyk | tests/unit/test_shell.py: os.environ = {'GLANCECLIENT_DEBUG': '1'} | 01:00 |
tsymanczyk | timothy_symanczyk@devstack:/usr/local/lib/python2.7/dist-packages/glanceclient$ | 01:00 |
tsymanczyk | 2.0.0 code : | 01:00 |
tsymanczyk | timothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$ grep -r GLANCECLIENT_DEBUG * | 01:01 |
tsymanczyk | glanceclient/shell.py: default=bool(utils.env('GLANCECLIENT_DEBUG')), | 01:01 |
tsymanczyk | glanceclient/shell.py: help='Defaults to env[GLANCECLIENT_DEBUG].') | 01:01 |
tsymanczyk | timothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$ | 01:01 |
tsymanczyk | looks like maybe you caught a version that "has it" but it isn't plugged in anywhere? | 01:01 |
tsymanczyk | that's my guess at least. | 01:01 |
stewie925 | let me do the grep r glanceclient and compare your results | 01:01 |
stewie925 | guess what I only have two lines | 01:03 |
stewie925 | shell.py: default=bool(utils.env('GLANCECLIENT_DEBUG')), | 01:03 |
stewie925 | shell.py: help='Defaults to env[GLANCECLIENT_DEBUG].') | 01:03 |
stewie925 | that was it | 01:03 |
*** bpokorny has quit IRC | 01:03 | |
*** bpokorny_ has quit IRC | 01:04 | |
tsymanczyk | i imagine that's the reason then. can you upgrade? | 01:04 |
stewie925 | but whats strange is I also did the find on /usr/local/lib/python2.7/dist-packages/glanceclient | 01:04 |
tsymanczyk | more in there? | 01:05 |
stewie925 | oh wait I see yours | 01:05 |
stewie925 | timothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$ grep -r GLANCECLIENT_DEBUG * | 01:06 |
stewie925 | a 'tmp | 01:06 |
stewie925 | tmp prefix | 01:06 |
tsymanczyk | yeah, i didn't bother installing 2.0.0 :) | 01:06 |
stewie925 | haha, no need to :) | 01:07 |
stewie925 | well thank you tsymanczyk | 01:08 |
stewie925 | my brain is fried from all the pdb's | 01:08 |
tsymanczyk | you're welcome. | 01:08 |
stewie925 | thank you and have a good weekend | 01:08 |
tsymanczyk | indeed. have a good weekend! | 01:09 |
*** tsymanczyk has left #openstack-glance | 01:09 | |
*** stewie925 has quit IRC | 01:27 | |
*** btully has joined #openstack-glance | 01:39 | |
openstackgerrit | Merged openstack/glance: Add registry_client_opts to glance-cache.conf.sample https://review.openstack.org/352449 | 01:47 |
*** btully has quit IRC | 01:50 | |
*** btully has joined #openstack-glance | 01:53 | |
*** rrecio_ has quit IRC | 02:04 | |
*** btully has quit IRC | 02:07 | |
*** rrecio has joined #openstack-glance | 02:10 | |
*** btully has joined #openstack-glance | 02:15 | |
*** btully has quit IRC | 02:20 | |
*** rrecio has quit IRC | 02:27 | |
*** btully has joined #openstack-glance | 02:43 | |
openstackgerrit | Stephen Gordon proposed openstack/glance: Correct link to image properties https://review.openstack.org/357972 | 02:47 |
*** itisha has joined #openstack-glance | 03:09 | |
*** Jaison has joined #openstack-glance | 03:09 | |
*** links has quit IRC | 03:12 | |
*** Jaison has quit IRC | 03:13 | |
*** rrecio has joined #openstack-glance | 03:23 | |
*** rrecio has quit IRC | 03:36 | |
*** julim has quit IRC | 03:43 | |
*** prateek has joined #openstack-glance | 04:20 | |
*** atod has joined #openstack-glance | 04:25 | |
*** prateek has quit IRC | 04:36 | |
*** prateek has joined #openstack-glance | 04:37 | |
*** prateek has quit IRC | 04:48 | |
*** prateek has joined #openstack-glance | 04:50 | |
*** HenryG has quit IRC | 05:08 | |
*** HenryG has joined #openstack-glance | 05:08 | |
*** btully has quit IRC | 05:42 | |
*** btully has joined #openstack-glance | 05:52 | |
*** btully has quit IRC | 05:57 | |
*** ducttape_ has quit IRC | 06:11 | |
*** GB21 has joined #openstack-glance | 06:18 | |
*** toanster has joined #openstack-glance | 06:48 | |
*** bunting_ has joined #openstack-glance | 06:49 | |
*** Daviey_ has joined #openstack-glance | 06:50 | |
*** cjmarti has joined #openstack-glance | 06:50 | |
*** itisha_ has joined #openstack-glance | 06:50 | |
*** DuncanT_ has joined #openstack-glance | 06:51 | |
*** melwitt_ has joined #openstack-glance | 06:52 | |
*** dolphm_ has joined #openstack-glance | 06:52 | |
*** odyssey4me_ has joined #openstack-glance | 06:52 | |
*** mgagne_ has joined #openstack-glance | 06:53 | |
*** dhellmann_ has joined #openstack-glance | 06:53 | |
*** prateek has quit IRC | 06:54 | |
*** itisha has quit IRC | 06:54 | |
*** castulo has quit IRC | 06:54 | |
*** bunting has quit IRC | 06:54 | |
*** DuncanT has quit IRC | 06:54 | |
*** melwitt has quit IRC | 06:54 | |
*** dhellmann has quit IRC | 06:54 | |
*** mgagne has quit IRC | 06:54 | |
*** toan has quit IRC | 06:54 | |
*** dolphm has quit IRC | 06:54 | |
*** Daviey has quit IRC | 06:54 | |
*** odyssey4me has quit IRC | 06:54 | |
*** cjmarti is now known as castulo | 06:54 | |
*** dolphm_ is now known as dolphm | 06:54 | |
*** itisha_ is now known as itisha | 06:55 | |
*** dhellmann_ is now known as dhellmann | 06:57 | |
*** DuncanT_ is now known as DuncanT | 07:01 | |
*** prateek has joined #openstack-glance | 07:04 | |
*** itisha has quit IRC | 07:30 | |
*** rcernin has joined #openstack-glance | 07:34 | |
*** aarefiev_ has joined #openstack-glance | 07:40 | |
*** ducttape_ has joined #openstack-glance | 07:42 | |
*** aarefiev has quit IRC | 07:43 | |
*** ducttape_ has quit IRC | 07:47 | |
*** TravT has joined #openstack-glance | 07:50 | |
*** TravT_ has quit IRC | 07:52 | |
*** btully has joined #openstack-glance | 07:56 | |
*** btully has quit IRC | 08:00 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/glance: [WIP] Testing latest u-c https://review.openstack.org/318436 | 08:10 |
*** ducttape_ has joined #openstack-glance | 08:44 | |
*** ducttape_ has quit IRC | 08:49 | |
*** btully has joined #openstack-glance | 08:56 | |
*** btully has quit IRC | 09:01 | |
*** ducttape_ has joined #openstack-glance | 09:45 | |
*** ducttape_ has quit IRC | 09:49 | |
*** sdake has joined #openstack-glance | 09:51 | |
*** aswadr_ has joined #openstack-glance | 09:52 | |
*** tshefi has joined #openstack-glance | 10:15 | |
*** tshefi has quit IRC | 10:19 | |
*** flwang1 has quit IRC | 10:26 | |
*** sdake has quit IRC | 10:32 | |
*** sdake has joined #openstack-glance | 10:34 | |
*** odyssey4me_ is now known as odyssey4me | 10:46 | |
*** btully has joined #openstack-glance | 10:57 | |
*** btully has quit IRC | 11:04 | |
*** ducttape_ has joined #openstack-glance | 11:46 | |
*** prateek has quit IRC | 11:49 | |
*** ducttape_ has quit IRC | 11:51 | |
*** btully has joined #openstack-glance | 12:03 | |
*** sdake has quit IRC | 12:06 | |
*** sdake has joined #openstack-glance | 12:06 | |
*** btully has quit IRC | 12:07 | |
*** btully has joined #openstack-glance | 12:22 | |
*** MattMan has quit IRC | 12:25 | |
*** MattMan has joined #openstack-glance | 12:25 | |
*** btully has quit IRC | 12:27 | |
*** btully has joined #openstack-glance | 12:29 | |
*** btully has quit IRC | 12:34 | |
*** ducttape_ has joined #openstack-glance | 12:47 | |
*** ducttape_ has quit IRC | 12:52 | |
*** ducttape_ has joined #openstack-glance | 13:05 | |
*** aswadr_ has quit IRC | 13:21 | |
*** ducttape_ has quit IRC | 13:29 | |
*** anush_ has joined #openstack-glance | 14:00 | |
*** btully has joined #openstack-glance | 14:19 | |
*** btully has quit IRC | 14:23 | |
*** sdake_ has joined #openstack-glance | 14:27 | |
*** btully has joined #openstack-glance | 14:28 | |
*** sdake has quit IRC | 14:29 | |
*** pt_15 has joined #openstack-glance | 14:30 | |
*** btully has quit IRC | 14:33 | |
*** takedakn has joined #openstack-glance | 15:01 | |
*** takedakn has quit IRC | 15:17 | |
*** takedakn has joined #openstack-glance | 15:18 | |
*** btully has joined #openstack-glance | 15:20 | |
*** ducttape_ has joined #openstack-glance | 15:21 | |
*** btully has quit IRC | 15:25 | |
*** takedakn has quit IRC | 15:32 | |
*** ducttape_ has quit IRC | 15:34 | |
*** ducttape_ has joined #openstack-glance | 15:55 | |
*** ducttape_ has quit IRC | 16:05 | |
*** ducttape_ has joined #openstack-glance | 16:07 | |
*** chlong has quit IRC | 16:07 | |
*** ducttape_ has quit IRC | 16:11 | |
openstackgerrit | Nikhil Komawar proposed openstack/glance: Regenerate config files for Newton https://review.openstack.org/354809 | 16:20 |
*** btully has joined #openstack-glance | 16:32 | |
*** btully has quit IRC | 16:36 | |
*** ducttape_ has joined #openstack-glance | 16:43 | |
*** ducttape_ has quit IRC | 16:46 | |
*** e0ne has joined #openstack-glance | 16:57 | |
*** anush_ has quit IRC | 17:00 | |
*** btully has joined #openstack-glance | 17:01 | |
*** maestropandy has joined #openstack-glance | 17:02 | |
*** maestropandy has left #openstack-glance | 17:02 | |
*** e0ne has quit IRC | 17:08 | |
*** btully has quit IRC | 17:08 | |
*** rcernin has quit IRC | 17:10 | |
nikhil | sabari: https://review.openstack.org/#/c/358262/ and https://review.openstack.org/358263 | 17:11 |
*** btully has joined #openstack-glance | 17:16 | |
*** btully has quit IRC | 17:21 | |
*** Daviey_ is now known as Daviey | 17:26 | |
*** e0ne has joined #openstack-glance | 17:31 | |
*** sdake_ has quit IRC | 17:40 | |
*** ducttape_ has joined #openstack-glance | 17:47 | |
*** ducttape_ has quit IRC | 17:52 | |
*** e0ne has quit IRC | 17:56 | |
*** pt_15 has quit IRC | 18:06 | |
*** TravT has quit IRC | 18:06 | |
*** TravT has joined #openstack-glance | 18:07 | |
openstackgerrit | Merged openstack/python-glanceclient: Updated from global requirements https://review.openstack.org/357688 | 18:27 |
openstackgerrit | Merged openstack/python-glanceclient: Update doc URL https://review.openstack.org/357521 | 18:27 |
*** zul has quit IRC | 18:35 | |
*** zul has joined #openstack-glance | 18:39 | |
*** maestropandy1 has joined #openstack-glance | 18:42 | |
*** ducttape_ has joined #openstack-glance | 18:48 | |
*** maestropandy1 has quit IRC | 18:49 | |
*** maestropandy has joined #openstack-glance | 18:51 | |
*** maestropandy has left #openstack-glance | 18:51 | |
*** ducttape_ has quit IRC | 18:53 | |
*** zul has quit IRC | 18:55 | |
*** fifieldt has quit IRC | 19:06 | |
openstackgerrit | Merged openstack/python-glanceclient: Revert "Don't update tags every time" https://review.openstack.org/357624 | 19:16 |
*** ducttape_ has joined #openstack-glance | 19:25 | |
*** GB21 has quit IRC | 19:31 | |
*** ducttape_ has quit IRC | 19:39 | |
*** TravT has quit IRC | 19:52 | |
*** TravT has joined #openstack-glance | 19:52 | |
*** TravT has quit IRC | 19:57 | |
*** TravT_ has joined #openstack-glance | 19:58 | |
*** btully has joined #openstack-glance | 20:08 | |
*** btully has quit IRC | 20:12 | |
*** btully has joined #openstack-glance | 20:18 | |
*** btully has quit IRC | 20:25 | |
*** sJCZPnWMfB has joined #openstack-glance | 20:27 | |
*** sJCZPnWMfB has quit IRC | 20:36 | |
*** e0ne has joined #openstack-glance | 20:37 | |
*** ducttape_ has joined #openstack-glance | 20:40 | |
*** ducttape_ has quit IRC | 20:45 | |
*** ducttape_ has joined #openstack-glance | 20:48 | |
*** markvoelker has quit IRC | 20:53 | |
*** e0ne has quit IRC | 21:00 | |
*** flwang1 has joined #openstack-glance | 21:01 | |
*** e0ne has joined #openstack-glance | 21:01 | |
*** e0ne has quit IRC | 21:05 | |
*** btully has joined #openstack-glance | 21:17 | |
*** ducttape_ has quit IRC | 21:19 | |
*** ducttape_ has joined #openstack-glance | 21:22 | |
*** sdake has joined #openstack-glance | 21:47 | |
*** markvoelker has joined #openstack-glance | 21:53 | |
*** markvoelker has quit IRC | 21:58 | |
*** keekz has quit IRC | 22:03 | |
*** anush has quit IRC | 22:03 | |
*** castulo has quit IRC | 22:03 | |
*** castulo has joined #openstack-glance | 22:06 | |
*** keekz has joined #openstack-glance | 22:08 | |
*** zigo has quit IRC | 22:08 | |
*** zigo has joined #openstack-glance | 22:10 | |
*** ducttape_ has quit IRC | 22:17 | |
*** zul has joined #openstack-glance | 22:21 | |
*** anush has joined #openstack-glance | 22:32 | |
*** markvoelker has joined #openstack-glance | 22:54 | |
*** markvoelker has quit IRC | 22:59 | |
*** btully has quit IRC | 23:20 | |
*** btully has joined #openstack-glance | 23:22 | |
*** zul has quit IRC | 23:22 | |
*** walharth has joined #openstack-glance | 23:23 | |
*** btully has quit IRC | 23:26 | |
*** ducttape_ has joined #openstack-glance | 23:43 | |
*** ducttape_ has quit IRC | 23:48 | |
*** markvoelker has joined #openstack-glance | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!