*** xarses_ has quit IRC | 00:01 | |
clarkb | of course now that I've done that it won't actually start :/ | 00:03 |
---|---|---|
sc` | sounds like beer o'clock is rapidly approaching | 00:03 |
clarkb | first problem was the pid file doesn't get claened up when you hit the service that hard | 00:05 |
clarkb | but after cleaning that up its still not starting and I'm not quire sure why | 00:06 |
clarkb | there is a bug in our init script where we rm * in the pid file dir which I think will delete the other service's pid files :/ | 00:10 |
clarkb | but that isn't the problem here | 00:10 |
clarkb | infra-root did we change anything about the init script here? I'm not seeing where we pass the config file to zuul-scheduler | 00:14 |
*** yamamoto has joined #openstack-infra | 00:15 | |
clarkb | I guess maybe that is an optional argument | 00:16 |
clarkb | and of course it starts in the foreground | 00:16 |
clarkb | ugh | 00:16 |
mnaser | :( | 00:21 |
clarkb | I'm not seeing anything logged that would indicate why its exiting. The exit status is 0 | 00:21 |
mnaser | clarkb: log files? | 00:21 |
clarkb | there is nothing in the zuul logs, there is nothing in journalctl | 00:21 |
*** yamamoto has quit IRC | 00:21 | |
clarkb | it runs fine if I su to zuul and run it in the foreground with the -d (no daemon flag) | 00:21 |
mnaser | journalctl -xe has nothing useful either? | 00:21 |
clarkb | mnaser: nope | 00:21 |
sc` | the answer is near the bottom of a beer bottle. i know, not helping. | 00:21 |
mnaser | clarkb: so if i understand the issue, zuul wont start with init scripts | 00:22 |
mnaser | but will start fine in foreground | 00:22 |
clarkb | journalctl -xe http://paste.openstack.org/show/683502/ | 00:22 |
clarkb | mnaser: correct, I think it must be somethign to do with the daemonization code as a result | 00:22 |
clarkb | either in zuul itself or in the init script | 00:22 |
sc` | is it still using sysvinit and not a unit? | 00:22 |
clarkb | yes | 00:23 |
mnaser | clarkb: well if zuul isn't starting up at all and not logging anything i think its a sysvinit thing | 00:23 |
sc` | ooo... fun :( | 00:23 |
mnaser | clarkb: i can write a quick systemd unit file if you have the init script? | 00:23 |
mnaser | and we can give that a shot.. for now? | 00:23 |
*** tosky has quit IRC | 00:24 | |
sc` | that's what zuul-scheduler.service is, i think | 00:24 |
mnaser | sc`: im pretty sure thats an lsb compat service, not a real unit | 00:24 |
sc` | yeah. not a real unit | 00:24 |
mnaser | hence the 'Started LSB: Zuul scheduler.' | 00:24 |
clarkb | yes | 00:24 |
clarkb | I'd really rather understand why its broken rather than just replaceing what we think is broken | 00:25 |
mnaser | clarkb: what if you call the init file directly | 00:25 |
mnaser | set -x in the init script and /etc/init.d/zuul-scheduler start ? | 00:25 |
clarkb | ya I guess its worth a try | 00:26 |
sc` | is the ExecStart incantation correct? | 00:26 |
mnaser | clarkb: hey um | 00:26 |
mnaser | https://github.com/openstack-infra/puppet-zuul/blob/master/files/zuul-scheduler.init and https://github.com/openstack-infra/puppet-zuul/blob/master/files/zuul-schedulerv3.init | 00:26 |
clarkb | sc`: there is no execstart its an init script | 00:26 |
mnaser | is it possible you should use zuul-schedulerv3? | 00:26 |
mnaser | clarkb: https://github.com/openstack-infra/puppet-zuul/blob/eb2a5f81b1f71f6552ce9adabf9919d4bf728fb7/manifests/init.pp#L284-L292 nvm its not | 00:27 |
mnaser | it looks like it gives a new exit codes that might be useful | 00:27 |
mnaser | so echo $? might be of use too | 00:28 |
clarkb | ya exit codes are 0 | 00:28 |
clarkb | I checked those with systemctl status | 00:28 |
*** eernst has quit IRC | 00:29 | |
mnaser | start-stop-daemon --start --quiet --pidfile /var/run/zuul-scheduler/zuul-scheduler.pid -c zuul --exec /usr/local/bin/zuul-scheduler --test | 00:29 |
sc` | clarkb: to the extent i've worked with systemd and sysvinit, i needed ExecStart for launching the init script itself | 00:30 |
*** ihrachys has quit IRC | 00:30 | |
mnaser | start-stop-daemon --start --quiet --pidfile /var/run/zuul-scheduler/zuul-scheduler.pid -c zuul --exec /usr/local/bin/zuul-scheduler | 00:30 |
mnaser | clarkb: ^ those are a recreation of what the init script runs.. maybe they might give useful output running them manually? | 00:30 |
clarkb | sc`: I think that means you aren't using the sysv compat correctly | 00:30 |
*** ihrachys has joined #openstack-infra | 00:30 | |
clarkb | sc`: you should let systemd figure that out for you | 00:30 |
clarkb | mnaser: I'm currently trying to understand the set -x output after running it, there is a lot of indirection in the systemd compat stuff | 00:30 |
mnaser | clarkb: oh okay i didn't know you had some useful output from that, let me know if you need an extra pair of eyes | 00:31 |
clarkb | it looks like it gets sent off to run `/bin/systemctl --no-pager start zuul-scheduler.service` | 00:31 |
*** lbragstad has quit IRC | 00:32 | |
mnaser | clarkb: i once had that very strange issue where it looked like a loop | 00:32 |
mnaser | where init.d calls systemd and systemd calls initd | 00:33 |
clarkb | ya thats what it kind of appears is happening | 00:33 |
clarkb | but my set -x only goes as far as the first execution because i haven't daemon reloaded | 00:33 |
clarkb | I guess I try that now | 00:33 |
mnaser | maybe check if the system had any packages recently updated | 00:34 |
clarkb | I'm beginning to wonder if maybe there was memory/swapping fallout in systemd? | 00:35 |
mnaser | clarkb: if there isn't much other services running, maybe worth a reboot? also, doing some reading, apparently calling /etc/init.d/foo redirects to systemd which creates a 'virtual' unit file | 00:36 |
mnaser | export _SYSTEMCTL_SKIP_REDIRECT=1 | 00:36 |
mnaser | that will remove the redirection if you want to do the set -x troubleshooting (src: https://www.turnkeylinux.org/blog/debugging-systemd-sysv-init-compat) | 00:36 |
clarkb | export that in the calling shell? | 00:37 |
mnaser | clarkb: correct | 00:37 |
mnaser | so .. export _SYSTEMCTL_SKIP_REDIRECT=1; /etc/init.d/zuul-scheduler start; | 00:37 |
mnaser | that should technically not go through systemd | 00:37 |
mnaser | according to that article anyways | 00:37 |
mnaser | some other articles references SYSTEMCTL_SKIP_REDIRECT=1 without the preceeding _, if it doesn't work | 00:38 |
mnaser | most articles reference SYSTEMCTL_SKIP_REDIRECT=1 | 00:38 |
clarkb | well that got zuul to start :/ | 00:38 |
clarkb | I'm tempted to just leave it like this for now :) | 00:39 |
mnaser | clarkb: its your call but it looks like something went haywire in the redirection | 00:39 |
clarkb | ya I wonder if systemd didn't take too kindly to swapping like that | 00:39 |
*** wolverineav has quit IRC | 00:39 | |
clarkb | we might need to reboot to sort that out? | 00:40 |
mnaser | maybe try doing a stop with the redirection off, then try doing a start again with systemd redirection back on | 00:40 |
*** wolverineav has joined #openstack-infra | 00:40 | |
mnaser | i was avoiding the reboot in case some other fun activities come up post reboot :) | 00:40 |
mnaser | like maybe "hey i haven't been fsck'd in a while!" | 00:40 |
clarkb | ya I don't want to reboot it either :) | 00:40 |
clarkb | ok here goes a clean stop | 00:40 |
mnaser | 🤞 | 00:41 |
clarkb | of course it probably won't actually stop until its finished configuring itself :( | 00:42 |
clarkb | clean stop worked but will not start after a clean stop using systemctl | 00:44 |
clarkb | I think what I'm going to do is just run the init script directly with redirection off | 00:44 |
clarkb | and we'll leave it at athat | 00:44 |
clarkb | from what I can tell there are a hadnful of bugs in the init script regardless that we need to fix :( | 00:44 |
clarkb | we don't handle pid files correctly at all | 00:44 |
*** wolverineav has quit IRC | 00:44 | |
pabelanger | clarkb: I'm at YYZ for next few hours, anything I can help with | 00:45 |
clarkb | pabelanger: zuul-scheduler init script is not working under systemd | 00:45 |
clarkb | pabelanger: it runs and works fine if I disable the systemd magic unit redirection | 00:46 |
clarkb | and basically just run it directly | 00:46 |
clarkb | I've also noticed that our init scripts don't delete the correct pid files | 00:46 |
clarkb | pabelanger: I wonder if systemd is in a bad state after the ooming | 00:46 |
pabelanger | clarkb: odd, it was working last time I reset, wednesday this week I think | 00:46 |
clarkb | ya I did one yesterday too | 00:47 |
clarkb | and I think mordred did one earlier today that was fine | 00:47 |
pabelanger | Oh, we OOM? | 00:47 |
clarkb | which makes me wonder if its more the memory problem | 00:47 |
clarkb | pabelanger: after mordreds restart we went straight back to having no memory and using all swap | 00:47 |
clarkb | whcih is how I ended up doing this zuul restart | 00:47 |
clarkb | plan was to not requeue any changes to see if it used all memory on start up | 00:47 |
*** gyee has quit IRC | 00:47 | |
pabelanger | k | 00:47 |
clarkb | because that would imply something in our merged configs was causing us to use all the memory | 00:47 |
clarkb | but then it has refused to start up | 00:48 |
clarkb | pabelanger: we can try a reboot but really I just kidn of want to get to packing and sleep so maybe I'll just start it using the init script directly and we can pick this up later when we aren't traveling | 00:48 |
pabelanger | clarkb: yah, reboot seems fine to me | 00:48 |
clarkb | I mean | 00:49 |
clarkb | fine for when I'm not trying to get off the computer :) | 00:49 |
*** eernst has joined #openstack-infra | 00:50 | |
clarkb | ok I'm going to start zuul again now using the init script directly | 00:50 |
clarkb | and I'm going to leave it running | 00:50 |
pabelanger | is it possible something with the zuul-merger are still loading old branches? | 00:50 |
pabelanger | ok | 00:51 |
clarkb | I don't know that its actually a zuul issue | 00:51 |
clarkb | there is basically nothing logged by the startup process when using systemd | 00:51 |
clarkb | all it says is exit code 0 | 00:51 |
clarkb | process exited | 00:51 |
clarkb | oh you mean for the memory use? that is possible I guess. Not sure how they deal with branch deletion | 00:52 |
pabelanger | yah, I am not sure myself. | 00:53 |
pabelanger | okay, I see cat jobs | 00:53 |
clarkb | ya I'm going to see now if web or fingergw will start | 00:53 |
clarkb | fingergw and web both started | 00:54 |
clarkb | they use basically the same init script so I'm really confused | 00:54 |
clarkb | ok we are using ~1GB of memory after starting | 00:55 |
clarkb | thats pretty stable. I guess I am going to enqueue gate now | 00:55 |
pabelanger | 2018-02-24 00:54:36,823 INFO zuul.Scheduler: Full reconfiguration complete | 00:56 |
clarkb | ok gate enqueued without major memory jump | 00:56 |
clarkb | doing check now | 00:56 |
pabelanger | clarkb: did we enqueue last time too? | 00:56 |
pabelanger | or did memory spike right on start | 00:57 |
clarkb | pabelanger: yes I think so | 00:57 |
*** xarses has quit IRC | 00:57 | |
clarkb | pabelanger: we don't know if it was right at start or due to the enqueue | 00:57 |
clarkb | pabelanger: which is why I wanted to start it in a controlled fashion and see if it started with massive emory use or if enqueing things did it | 00:57 |
clarkb | so far neither has done it | 00:57 |
*** xarses has joined #openstack-infra | 00:57 | |
clarkb | up to 1.6GB or so now | 00:57 |
clarkb | now 2GB | 00:58 |
clarkb | which is still quite low | 00:58 |
clarkb | now 3GB | 00:59 |
clarkb | and check is enqueued | 00:59 |
clarkb | so I don't think it happened on start or due to the enqueue | 01:00 |
pabelanger | yah, things look good currently | 01:00 |
*** wolverineav has joined #openstack-infra | 01:00 | |
clarkb | #status notice Zuul was restarted to workaround a memory issue. If your jobs are not running they may need to be rechecked | 01:01 |
openstackstatus | clarkb: sending notice | 01:01 |
clarkb | and iirc I have to wait for that to finish before write a second status log | 01:01 |
-openstackstatus- NOTICE: Zuul was restarted to workaround a memory issue. If your jobs are not running they may need to be rechecked | 01:02 | |
openstackstatus | clarkb: finished sending notice | 01:04 |
*** wolverineav has quit IRC | 01:05 | |
clarkb | #status log The zuul-scheduler init script on zuul01.o.o appeared to stop working when attempting to start zuul after stopping it for running out of memory. Systemctl would report the process started successfully then exited 0. There were no zuul logs and no additional info in journalctl to further debug. Had to start zuul-scheduler using the init script directly after running `export | 01:05 |
openstackstatus | clarkb: finished logging | 01:05 |
clarkb | _SYSTEMCTL_SKIP_REDIRECT=1` to avoid the systemd sysv redirection. | 01:05 |
clarkb | thats not gonna log properly | 01:05 |
clarkb | #status log Had to start zuul-scheduler using the init script directly after running `export _SYSTEMCTL_SKIP_REDIRECT=1` to avoid the systemd sysv redirection. One theory is that systemd was unhappy after operating in the low memory environment. We need to get this working again as well as fix bugs iwth pid file handling in the init script. Might consider a server reboot. | 01:07 |
openstackstatus | clarkb: finished logging | 01:07 |
clarkb | still holding steady at 3GB | 01:07 |
pabelanger | confirmed | 01:08 |
clarkb | infra-root as an FYI zuul-scheduler and the init system on zuul01 are currently unhappy with each other. I do not understand it. See above for details. We might consider a server reboot when it is convenient to see if it corrects the problem (assuming its systemd issue). We also have some bugs in our init scripts that we should fix around cleaning up pid files. | 01:08 |
clarkb | pabelanger: ok I need to go finish packing I have an early flight tomorrow morning. Maybe you can keep an eye on it until you board your plane? | 01:09 |
pabelanger | clarkb: ack | 01:09 |
pabelanger | here for another 90mins | 01:09 |
clarkb | I'm really stumped by this systemctl/systemd/sysv init script behavior | 01:10 |
clarkb | its almost like it isn't running zuul at all | 01:10 |
clarkb | and just getting lost within the init system | 01:10 |
mnaser | seems like a good time to add some systemd unit files | 01:10 |
mnaser | and avoid the headache :P | 01:10 |
clarkb | ya that may be the best next step after ar eboot | 01:11 |
clarkb | ok thanks everyone for the help. I'm really afk now | 01:12 |
pabelanger | mnaser: yah, I've write some for testing in windmill, don't think it would be much effort to update puppet-zuul to use them | 01:13 |
mnaser | pabelanger: for all the flack systemd gets, units are waaay easier and simpler than sysvinit | 01:14 |
*** yamamoto has joined #openstack-infra | 01:17 | |
*** markvoelker has quit IRC | 01:19 | |
*** markvoelker has joined #openstack-infra | 01:20 | |
pabelanger | k, zuul is still at 3GB | 01:20 |
*** eernst has quit IRC | 01:20 | |
*** yamamoto has quit IRC | 01:22 | |
*** xarses has quit IRC | 01:23 | |
*** markvoelker has quit IRC | 01:25 | |
*** eernst has joined #openstack-infra | 01:33 | |
sc` | from my perspective, it didn't seem like the start action was being fed to the init script. i alluded to this earlier, but was told i was talking about doing it wrong | 01:34 |
clarkb | sc`: the way sys v compat is supposed to work in systemd is you put sys v init scripts in /etc/init.d/foo, then daemon-reload and you are done | 01:35 |
clarkb | sc`: so you never write an excplicit execstart | 01:35 |
clarkb | if you are writing units with execstarts that call sysv init scripts then youa ren't using the compat layer in systemd you are making your own | 01:35 |
sc` | i try to avoid doing compatibility shims when i have to wade off in systemd | 01:36 |
clarkb | and fwiw the two other sys v init scripts which are basicaly identical to this one worked fine :( | 01:37 |
sc` | happy friday :( | 01:37 |
pabelanger | well, zuul still running with about 3GB RAM, so we have that going for us | 01:38 |
*** salv-orlando has joined #openstack-infra | 01:41 | |
*** gcb has joined #openstack-infra | 01:42 | |
clarkb | thinking about it more the next thing we should probably try is actually stopping the service via systemctl | 01:42 |
clarkb | oh except | 01:42 |
clarkb | systemd might be mad simply because it didn't start it in the first place? | 01:43 |
clarkb | anyways try stopping, reboot, then look at unit files sounds good to me | 01:44 |
clarkb | also maybe the more forceful kill of the daemon is another reason for it being confused? | 01:44 |
*** salv-orlando has quit IRC | 01:45 | |
pabelanger | oh, it is possible systemd thought zuul-scheduler was still running, and service zuul-scheduler start just nooped | 01:47 |
pabelanger | I've see that before | 01:48 |
pabelanger | I had to service zuul-scheduler stop, delete pid, then service zuul-scheduler start | 01:48 |
pabelanger | before | 01:48 |
clarkb | pabelanger: ya I mean thats roughly what I did | 01:49 |
clarkb | stop, it didn't stop after 10 minutes, so killed it, deleted pid file, then started it | 01:49 |
clarkb | and systemctl status seemed to show it knew about things exiting so I dunno | 01:50 |
pabelanger | right, service zuul-scheduler status would have been interesting to see the output | 01:50 |
*** slaweq has joined #openstack-infra | 01:50 | |
clarkb | ya I looked at that process started and exited with status code 0 | 01:50 |
pabelanger | before the start attempt | 01:50 |
clarkb | oh before the start attempt | 01:50 |
pabelanger | odd indeed | 01:50 |
pabelanger | okay, gate change. Relocating, but zuul looks stable still | 01:52 |
*** slaweq has quit IRC | 01:54 | |
openstackgerrit | Sean McGinnis proposed openstack-infra/release-tools master: Minor cleanup of presentation https://review.openstack.org/547695 | 01:56 |
smcginnis | I have a patch out there against bugdaystats for over a year now. | 02:03 |
smcginnis | Could someone take a look and let me know if this is wanted or not? https://review.openstack.org/409166 | 02:03 |
smcginnis | Trying to clean up some of my outstanding patches. | 02:03 |
*** VW has joined #openstack-infra | 02:07 | |
*** hongbin has joined #openstack-infra | 02:10 | |
openstackgerrit | Merged openstack-infra/system-config master: Mirror tumbleweed for opensuse https://review.openstack.org/547646 | 02:10 |
*** xarses_ has joined #openstack-infra | 02:12 | |
*** yamahata has quit IRC | 02:12 | |
*** xarses_ has quit IRC | 02:14 | |
*** ihrachys has quit IRC | 02:14 | |
*** ihrachys has joined #openstack-infra | 02:15 | |
*** xarses has joined #openstack-infra | 02:15 | |
*** VW has quit IRC | 02:18 | |
*** yamamoto has joined #openstack-infra | 02:19 | |
*** markvoelker has joined #openstack-infra | 02:21 | |
*** hongbin has quit IRC | 02:24 | |
*** yamamoto has quit IRC | 02:24 | |
*** hongbin has joined #openstack-infra | 02:24 | |
openstackgerrit | Merged openstack-infra/release-tools master: Minor cleanup of presentation https://review.openstack.org/547695 | 02:33 |
*** salv-orlando has joined #openstack-infra | 02:41 | |
*** olaph1 has joined #openstack-infra | 02:42 | |
*** olaph has quit IRC | 02:43 | |
*** armaan has quit IRC | 02:44 | |
*** xarses_ has joined #openstack-infra | 02:46 | |
*** salv-orlando has quit IRC | 02:46 | |
*** hongbin has quit IRC | 02:48 | |
*** markvoelker has quit IRC | 02:55 | |
*** yamahata has joined #openstack-infra | 03:02 | |
*** yuchangc_ has joined #openstack-infra | 03:03 | |
*** masuberu has quit IRC | 03:11 | |
*** claudiub|2 has quit IRC | 03:17 | |
*** yamamoto has joined #openstack-infra | 03:21 | |
*** yamamoto has quit IRC | 03:26 | |
*** masuberu has joined #openstack-infra | 03:33 | |
*** masuberu has quit IRC | 03:38 | |
*** olaph has joined #openstack-infra | 03:39 | |
*** eernst has quit IRC | 03:39 | |
*** olaph1 has quit IRC | 03:40 | |
*** armaan has joined #openstack-infra | 03:41 | |
*** salv-orlando has joined #openstack-infra | 03:42 | |
*** eernst has joined #openstack-infra | 03:46 | |
*** salv-orlando has quit IRC | 03:47 | |
*** markvoelker has joined #openstack-infra | 03:52 | |
*** olaph1 has joined #openstack-infra | 03:55 | |
*** olaph has quit IRC | 03:56 | |
*** eernst has quit IRC | 04:05 | |
*** baoli has quit IRC | 04:10 | |
*** masuberu has joined #openstack-infra | 04:13 | |
*** eharney has quit IRC | 04:14 | |
*** lbragstad has joined #openstack-infra | 04:15 | |
*** masber has joined #openstack-infra | 04:15 | |
*** masuberu has quit IRC | 04:18 | |
*** yamamoto has joined #openstack-infra | 04:21 | |
*** Goneri has quit IRC | 04:24 | |
*** markvoelker has quit IRC | 04:26 | |
*** yamamoto has quit IRC | 04:27 | |
*** auristor has quit IRC | 04:38 | |
*** salv-orlando has joined #openstack-infra | 04:43 | |
*** gongysh has joined #openstack-infra | 04:44 | |
*** auristor has joined #openstack-infra | 04:44 | |
*** salv-orlando has quit IRC | 04:47 | |
*** olaph has joined #openstack-infra | 04:57 | |
*** olaph1 has quit IRC | 04:58 | |
*** gongysh has quit IRC | 04:59 | |
*** lbragstad has quit IRC | 05:05 | |
*** d0ugal has quit IRC | 05:08 | |
*** aviau has quit IRC | 05:10 | |
*** aviau has joined #openstack-infra | 05:10 | |
*** markvoelker has joined #openstack-infra | 05:23 | |
*** d0ugal has joined #openstack-infra | 05:23 | |
*** yamamoto has joined #openstack-infra | 05:23 | |
*** yamamoto has quit IRC | 05:29 | |
*** gongysh has joined #openstack-infra | 05:32 | |
*** salv-orlando has joined #openstack-infra | 05:44 | |
*** salv-orlando has quit IRC | 05:48 | |
*** slaweq has joined #openstack-infra | 05:52 | |
*** markvoelker has quit IRC | 05:57 | |
*** slaweq has quit IRC | 05:57 | |
*** kjackal has quit IRC | 06:06 | |
openstackgerrit | Dong Ma proposed openstack-infra/project-config master: Add doc job for qinling https://review.openstack.org/547719 | 06:17 |
*** olaph has quit IRC | 06:17 | |
*** olaph has joined #openstack-infra | 06:17 | |
*** sree_ has joined #openstack-infra | 06:18 | |
*** sree_ is now known as Guest18716 | 06:18 | |
*** Guest18716 has quit IRC | 06:23 | |
*** sree_ has joined #openstack-infra | 06:24 | |
*** sree_ is now known as Guest22435 | 06:25 | |
*** yamamoto has joined #openstack-infra | 06:25 | |
*** Guest22435 has quit IRC | 06:26 | |
*** yamamoto has quit IRC | 06:30 | |
*** salv-orlando has joined #openstack-infra | 06:44 | |
*** salv-orlando has quit IRC | 06:49 | |
*** markvoelker has joined #openstack-infra | 06:54 | |
*** lpetrut has joined #openstack-infra | 06:57 | |
*** armaan has quit IRC | 07:03 | |
*** armaan has joined #openstack-infra | 07:04 | |
*** armaan has quit IRC | 07:05 | |
*** armaan has joined #openstack-infra | 07:05 | |
*** yamamoto has joined #openstack-infra | 07:27 | |
*** markvoelker has quit IRC | 07:27 | |
*** e0ne has joined #openstack-infra | 07:29 | |
*** sree_ has joined #openstack-infra | 07:30 | |
*** sree_ is now known as Guest36596 | 07:30 | |
openstackgerrit | Dirk Mueller proposed openstack-infra/zuul-jobs master: Setup repositories for openSUSE Tumbleweed https://review.openstack.org/547660 | 07:32 |
*** yamamoto has quit IRC | 07:33 | |
*** Guest36596 has quit IRC | 07:34 | |
*** masber has quit IRC | 07:39 | |
*** armaan has quit IRC | 07:44 | |
*** e0ne has quit IRC | 07:45 | |
*** armaan has joined #openstack-infra | 07:54 | |
*** pgadiya has joined #openstack-infra | 07:55 | |
*** armaan has quit IRC | 07:55 | |
*** armaan has joined #openstack-infra | 07:56 | |
*** olaph1 has joined #openstack-infra | 08:08 | |
openstackgerrit | Dirk Mueller proposed openstack-infra/zuul-jobs master: Setup repositories for openSUSE Tumbleweed https://review.openstack.org/547660 | 08:09 |
*** olaph has quit IRC | 08:09 | |
*** lathiat has quit IRC | 08:13 | |
*** armaan has quit IRC | 08:21 | |
*** armaan has joined #openstack-infra | 08:21 | |
*** markvoelker has joined #openstack-infra | 08:24 | |
*** pgadiya has quit IRC | 08:27 | |
*** armaan has quit IRC | 08:28 | |
frickler | mnaser: thanks for fixing up my devstack patch, nice coincidence with the gate issue | 08:28 |
*** armaan has joined #openstack-infra | 08:29 | |
*** yamamoto has joined #openstack-infra | 08:29 | |
*** yuchangc_ has quit IRC | 08:33 | |
*** yamamoto has quit IRC | 08:34 | |
*** yamahata has quit IRC | 08:35 | |
AJaeger | dmsimard: do you want to abandon https://review.openstack.org/547691 ? | 08:44 |
*** gongysh has quit IRC | 08:46 | |
*** salv-orlando has joined #openstack-infra | 08:46 | |
*** e0ne has joined #openstack-infra | 08:49 | |
*** salv-orlando has quit IRC | 08:51 | |
*** e0ne has quit IRC | 08:55 | |
*** e0ne has joined #openstack-infra | 08:55 | |
*** lathiat has joined #openstack-infra | 08:55 | |
*** lpetrut has quit IRC | 08:57 | |
*** markvoelker has quit IRC | 08:58 | |
*** gongysh has joined #openstack-infra | 08:58 | |
*** pcichy has quit IRC | 09:00 | |
mnaser | frickler: no worries | 09:10 |
*** lpetrut has joined #openstack-infra | 09:28 | |
*** yamamoto has joined #openstack-infra | 09:30 | |
*** yamamoto has quit IRC | 09:35 | |
*** armaan has quit IRC | 09:43 | |
*** armaan has joined #openstack-infra | 09:43 | |
*** salv-orlando has joined #openstack-infra | 09:47 | |
*** yamamoto has joined #openstack-infra | 09:48 | |
*** e0ne has quit IRC | 09:51 | |
*** salv-orlando has quit IRC | 09:51 | |
*** gongysh has quit IRC | 09:53 | |
*** markvoelker has joined #openstack-infra | 09:54 | |
*** gcb has quit IRC | 09:55 | |
*** pgadiya has joined #openstack-infra | 09:56 | |
*** armaan has quit IRC | 10:00 | |
*** armaan has joined #openstack-infra | 10:00 | |
*** pgadiya has quit IRC | 10:01 | |
*** pcichy has joined #openstack-infra | 10:10 | |
*** armaan has quit IRC | 10:11 | |
*** armaan has joined #openstack-infra | 10:12 | |
*** sree_ has joined #openstack-infra | 10:13 | |
*** xarses_ has quit IRC | 10:13 | |
*** sree_ is now known as Guest30537 | 10:13 | |
*** yamamoto has quit IRC | 10:17 | |
*** Guest30537 has quit IRC | 10:17 | |
*** agopi has quit IRC | 10:19 | |
*** rossella_s has quit IRC | 10:24 | |
*** rossella_s has joined #openstack-infra | 10:25 | |
*** markvoelker has quit IRC | 10:28 | |
*** claudiub|2 has joined #openstack-infra | 10:28 | |
*** rossella_s has quit IRC | 10:40 | |
*** e0ne has joined #openstack-infra | 10:41 | |
*** armaan has quit IRC | 10:43 | |
*** armaan has joined #openstack-infra | 10:43 | |
*** slaweq has joined #openstack-infra | 10:44 | |
*** salv-orlando has joined #openstack-infra | 10:48 | |
*** slaweq has quit IRC | 10:48 | |
ssbarnea | what should i do to assure that zuul runs on a change? I got a minor change on https://review.openstack.org/#/c/484905/ but it did not run, even after 14+ hours. | 10:51 |
*** salv-orlando has quit IRC | 10:52 | |
odyssey4me | ssbarnea it's very likely that got caught in-between a zuul restart, try commenting 'recheck' in the review to ask zuul to run tests again | 10:54 |
ssbarnea | odyssey4me: thanks. just did. | 10:55 |
*** slaweq has joined #openstack-infra | 11:11 | |
*** pcichy has quit IRC | 11:14 | |
*** vivsoni has quit IRC | 11:14 | |
*** slaweq has quit IRC | 11:16 | |
*** yamamoto has joined #openstack-infra | 11:17 | |
*** pcichy has joined #openstack-infra | 11:21 | |
*** yamamoto has quit IRC | 11:23 | |
*** markvoelker has joined #openstack-infra | 11:25 | |
*** HeOS has quit IRC | 11:31 | |
*** e0ne has quit IRC | 11:31 | |
*** vivsoni has joined #openstack-infra | 11:42 | |
*** slaweq has joined #openstack-infra | 11:43 | |
*** rossella_s has joined #openstack-infra | 11:44 | |
*** salv-orlando has joined #openstack-infra | 11:48 | |
*** yuchangcai has joined #openstack-infra | 11:49 | |
*** e0ne has joined #openstack-infra | 11:51 | |
*** olaph has joined #openstack-infra | 11:53 | |
*** salv-orlando has quit IRC | 11:53 | |
*** olaph1 has quit IRC | 11:54 | |
*** markvoelker has quit IRC | 11:58 | |
*** numans has quit IRC | 11:59 | |
*** vivsoni has quit IRC | 11:59 | |
*** vivsoni has joined #openstack-infra | 12:00 | |
*** rossella_s has quit IRC | 12:02 | |
*** rossella_s has joined #openstack-infra | 12:03 | |
*** numans has joined #openstack-infra | 12:07 | |
*** e0ne has quit IRC | 12:07 | |
openstackgerrit | Merged openstack-infra/storyboard master: handle missing filters arg when creating a worklist https://review.openstack.org/545169 | 12:08 |
*** yuchangcai has quit IRC | 12:11 | |
*** yamamoto has joined #openstack-infra | 12:20 | |
*** e0ne has joined #openstack-infra | 12:24 | |
*** yamamoto has quit IRC | 12:24 | |
*** e0ne has quit IRC | 12:24 | |
*** masber has joined #openstack-infra | 12:37 | |
*** salv-orlando has joined #openstack-infra | 12:49 | |
*** lpetrut has quit IRC | 12:53 | |
*** salv-orlando has quit IRC | 12:54 | |
*** markvoelker has joined #openstack-infra | 12:56 | |
*** rossella_s has quit IRC | 12:58 | |
*** rossella_s has joined #openstack-infra | 13:00 | |
*** tosky has joined #openstack-infra | 13:11 | |
*** olaph1 has joined #openstack-infra | 13:12 | |
*** danpawlik has joined #openstack-infra | 13:12 | |
*** olaph has quit IRC | 13:12 | |
*** yamamoto has joined #openstack-infra | 13:17 | |
*** tosky has quit IRC | 13:18 | |
*** slaweq has quit IRC | 13:20 | |
*** danpawlik has quit IRC | 13:20 | |
*** slaweq has joined #openstack-infra | 13:20 | |
*** yamamoto has quit IRC | 13:21 | |
*** slaweq has quit IRC | 13:25 | |
*** markvoelker has quit IRC | 13:29 | |
*** yuchangcai has joined #openstack-infra | 13:34 | |
*** lbragstad has joined #openstack-infra | 13:35 | |
*** danpawlik has joined #openstack-infra | 13:37 | |
*** yuchangcai has quit IRC | 13:38 | |
*** salv-orlando has joined #openstack-infra | 13:41 | |
*** danpawlik has quit IRC | 13:41 | |
*** olaph has joined #openstack-infra | 13:47 | |
*** masber has quit IRC | 13:48 | |
*** olaph1 has quit IRC | 13:49 | |
*** armaan has quit IRC | 13:52 | |
*** armaan has joined #openstack-infra | 13:53 | |
*** yuchangcai has joined #openstack-infra | 13:56 | |
*** pcichy has quit IRC | 13:57 | |
*** dbecker has joined #openstack-infra | 13:59 | |
*** rossella_s has quit IRC | 13:59 | |
*** auristor1 has joined #openstack-infra | 13:59 | |
*** auristor has quit IRC | 13:59 | |
*** vivsoni_ has joined #openstack-infra | 14:01 | |
*** dbecker_ has joined #openstack-infra | 14:04 | |
*** thorre_se has joined #openstack-infra | 14:05 | |
*** tonyb_ has joined #openstack-infra | 14:05 | |
*** panda has joined #openstack-infra | 14:06 | |
*** imacdonn has quit IRC | 14:07 | |
*** sshnaidm_ has joined #openstack-infra | 14:07 | |
*** imacdonn has joined #openstack-infra | 14:07 | |
*** lbragstad has quit IRC | 14:07 | |
*** MapspaM has joined #openstack-infra | 14:09 | |
*** panda|sick has quit IRC | 14:10 | |
*** dbecker has quit IRC | 14:10 | |
*** vivsoni has quit IRC | 14:10 | |
*** SpamapS has quit IRC | 14:10 | |
*** tobberydberg has quit IRC | 14:10 | |
*** sileht has quit IRC | 14:10 | |
*** tonyb has quit IRC | 14:10 | |
*** sshnaidm|off has quit IRC | 14:10 | |
*** thorre has quit IRC | 14:10 | |
*** thorre_se is now known as thorre | 14:10 | |
*** tobberydberg has joined #openstack-infra | 14:10 | |
*** bhujay has joined #openstack-infra | 14:10 | |
*** sileht has joined #openstack-infra | 14:11 | |
*** armaan has quit IRC | 14:12 | |
*** johnthetubaguy_ has quit IRC | 14:12 | |
*** rossella_s has joined #openstack-infra | 14:13 | |
*** lbragstad has joined #openstack-infra | 14:14 | |
*** johnthetubaguy has joined #openstack-infra | 14:15 | |
*** caphrim007_ has quit IRC | 14:17 | |
*** caphrim007 has joined #openstack-infra | 14:17 | |
*** yamamoto has joined #openstack-infra | 14:18 | |
*** johnthetubaguy has quit IRC | 14:22 | |
*** bhujay has quit IRC | 14:22 | |
*** tobberydberg has quit IRC | 14:22 | |
*** johnthetubaguy has joined #openstack-infra | 14:23 | |
*** rossella_s has quit IRC | 14:23 | |
*** tobberydberg has joined #openstack-infra | 14:23 | |
*** bhujay has joined #openstack-infra | 14:23 | |
*** rossella_s has joined #openstack-infra | 14:23 | |
*** yamamoto has quit IRC | 14:25 | |
*** markvoelker has joined #openstack-infra | 14:26 | |
*** pgadiya has joined #openstack-infra | 14:27 | |
*** lbragstad has quit IRC | 14:28 | |
*** markvoelker has quit IRC | 14:29 | |
*** markvoelker has joined #openstack-infra | 14:29 | |
*** rossella_s has quit IRC | 14:30 | |
dmsimard | AJaeger: abandoned, thanks | 14:30 |
*** rossella_s has joined #openstack-infra | 14:33 | |
*** bhujay has quit IRC | 14:37 | |
*** bhujay has joined #openstack-infra | 14:42 | |
*** rossella_s has quit IRC | 14:42 | |
*** rossella_s has joined #openstack-infra | 14:43 | |
openstackgerrit | Merged openstack-infra/release-tools master: add missing lib files for presentation https://review.openstack.org/547689 | 14:44 |
*** danpawlik has joined #openstack-infra | 14:44 | |
*** armaan has joined #openstack-infra | 14:45 | |
*** markvoelker has quit IRC | 14:47 | |
*** danpawlik has quit IRC | 14:48 | |
*** salv-orlando has quit IRC | 14:49 | |
*** rossella_ has joined #openstack-infra | 14:50 | |
*** yamamoto has joined #openstack-infra | 14:55 | |
*** yamamoto has quit IRC | 14:56 | |
*** yamamoto has joined #openstack-infra | 14:56 | |
*** rossella_ has quit IRC | 14:57 | |
*** rossella_ has joined #openstack-infra | 14:58 | |
*** rossella_s has quit IRC | 14:58 | |
*** yuchangcai has quit IRC | 15:07 | |
*** baoli has joined #openstack-infra | 15:09 | |
*** lbragstad has joined #openstack-infra | 15:09 | |
*** salv-orlando has joined #openstack-infra | 15:12 | |
*** yuchangcai has joined #openstack-infra | 15:26 | |
*** yuchangcai has quit IRC | 15:30 | |
*** bhujay has quit IRC | 15:35 | |
*** bhujay has joined #openstack-infra | 15:35 | |
*** yamamoto_ has joined #openstack-infra | 15:39 | |
*** bhujay has quit IRC | 15:41 | |
*** jtomasek has joined #openstack-infra | 15:42 | |
*** yamamoto has quit IRC | 15:43 | |
*** yamahata has joined #openstack-infra | 15:46 | |
*** jtomasek has quit IRC | 15:48 | |
*** markvoelker has joined #openstack-infra | 15:57 | |
*** danpawlik has joined #openstack-infra | 15:57 | |
*** markvoelker has quit IRC | 15:58 | |
*** olaph1 has joined #openstack-infra | 16:06 | |
*** olaph has quit IRC | 16:06 | |
*** olaph1 is now known as olaph | 16:07 | |
*** VW has joined #openstack-infra | 16:07 | |
*** armaan has quit IRC | 16:10 | |
*** armaan has joined #openstack-infra | 16:10 | |
*** bhujay has joined #openstack-infra | 16:13 | |
*** danpawlik has quit IRC | 16:21 | |
*** lbragstad has quit IRC | 16:21 | |
ssbarnea | zaro_: hi! are you here? | 16:27 |
zaro_ | ssbarnea: hello | 16:28 |
ssbarnea | in fact @openstack-jjb was maybe better suited for this. i about reviewing and merging few python-jenkins improvements. | 16:29 |
ssbarnea | like https://review.openstack.org/#/c/205637/ | 16:30 |
*** baoli has quit IRC | 16:32 | |
*** VW has quit IRC | 16:33 | |
*** VW has joined #openstack-infra | 16:33 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 16:34 |
*** VW has quit IRC | 16:38 | |
*** MapspaM is now known as SpamapS | 16:44 | |
*** danpawlik has joined #openstack-infra | 16:47 | |
*** slaweq has joined #openstack-infra | 16:48 | |
*** armaan has quit IRC | 16:49 | |
*** armaan has joined #openstack-infra | 16:49 | |
*** slaweq has quit IRC | 16:50 | |
*** slaweq has joined #openstack-infra | 16:50 | |
*** jtomasek has joined #openstack-infra | 16:52 | |
*** danpawlik has quit IRC | 16:53 | |
*** olaph1 has joined #openstack-infra | 16:55 | |
*** olaph has quit IRC | 16:55 | |
*** danpawlik has joined #openstack-infra | 17:00 | |
*** lpetrut has joined #openstack-infra | 17:02 | |
*** danpawlik has quit IRC | 17:07 | |
*** danpawlik has joined #openstack-infra | 17:17 | |
*** bhujay has quit IRC | 17:18 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 17:19 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 17:25 |
*** armaan has quit IRC | 17:30 | |
*** danpawlik has quit IRC | 17:30 | |
*** armaan has joined #openstack-infra | 17:30 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 17:39 |
*** baoli has joined #openstack-infra | 17:42 | |
*** baoli_ has joined #openstack-infra | 17:45 | |
*** yamamoto_ has quit IRC | 17:46 | |
*** baoli has quit IRC | 17:47 | |
*** danpawlik has joined #openstack-infra | 17:53 | |
*** agopi has joined #openstack-infra | 17:57 | |
*** lpetrut has quit IRC | 17:58 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 18:00 |
*** baoli_ has quit IRC | 18:01 | |
*** yamahata has quit IRC | 18:03 | |
openstackgerrit | Sorin Sbarnea proposed openstack/python-jenkins master: Skip kerberos tests on darwin with py3 https://review.openstack.org/547776 | 18:04 |
*** baoli has joined #openstack-infra | 18:06 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 18:08 |
*** baoli has quit IRC | 18:11 | |
*** baoli has joined #openstack-infra | 18:12 | |
*** armaan has quit IRC | 18:12 | |
*** armaan has joined #openstack-infra | 18:14 | |
openstackgerrit | Sorin Sbarnea proposed openstack/python-jenkins master: Skip kerberos tests on darwin with py3 https://review.openstack.org/547776 | 18:14 |
*** baoli has quit IRC | 18:16 | |
*** baoli has joined #openstack-infra | 18:20 | |
*** pgadiya has quit IRC | 18:22 | |
*** baoli has quit IRC | 18:25 | |
*** baoli has joined #openstack-infra | 18:25 | |
*** baoli has quit IRC | 18:29 | |
*** pgadiya has joined #openstack-infra | 18:36 | |
*** baoli has joined #openstack-infra | 18:37 | |
*** pgadiya has quit IRC | 18:38 | |
*** danpawlik has quit IRC | 18:41 | |
*** baoli has quit IRC | 18:41 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 18:44 |
*** danpawlik has joined #openstack-infra | 18:45 | |
*** yamamoto has joined #openstack-infra | 18:46 | |
*** spligak has quit IRC | 18:48 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 18:50 |
*** danpawlik has quit IRC | 18:52 | |
*** xarses_ has joined #openstack-infra | 18:54 | |
*** andreww has joined #openstack-infra | 18:55 | |
*** yamamoto has quit IRC | 18:55 | |
*** xarses_ has quit IRC | 18:58 | |
*** aviau has quit IRC | 19:00 | |
*** aviau has joined #openstack-infra | 19:00 | |
*** yuchangcai has joined #openstack-infra | 19:06 | |
*** danpawlik has joined #openstack-infra | 19:09 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:09 |
mnaser | AJaeger: taking advantage of an empty gate? It’s so open! | 19:10 |
*** yuchangcai has quit IRC | 19:10 | |
AJaeger | mnaser: trying to import a job - and then figuring out that it's broken since Zuul v3 conversion ;( | 19:10 |
AJaeger | so, now the question is : How to fix properly? ;( | 19:11 |
AJaeger | fun ;) | 19:11 |
AJaeger | mnaser: want to remove some broken jobs running? https://review.openstack.org/547362 is a small non-critical change... | 19:12 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:13 |
AJaeger | argh, pre.yaml broken. Quotation mark fun ;( | 19:13 |
*** danpawlik has quit IRC | 19:13 | |
* tobiash never saw the openstack zuul that empty | 19:20 | |
fungi | most of our developer community are on airplanes | 19:22 |
fungi | or sitting in airports (like i am) | 19:22 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:24 |
AJaeger | tobiash: take a screenshot ;) | 19:25 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:33 |
*** lpetrut has joined #openstack-infra | 19:35 | |
*** andreww has quit IRC | 19:36 | |
*** apetrich has joined #openstack-infra | 19:38 | |
openstackgerrit | Dirk Mueller proposed openstack-infra/zuul-jobs master: Adjust SuSEfirewall configuration for Tumbleweed https://review.openstack.org/547779 | 19:39 |
openstackgerrit | Dirk Mueller proposed openstack-infra/openstack-zuul-jobs master: DNM https://review.openstack.org/546846 | 19:40 |
*** andreww has joined #openstack-infra | 19:44 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:45 |
*** xarses_ has joined #openstack-infra | 19:45 | |
*** andreww has quit IRC | 19:48 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 19:52 |
*** jtomasek has quit IRC | 19:54 | |
*** danpawlik has joined #openstack-infra | 19:58 | |
*** danpawlik has quit IRC | 20:08 | |
mnaser | i just had a fun little encounter | 20:09 |
mnaser | went all the way through security and an hour before boarding i get called up to the gate and back into us border security... | 20:10 |
clarkb | they checked you twice? | 20:10 |
*** danpawlik has joined #openstack-infra | 20:10 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 20:10 |
mnaser | yeah. i went through normal borders all a-ok | 20:10 |
clarkb | :/ | 20:11 |
mnaser | and then after that they called me out of the terminal back into the borders lol | 20:11 |
mnaser | "someone happens to have the same name as you" | 20:11 |
mnaser | fingerprints and all, but anyways .. it def passed some time lol | 20:11 |
clarkb | what airport are you in? I just landed at jfk | 20:12 |
fungi | not a pleasant way to pass the time | 20:12 |
mnaser | clarkb: i'm still in montreal (the us has a border 'crossing' point in the airport) | 20:13 |
clarkb | ah | 20:13 |
fungi | (getting accosted by border security _or_ experiencing jfk intl.) | 20:13 |
mnaser | clarkb: are you doing jfk -> dub ? | 20:13 |
mnaser | i'm doing montreal -> bos -> jfk -> dub (fun time ha) | 20:13 |
clarkb | mnaser: yup | 20:13 |
mnaser | delta 44? :p | 20:13 |
clarkb | yup :) | 20:13 |
clarkb | party plane | 20:13 |
mnaser | oh cool | 20:13 |
fungi | i should have brought us a disco ball | 20:14 |
mnaser | i have 51 minutes to make my connection in jfk | 20:14 |
fungi | ouch | 20:14 |
fungi | we'll wave as you sprint by | 20:14 |
mnaser | i've done 45 in chicago o'hare, i can do it :p | 20:14 |
mnaser | im at 42A | 20:15 |
mnaser | looks like its a full flight | 20:15 |
fungi | 23c for me | 20:16 |
mnaser | fungi: oou if things continue this way you might find an empty seat next to you | 20:16 |
mnaser | nice and spacious :p | 20:16 |
fungi | i'm rarely so lucky | 20:17 |
fungi | it'll probably be a screaming infant with a head cold next to me | 20:17 |
mnaser | aha | 20:18 |
*** danpawlik has quit IRC | 20:22 | |
*** tosky has joined #openstack-infra | 20:25 | |
clarkb | I'm going to find the gate a whole 6 hours early then find lunch | 20:25 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 20:26 |
*** sshnaidm has joined #openstack-infra | 20:27 | |
*** caphrim007_ has joined #openstack-infra | 20:27 | |
*** sshnaidm_ has quit IRC | 20:27 | |
*** caphrim007 has quit IRC | 20:30 | |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 20:41 |
mnaser | https://review.openstack.org/#/q/topic:fix-nova-timeout | 20:42 |
mnaser | if any infra's are core this is really useful to unblock stable/pike grenade gates | 20:42 |
*** oanson has quit IRC | 20:44 | |
AJaeger | mnaser: clark and corvus are - see https://review.openstack.org/#/admin/groups/50,members | 20:44 |
mnaser | wouldnt want to other clark on his quality time hanging around jfk | 20:45 |
mnaser | :p | 20:45 |
clarkb | I'm getting lunch I really need food | 20:46 |
clarkb | I dont rhink I have +2 on stabke grenade though | 20:46 |
clarkb | I seem to recall vhecking | 20:47 |
*** oanson has joined #openstack-infra | 20:47 | |
openstackgerrit | Merged openstack-infra/project-config master: Add doc job for qinling https://review.openstack.org/547719 | 20:48 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 20:50 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: DNM: Import integration test https://review.openstack.org/547765 | 20:51 |
fungi | mnaser: #openstack-qa is a better bet for running down grenade reviewers if you haven't already tried | 20:51 |
*** lpetrut has quit IRC | 20:51 | |
AJaeger | fungi, clarkb, it's devstack, not grenade that the fix is for | 20:52 |
clarkb | ah | 20:53 |
clarkb | once I eat I'll find a quiet apot and take a look | 20:53 |
openstackgerrit | Merged openstack-infra/project-config master: have tag-releases skip closed series https://review.openstack.org/546801 | 20:54 |
* fungi isn't a devstack core reviewer either | 20:54 | |
mnaser | It’s devstack affecting grenade :P | 20:57 |
openstackgerrit | Andreas Jaeger proposed openstack-dev/hacking master: Import integration test https://review.openstack.org/547765 | 21:02 |
AJaeger | a hack ;( for hacking ^ | 21:03 |
*** xarses_ has quit IRC | 21:04 | |
pabelanger | I'm down at hotel bar myself now | 21:10 |
mnaser | I booked too late to get space at the hotel for the event | 21:11 |
mnaser | I’m a 10 minute walk out | 21:11 |
clarkb | its gonna snow all week too :) | 21:12 |
*** gongysh has joined #openstack-infra | 21:15 | |
mnaser | clarkb: as someone who’s from Montreal, Dublin snow is nothing for me :P | 21:16 |
*** slaweq has quit IRC | 21:17 | |
*** slaweq has joined #openstack-infra | 21:18 | |
pabelanger | it was nice today, I was walking around in t-shirt at time. | 21:18 |
clarkb | ya I'm sure you'll ve fine. We finally got some sniw in portland last week and now I get another week of snow" | 21:18 |
clarkb | I'm sure it will be like portland snow all night melt by dinner rinse and repeat | 21:18 |
*** auristor1 has quit IRC | 21:19 | |
mnaser | That was my safe assumption so didn’t come with boots :p | 21:20 |
*** slaweq has quit IRC | 21:22 | |
*** d0ugal has quit IRC | 21:22 | |
*** apetrich has quit IRC | 21:22 | |
*** auristor has joined #openstack-infra | 21:26 | |
*** olaph has joined #openstack-infra | 21:33 | |
*** olaph1 has quit IRC | 21:35 | |
*** d0ugal has joined #openstack-infra | 21:40 | |
clarkb | mnaser: mriedem has a commwnt on th changes that I think is good but not -1'ing over it | 21:40 |
clarkb | basically make the doc trail a bit better | 21:40 |
*** vivsoni_ has quit IRC | 21:45 | |
*** olaph1 has joined #openstack-infra | 21:58 | |
*** olaph has quit IRC | 21:59 | |
*** danpawlik has joined #openstack-infra | 22:19 | |
*** olaph has joined #openstack-infra | 22:20 | |
*** xarses_ has joined #openstack-infra | 22:22 | |
*** olaph1 has quit IRC | 22:22 | |
*** andreww has joined #openstack-infra | 22:23 | |
*** xarses_ has quit IRC | 22:27 | |
mnaser | clarkb: cool thanks, I’ll throw a recheck too in there cause looks like this change didn’t get scheduled with the issues yesterday | 22:36 |
*** markvoelker has joined #openstack-infra | 22:40 | |
*** markvoelker has quit IRC | 22:45 | |
*** markvoelker has joined #openstack-infra | 22:46 | |
*** markvoelker has quit IRC | 22:51 | |
*** markvoelker has joined #openstack-infra | 22:54 | |
*** olaph1 has joined #openstack-infra | 23:03 | |
*** olaph has quit IRC | 23:04 | |
*** tosky has quit IRC | 23:07 | |
*** Goneri has joined #openstack-infra | 23:44 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!