Friday, 2016-04-29

*** imandhan has joined #openstack-trove00:07
*** chlong has quit IRC00:24
*** rmevans has joined #openstack-trove00:40
*** jinxing has joined #openstack-trove00:55
*** cheneydc has joined #openstack-trove01:04
*** mingdang1 has joined #openstack-trove01:22
*** stewie925_ has quit IRC01:28
*** stewie925 has quit IRC01:29
*** chlong has joined #openstack-trove01:44
*** mingdang1 has quit IRC02:16
*** haomaiwang has joined #openstack-trove02:23
*** _amrith_ is now known as amrith02:53
*** chlong has quit IRC03:13
openstackgerritZhiQiang Fan proposed openstack/trove: [Trivial] Remove unnecessary executable flag for files  https://review.openstack.org/31098203:13
*** rmevans has quit IRC03:25
*** _imandhan_ has joined #openstack-trove03:31
*** imandhan has quit IRC03:35
*** chlong has joined #openstack-trove03:36
*** imandhan has joined #openstack-trove03:46
*** _imandhan_ has quit IRC03:49
*** imandhan has quit IRC05:00
*** imandhan has joined #openstack-trove05:24
*** imandhan has quit IRC05:29
*** cguadall_ has joined #openstack-trove05:45
*** cguadall has quit IRC05:47
openstackgerritSean McCully proposed openstack/trove: Schema migrations fail for postgresql backend  https://review.openstack.org/31103205:48
openstackgerritOpenStack Proposal Bot proposed openstack/trove-dashboard: Imported Translations from Zanata  https://review.openstack.org/30965406:16
*** cheneydc has quit IRC06:33
*** rcernin has joined #openstack-trove06:36
*** cheneydc has joined #openstack-trove06:50
*** amrith is now known as _amrith_07:02
*** _amrith_ is now known as amrith07:05
*** kong has quit IRC07:19
*** chlong has quit IRC07:21
*** mingdang1 has joined #openstack-trove08:00
*** dmk0202 has joined #openstack-trove08:22
*** cheneydc1 has joined #openstack-trove08:40
*** jinxing has quit IRC08:42
*** cheneydc has quit IRC08:44
*** cheneydc1 has quit IRC08:44
*** cheneydc has joined #openstack-trove08:46
*** jinxing has joined #openstack-trove08:47
*** cheneydc has quit IRC08:50
*** cheneydc has joined #openstack-trove08:51
*** cheneydc has quit IRC09:21
*** cheneydc has joined #openstack-trove09:21
*** cheneydc has quit IRC09:26
*** dkehn has quit IRC09:30
*** cheneydc has joined #openstack-trove09:36
*** jinxing has quit IRC09:41
*** mingdang1 has quit IRC09:43
*** cheneydc has quit IRC09:46
*** tosky has joined #openstack-trove09:46
*** jinxing has joined #openstack-trove09:46
*** cheneydc has joined #openstack-trove09:54
*** cheneydc has quit IRC09:59
*** haomaiwang has quit IRC10:30
*** haomaiwang has joined #openstack-trove10:35
*** haomaiwang has quit IRC10:36
*** jinxing has quit IRC10:46
*** mingdang1 has joined #openstack-trove10:59
*** amrith is now known as _amrith_11:45
*** tesseract has joined #openstack-trove12:34
*** tesseract is now known as Guest5137612:34
*** _amrith_ is now known as amrith12:56
*** arist has quit IRC13:14
*** arist has joined #openstack-trove13:14
*** miqui has joined #openstack-trove13:29
*** mingdang1 has quit IRC13:45
*** ewilson has joined #openstack-trove13:59
*** ewilson has quit IRC14:00
amrithhttps://etherpad.openstack.org/p/trove-newton-summit-contributor-meetup14:15
*** ewilson has joined #openstack-trove14:15
*** barclaac has left #openstack-trove14:16
*** pmackinn has joined #openstack-trove14:23
*** david-lyle has joined #openstack-trove14:27
*** alejandrito has joined #openstack-trove14:29
*** SlickNik has quit IRC14:33
*** dalees has quit IRC14:33
*** SlickNik has joined #openstack-trove14:37
*** dalees has joined #openstack-trove14:37
amrithspec: https://review.openstack.org/#/c/298994/14:38
amrithcode: https://review.openstack.org/#/c/301936/14:38
amrithcode: https://review.openstack.org/#/c/301342/14:38
amrithcode: https://review.openstack.org/#/c/301342/14:38
amrithcode: https://review.openstack.org/#/c/301342/14:38
*** cdelatte has joined #openstack-trove14:39
*** ewilson has quit IRC14:57
*** stewie925 has joined #openstack-trove14:59
*** ewilson has joined #openstack-trove15:00
stewie925hello tosky15:03
toskystewie925: hi15:04
stewie925hello all - I have a question for git branch - is it possible to work on two branches at the same time - or should we commit the first branch before working on the next branch?15:05
stewie925oh hey :)15:05
stewie925so I was able to do what you suggested :) created a branch for bug1  then create branch for bug2 from origin/master15:06
toskyyou can't work on two branches at the same time; you switch between them when needed15:06
toskyonly one is active15:06
toskybut you can have tons of branches and switch when needed15:07
stewie925yeah thats actually my next question - how do you switch around?   I believe it is checkout15:07
stewie925git checkout <branch>15:07
toskyso when you want to switch, you will probably want to commit (locally) your changes, but you can always modify them (before they are pushed to a remote branch)15:07
stewie925ohhh commit - thats what I missed then...15:08
stewie925cause when i made changes to <bug2>, I didnt commit - then i switch to t branch <bug2> and I see that the change in <bug2> was copied to <bug1>15:09
toskyit was not copied; the changes simply stayed there, in your working copy15:09
toskyand git allowed you to switch because the changes did not conflict with the changes in the new branch15:09
*** Guest51376 has quit IRC15:10
stewie925hmmm...15:11
stewie925well here is what happened - so I changed and saved  a file called 'README' in <bug2>  then i  switched over to <bug1>  by typing  $ git checkout <bug1>15:14
stewie925the first line that came out shows "M   README"15:14
stewie925I saw this website http://www.gitguys.com/topics/switching-branches-without-committing/   -> it says "M README" indicates that the README file has been merged into <bug1> branch15:16
stewie925i was hoping that the README  in <bug1> remained untouched15:17
toskyyou only modified your working copy, you never changed it in the branch15:18
toskyyou change the code in a branch only when you commit it15:18
stewie925so tosky, whats that "M README" mean then?  cause I am seeing that when switching to another branch15:19
toskystewie925: the file is modified; check with git status15:19
toskyit is modified in your local copy15:19
toskyit will continue to be in that status until you commit it, or you restore it to the previous state15:20
*** cdelatte has quit IRC15:24
stewie925I see.... so I should do the commit in one branch before switching to another15:26
stewie925thank you again, tosky!15:27
toskyor stash the change (look for git stash)15:28
stewie925yeah, I'll research 'git stash' as well15:30
*** ewilson has quit IRC15:31
*** pmackinn has quit IRC15:33
*** ewilson has joined #openstack-trove15:42
amrithhttp://docs-draft.openstack.org/23/311123/2/check/gate-releases-docs/7e93f21//doc/build/html/newton/index.html15:43
amrithhttp://docs-draft.openstack.org/23/311123/2/check/gate-releases-docs/7e93f21//doc/build/html/newton/schedule.html15:43
*** cdelatte has joined #openstack-trove15:46
*** cdelatte has quit IRC15:50
*** cdelatte has joined #openstack-trove15:53
*** pmackinn has joined #openstack-trove15:55
*** tellesnobrega_af is now known as tellesnobrega16:00
dougshelley66https://review.openstack.org/#/c/259167/16:03
*** royoung has joined #openstack-trove16:06
*** cdelatte has quit IRC16:11
*** dmk0202 has quit IRC16:12
*** pmackinn has quit IRC16:21
stewie925tosky: that 'git stash' is heaven sent16:24
*** rcernin has quit IRC16:26
*** mingdang1 has joined #openstack-trove16:46
*** raginbajin has quit IRC16:50
*** mingdang1 has quit IRC16:51
*** raginbaji has joined #openstack-trove16:54
amrithhttps://docs.google.com/document/d/1Dy60W0zTkGUEhBOmapXGXFBVtggbm6UGYIxsIdaRbzw/edit?usp=sharing17:03
*** david-lyle has quit IRC17:24
*** tosky has quit IRC17:26
*** royoung has quit IRC17:26
*** ewilson has quit IRC17:30
*** amrith is now known as _amrith_17:40
*** tellesnobrega is now known as tellesnobrega_af17:44
*** tellesnobrega_af is now known as tellesnobrega18:10
*** ewilson has joined #openstack-trove18:14
*** royoung has joined #openstack-trove18:15
*** alejandrito has quit IRC18:19
*** ewilson has quit IRC18:20
*** ewilson has joined #openstack-trove18:22
*** ewilson has quit IRC18:25
*** alejandrito has joined #openstack-trove18:32
*** stewie925 has quit IRC18:35
*** alejandrito has quit IRC18:47
*** alejandrito has joined #openstack-trove18:49
*** david-lyle has joined #openstack-trove19:09
openstackgerritPetr Malik proposed openstack/trove: Remove unused 'override.config.template'  https://review.openstack.org/31054919:17
*** tellesnobrega is now known as tellesnobrega_af19:22
*** miqui has quit IRC19:22
*** tellesnobrega_af is now known as tellesnobrega19:27
*** davideagnello has joined #openstack-trove19:29
*** davideagnello has quit IRC19:30
*** pmackinn has joined #openstack-trove19:34
openstackgerritPetr Malik proposed openstack/trove: Deprecate 'guest_log_long_query_time'  https://review.openstack.org/31123719:44
*** cdelatte has joined #openstack-trove19:53
*** tellesnobrega is now known as tellesnobrega_af20:01
*** tellesnobrega_af is now known as tellesnobrega20:02
*** cdelatte has quit IRC20:12
*** cdelatte has joined #openstack-trove20:13
*** cdelatte has quit IRC20:13
*** pmackinn has quit IRC20:23
*** haypo has left #openstack-trove20:31
*** _amrith_ is now known as amrith20:38
*** stewie925 has joined #openstack-trove21:05
stewie925peterstac: hello21:07
stewie925hello all, I committed a trove fix a few days ago - core reviewer replied in gerrit with a question addressed to vertica21:11
amrithwhat's the review #21:11
stewie925being kinda new to gerrit myself, I am wondering if the vertica folks do receive the email of my gerrit commit as well?21:11
stewie925hi amrith21:12
stewie925it is https://review.openstack.org/#/c/308693/21:12
amrithok, I looked at it. no, the vertica folks will likely not have received this email. peterstac what do you suggest?21:13
stewie925i understand most of them may be at the openstack summit this week21:13
stewie925thank you amrith and peterstac for your help in advance21:14
*** amrith is now known as _amrith_21:56
*** _amrith_ is now known as amrith21:57
stewie925hey guys , when you do 'git stash' on a file you just changed within a branch,  does that file become 'invisible'?  cause I tried to do an 'ls' command and it couldnt find the file22:03
*** stevemar has joined #openstack-trove22:05
stewie925I see the file is 'stashed' away, its not gone , but wondering why the file is not being displayed when I do an 'ls' command22:09
*** amrith is now known as _amrith_22:15
stewie925nm guys, I got my 'git stash' resolved22:27
openstackgerritOpenStack Proposal Bot proposed openstack/python-troveclient: Updated from global requirements  https://review.openstack.org/31135022:41
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/31135822:42
*** david-lyle has quit IRC22:45
openstackgerritOpenStack Proposal Bot proposed openstack/python-troveclient: Updated from global requirements  https://review.openstack.org/31141322:49
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/31141622:50
*** royoung has left #openstack-trove22:53
*** stewie925 has quit IRC22:54
*** tellesnobrega is now known as tellesnobrega_af23:02
*** alejandrito has quit IRC23:02
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/31135823:09
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/31141623:17
*** mingdang1 has joined #openstack-trove23:30
*** ozialien10 has joined #openstack-trove23:43

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