Saturday, 2016-08-20

*** btully has joined #openstack-glance00:06
*** btully has quit IRC00:12
*** TravT_ has joined #openstack-glance00:19
*** TravT has quit IRC00:22
*** rrecio has joined #openstack-glance00:32
*** rrecio_ has quit IRC00:32
openstackgerritJin Li proposed openstack/glance-specs: change the example URLs in narrative-style API docs for glance-specs  https://review.openstack.org/35378700:35
*** rrecio has quit IRC00:35
*** rrecio has joined #openstack-glance00:38
*** rrecio_ has joined #openstack-glance00:40
*** stewie925 has joined #openstack-glance00:41
stewie925hello glance folks00:41
stewie925can I do a "--debug" in glance command right?00:42
stewie925like "glance --debug image-list"00:42
*** rrecio has quit IRC00:43
openstackgerritTimothy Symanczyk proposed openstack/glance: WIP Utilize the new 'shared' visibility value  https://review.openstack.org/35753000:45
tsymanczykstewie925 : tried it and it works for me. what are you seeing?00:46
*** sdake has quit IRC00:46
stewie925tsymanczyk:  it didnt work for me :(00:47
stewie925glance --debug image-list  command is immediately followed by the image list00:47
tsymanczyktimothy_symanczyk@devstack:/opt/stack/glance$ glance --debug image-list00:47
tsymanczykDEBUG:keystoneclient.session:REQ: curl -g -i -X GET http://devstack:5000/v3 -H "Accept: application/json" -H "User-Agent: python-keystoneclient"00:47
tsymanczykINFO:requests.packages.urllib3.connectionpool:Starting new HTTP connection (1): devstack00:47
tsymanczykDEBUG:requests.packages.urllib3.connectionpool:"GET /v3 HTTP/1.1" 200 25600:47
stewie925was expecting some debugging output  - set of CURL commands, http GET calls and such00:47
tsymanczykthat's what i see.00:48
stewie925hmm I wonder why mine is not showing that00:48
stewie925I am using devstack00:48
stewie925openstack --debug and nova --debug work though00:48
tsymanczykme too, devstack master latest. what're you running?00:48
stewie925am running devstack master00:48
tsymanczykweird00:48
stewie925installed from June00:48
*** links has joined #openstack-glance00:49
tsymanczyktimothy_symanczyk@devstack:/opt/stack/glance$ glance --version00:49
tsymanczyk2.4.000:49
stewie925lemme check that00:49
stewie9252.0.0 ugh00:49
stewie925is glance --debug a fairly new gfeature?00:49
stewie925feature00:49
tsymanczyki'm afraid i don't really know the history.00:50
tsymanczyklemme check git, see if it's obvious.00:50
stewie925its okay... I am pretty new to openstack I started in June00:50
stewie925ohthank you so much00:50
stewie925also I checked openstack --version (its 2.5.0)  and nova --version (its 4.0.0)00:51
tsymanczykadded in 2014 it looks like.00:53
tsymanczykweird00:53
tsymanczykmaybe the 2.0.0 release chose not to include it for some reason.00:53
tsymanczykit's in the latest version of 2.0.0..... double weird.00:55
tsymanczyktry "glance -d image-list" ?00:56
stewie925yeah ok let me try that00:56
stewie925hmm nada either00:56
stewie925you have a later version of glance 2.4.000:57
stewie925well, I was testing pdb (python debugger) on glance earlier, but I dont think that would affect the --debug feature though00:57
stewie925super strange00:58
tsymanczyki may have an answer for you hold on...00:58
stewie925tsymanczyk: appreciate it!00:59
stewie925in the meantime, I tried to run00:59
stewie925$ glance help | grep debug00:59
stewie925and it shows "  -d, --debug           Defaults to env[GLANCECLIENT_DEBUG]."00:59
*** bpokorny_ has joined #openstack-glance00:59
stewie925so the feature must be there, you are right...00:59
tsymanczyksee this is weird, the --debug flag turns on the envvar GLANCECLIENT_DEBUG01:00
tsymanczykin the 2.4.0 code01:00
stewie925and 2.0.0 probably does not?01:00
tsymanczyktimothy_symanczyk@devstack:/usr/local/lib/python2.7/dist-packages/glanceclient$ grep -r GLANCECLIENT_DEBUG *01:00
tsymanczykcommon/utils.py:    if bool(env('GLANCECLIENT_DEBUG')) is True:01:00
tsymanczykBinary file common/utils.pyc matches01:00
tsymanczykshell.py:                            default=bool(utils.env('GLANCECLIENT_DEBUG')),01:00
tsymanczykshell.py:                            help='Defaults to env[GLANCECLIENT_DEBUG].')01:00
tsymanczykBinary file shell.pyc matches01:00
tsymanczykBinary file tests/unit/test_shell.pyc matches01:00
tsymanczyktests/unit/test_shell.py:        os.environ = {'GLANCECLIENT_DEBUG': '1'}01:00
tsymanczyktimothy_symanczyk@devstack:/usr/local/lib/python2.7/dist-packages/glanceclient$01:00
tsymanczyk2.0.0 code :01:00
tsymanczyktimothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$ grep -r GLANCECLIENT_DEBUG *01:01
tsymanczykglanceclient/shell.py:                            default=bool(utils.env('GLANCECLIENT_DEBUG')),01:01
tsymanczykglanceclient/shell.py:                            help='Defaults to env[GLANCECLIENT_DEBUG].')01:01
tsymanczyktimothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$01:01
tsymanczyklooks like maybe you caught a version that "has it" but it isn't plugged in anywhere?01:01
tsymanczykthat's my guess at least.01:01
stewie925let me do the grep r glanceclient and compare your results01:01
stewie925guess what I only have two lines01:03
stewie925shell.py:                            default=bool(utils.env('GLANCECLIENT_DEBUG')),01:03
stewie925shell.py:                            help='Defaults to env[GLANCECLIENT_DEBUG].')01:03
stewie925that was it01:03
*** bpokorny has quit IRC01:03
*** bpokorny_ has quit IRC01:04
tsymanczyki imagine that's the reason then. can you upgrade?01:04
stewie925but whats strange is I also did the find on /usr/local/lib/python2.7/dist-packages/glanceclient01:04
tsymanczykmore in there?01:05
stewie925oh wait I see yours01:05
stewie925timothy_symanczyk@devstack:~/tmp/python-glanceclient-2.0.0$ grep -r GLANCECLIENT_DEBUG *01:06
stewie925a 'tmp01:06
stewie925 tmp prefix01:06
tsymanczykyeah, i didn't bother installing 2.0.0 :)01:06
stewie925haha, no need to :)01:07
stewie925well thank you tsymanczyk01:08
stewie925my brain is fried from all the pdb's01:08
tsymanczykyou're welcome.01:08
stewie925thank you and have a good weekend01:08
tsymanczykindeed. have a good weekend!01:09
*** tsymanczyk has left #openstack-glance01:09
*** stewie925 has quit IRC01:27
*** btully has joined #openstack-glance01:39
openstackgerritMerged openstack/glance: Add registry_client_opts to glance-cache.conf.sample  https://review.openstack.org/35244901:47
*** btully has quit IRC01:50
*** btully has joined #openstack-glance01:53
*** rrecio_ has quit IRC02:04
*** btully has quit IRC02:07
*** rrecio has joined #openstack-glance02:10
*** btully has joined #openstack-glance02:15
*** btully has quit IRC02:20
*** rrecio has quit IRC02:27
*** btully has joined #openstack-glance02:43
openstackgerritStephen Gordon proposed openstack/glance: Correct link to image properties  https://review.openstack.org/35797202:47
*** itisha has joined #openstack-glance03:09
*** Jaison has joined #openstack-glance03:09
*** links has quit IRC03:12
*** Jaison has quit IRC03:13
*** rrecio has joined #openstack-glance03:23
*** rrecio has quit IRC03:36
*** julim has quit IRC03:43
*** prateek has joined #openstack-glance04:20
*** atod has joined #openstack-glance04:25
*** prateek has quit IRC04:36
*** prateek has joined #openstack-glance04:37
*** prateek has quit IRC04:48
*** prateek has joined #openstack-glance04:50
*** HenryG has quit IRC05:08
*** HenryG has joined #openstack-glance05:08
*** btully has quit IRC05:42
*** btully has joined #openstack-glance05:52
*** btully has quit IRC05:57
*** ducttape_ has quit IRC06:11
*** GB21 has joined #openstack-glance06:18
*** toanster has joined #openstack-glance06:48
*** bunting_ has joined #openstack-glance06:49
*** Daviey_ has joined #openstack-glance06:50
*** cjmarti has joined #openstack-glance06:50
*** itisha_ has joined #openstack-glance06:50
*** DuncanT_ has joined #openstack-glance06:51
*** melwitt_ has joined #openstack-glance06:52
*** dolphm_ has joined #openstack-glance06:52
*** odyssey4me_ has joined #openstack-glance06:52
*** mgagne_ has joined #openstack-glance06:53
*** dhellmann_ has joined #openstack-glance06:53
*** prateek has quit IRC06:54
*** itisha has quit IRC06:54
*** castulo has quit IRC06:54
*** bunting has quit IRC06:54
*** DuncanT has quit IRC06:54
*** melwitt has quit IRC06:54
*** dhellmann has quit IRC06:54
*** mgagne has quit IRC06:54
*** toan has quit IRC06:54
*** dolphm has quit IRC06:54
*** Daviey has quit IRC06:54
*** odyssey4me has quit IRC06:54
*** cjmarti is now known as castulo06:54
*** dolphm_ is now known as dolphm06:54
*** itisha_ is now known as itisha06:55
*** dhellmann_ is now known as dhellmann06:57
*** DuncanT_ is now known as DuncanT07:01
*** prateek has joined #openstack-glance07:04
*** itisha has quit IRC07:30
*** rcernin has joined #openstack-glance07:34
*** aarefiev_ has joined #openstack-glance07:40
*** ducttape_ has joined #openstack-glance07:42
*** aarefiev has quit IRC07:43
*** ducttape_ has quit IRC07:47
*** TravT has joined #openstack-glance07:50
*** TravT_ has quit IRC07:52
*** btully has joined #openstack-glance07:56
*** btully has quit IRC08:00
openstackgerritDavanum Srinivas (dims) proposed openstack/glance: [WIP] Testing latest u-c  https://review.openstack.org/31843608:10
*** ducttape_ has joined #openstack-glance08:44
*** ducttape_ has quit IRC08:49
*** btully has joined #openstack-glance08:56
*** btully has quit IRC09:01
*** ducttape_ has joined #openstack-glance09:45
*** ducttape_ has quit IRC09:49
*** sdake has joined #openstack-glance09:51
*** aswadr_ has joined #openstack-glance09:52
*** tshefi has joined #openstack-glance10:15
*** tshefi has quit IRC10:19
*** flwang1 has quit IRC10:26
*** sdake has quit IRC10:32
*** sdake has joined #openstack-glance10:34
*** odyssey4me_ is now known as odyssey4me10:46
*** btully has joined #openstack-glance10:57
*** btully has quit IRC11:04
*** ducttape_ has joined #openstack-glance11:46
*** prateek has quit IRC11:49
*** ducttape_ has quit IRC11:51
*** btully has joined #openstack-glance12:03
*** sdake has quit IRC12:06
*** sdake has joined #openstack-glance12:06
*** btully has quit IRC12:07
*** btully has joined #openstack-glance12:22
*** MattMan has quit IRC12:25
*** MattMan has joined #openstack-glance12:25
*** btully has quit IRC12:27
*** btully has joined #openstack-glance12:29
*** btully has quit IRC12:34
*** ducttape_ has joined #openstack-glance12:47
*** ducttape_ has quit IRC12:52
*** ducttape_ has joined #openstack-glance13:05
*** aswadr_ has quit IRC13:21
*** ducttape_ has quit IRC13:29
*** anush_ has joined #openstack-glance14:00
*** btully has joined #openstack-glance14:19
*** btully has quit IRC14:23
*** sdake_ has joined #openstack-glance14:27
*** btully has joined #openstack-glance14:28
*** sdake has quit IRC14:29
*** pt_15 has joined #openstack-glance14:30
*** btully has quit IRC14:33
*** takedakn has joined #openstack-glance15:01
*** takedakn has quit IRC15:17
*** takedakn has joined #openstack-glance15:18
*** btully has joined #openstack-glance15:20
*** ducttape_ has joined #openstack-glance15:21
*** btully has quit IRC15:25
*** takedakn has quit IRC15:32
*** ducttape_ has quit IRC15:34
*** ducttape_ has joined #openstack-glance15:55
*** ducttape_ has quit IRC16:05
*** ducttape_ has joined #openstack-glance16:07
*** chlong has quit IRC16:07
*** ducttape_ has quit IRC16:11
openstackgerritNikhil Komawar proposed openstack/glance: Regenerate config files for Newton  https://review.openstack.org/35480916:20
*** btully has joined #openstack-glance16:32
*** btully has quit IRC16:36
*** ducttape_ has joined #openstack-glance16:43
*** ducttape_ has quit IRC16:46
*** e0ne has joined #openstack-glance16:57
*** anush_ has quit IRC17:00
*** btully has joined #openstack-glance17:01
*** maestropandy has joined #openstack-glance17:02
*** maestropandy has left #openstack-glance17:02
*** e0ne has quit IRC17:08
*** btully has quit IRC17:08
*** rcernin has quit IRC17:10
nikhilsabari: https://review.openstack.org/#/c/358262/ and https://review.openstack.org/35826317:11
*** btully has joined #openstack-glance17:16
*** btully has quit IRC17:21
*** Daviey_ is now known as Daviey17:26
*** e0ne has joined #openstack-glance17:31
*** sdake_ has quit IRC17:40
*** ducttape_ has joined #openstack-glance17:47
*** ducttape_ has quit IRC17:52
*** e0ne has quit IRC17:56
*** pt_15 has quit IRC18:06
*** TravT has quit IRC18:06
*** TravT has joined #openstack-glance18:07
openstackgerritMerged openstack/python-glanceclient: Updated from global requirements  https://review.openstack.org/35768818:27
openstackgerritMerged openstack/python-glanceclient: Update doc URL  https://review.openstack.org/35752118:27
*** zul has quit IRC18:35
*** zul has joined #openstack-glance18:39
*** maestropandy1 has joined #openstack-glance18:42
*** ducttape_ has joined #openstack-glance18:48
*** maestropandy1 has quit IRC18:49
*** maestropandy has joined #openstack-glance18:51
*** maestropandy has left #openstack-glance18:51
*** ducttape_ has quit IRC18:53
*** zul has quit IRC18:55
*** fifieldt has quit IRC19:06
openstackgerritMerged openstack/python-glanceclient: Revert "Don't update tags every time"  https://review.openstack.org/35762419:16
*** ducttape_ has joined #openstack-glance19:25
*** GB21 has quit IRC19:31
*** ducttape_ has quit IRC19:39
*** TravT has quit IRC19:52
*** TravT has joined #openstack-glance19:52
*** TravT has quit IRC19:57
*** TravT_ has joined #openstack-glance19:58
*** btully has joined #openstack-glance20:08
*** btully has quit IRC20:12
*** btully has joined #openstack-glance20:18
*** btully has quit IRC20:25
*** sJCZPnWMfB has joined #openstack-glance20:27
*** sJCZPnWMfB has quit IRC20:36
*** e0ne has joined #openstack-glance20:37
*** ducttape_ has joined #openstack-glance20:40
*** ducttape_ has quit IRC20:45
*** ducttape_ has joined #openstack-glance20:48
*** markvoelker has quit IRC20:53
*** e0ne has quit IRC21:00
*** flwang1 has joined #openstack-glance21:01
*** e0ne has joined #openstack-glance21:01
*** e0ne has quit IRC21:05
*** btully has joined #openstack-glance21:17
*** ducttape_ has quit IRC21:19
*** ducttape_ has joined #openstack-glance21:22
*** sdake has joined #openstack-glance21:47
*** markvoelker has joined #openstack-glance21:53
*** markvoelker has quit IRC21:58
*** keekz has quit IRC22:03
*** anush has quit IRC22:03
*** castulo has quit IRC22:03
*** castulo has joined #openstack-glance22:06
*** keekz has joined #openstack-glance22:08
*** zigo has quit IRC22:08
*** zigo has joined #openstack-glance22:10
*** ducttape_ has quit IRC22:17
*** zul has joined #openstack-glance22:21
*** anush has joined #openstack-glance22:32
*** markvoelker has joined #openstack-glance22:54
*** markvoelker has quit IRC22:59
*** btully has quit IRC23:20
*** btully has joined #openstack-glance23:22
*** zul has quit IRC23:22
*** walharth has joined #openstack-glance23:23
*** btully has quit IRC23:26
*** ducttape_ has joined #openstack-glance23:43
*** ducttape_ has quit IRC23:48
*** markvoelker has joined #openstack-glance23:55

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!