*** r1chardj0n3s is now known as r1chardj0n3s_afk | 00:13 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 00:28 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 01:49 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 02:18 | |
*** miqui has joined #storyboard | 03:07 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 04:31 | |
*** miqui has quit IRC | 05:44 | |
*** k4n0 has joined #storyboard | 05:52 | |
*** k4n0 has quit IRC | 06:39 | |
*** k4n0 has joined #storyboard | 06:53 | |
paulsher1ood | RMS? | 07:11 |
---|---|---|
*** k4n0 has quit IRC | 07:31 | |
*** k4n0 has joined #storyboard | 07:44 | |
*** jtomasek has quit IRC | 07:58 | |
*** yolanda has quit IRC | 08:09 | |
*** MaxV has joined #storyboard | 08:37 | |
openstackgerrit | yolanda.robla proposed openstack-infra/storyboard: Add API call to return task statuses https://review.openstack.org/135221 | 08:46 |
*** yolanda has joined #storyboard | 08:46 | |
*** jcoufal has joined #storyboard | 08:58 | |
*** jcoufal has quit IRC | 09:01 | |
*** jcoufal has joined #storyboard | 09:01 | |
*** jcoufal has quit IRC | 09:01 | |
*** jcoufal has joined #storyboard | 09:02 | |
*** jedimike has joined #storyboard | 09:03 | |
*** alexismonville has joined #storyboard | 09:28 | |
*** wdutch has joined #storyboard | 10:03 | |
*** jtomasek has joined #storyboard | 10:27 | |
*** reed has joined #storyboard | 10:27 | |
openstackgerrit | Merged openstack-infra/storyboard: Working Directory Management https://review.openstack.org/130649 | 11:08 |
openstackgerrit | Merged openstack-infra/storyboard-webclient: Correct virtualenv to activate https://review.openstack.org/133167 | 11:45 |
*** alexismonville has quit IRC | 12:18 | |
*** alexismonville has joined #storyboard | 13:24 | |
*** miqui has joined #storyboard | 13:51 | |
*** mase_x200 has joined #storyboard | 14:04 | |
*** CTtpollard has joined #storyboard | 14:17 | |
*** openstackgerrit has quit IRC | 14:33 | |
*** openstackgerrit has joined #storyboard | 14:34 | |
*** openstackgerrit has quit IRC | 14:49 | |
*** openstackgerrit has joined #storyboard | 14:49 | |
*** MaxV has quit IRC | 14:57 | |
*** MaxV has joined #storyboard | 14:58 | |
*** mase_x200 has quit IRC | 14:58 | |
*** MaxV has quit IRC | 15:03 | |
reed | something looks weird on https://storyboard.openstack.org/#!/project_group/58 | 15:09 |
reed | the list of stories doesn't seem to be pertinent to the group | 15:10 |
*** MaxV has joined #storyboard | 15:29 | |
*** CTtpollard has quit IRC | 15:36 | |
*** petefoth has joined #storyboard | 15:37 | |
*** CTtpollard has joined #storyboard | 15:38 | |
*** CTtpollard has quit IRC | 15:38 | |
*** CTtpollard has joined #storyboard | 15:39 | |
*** mrmartin has joined #storyboard | 15:46 | |
*** CTtpollard has quit IRC | 15:49 | |
*** alexismonville has quit IRC | 15:50 | |
*** alexismonville has joined #storyboard | 15:51 | |
*** CTtpollard has joined #storyboard | 15:54 | |
krotscheck | reed: Checking | 16:27 |
krotscheck | reed: Observing the same in other locations. Looks like an error in the project group search logic, I’ll see if I can narrow it down with some additional tests. | 16:27 |
reed | krotscheck, sweet, thanks | 16:27 |
yolanda | hi krotschek, i have question about event dashboard, i see it's relying on a subscription events table, but it isn't never filling for me , at least locally, how does it work? | 16:32 |
yolanda | i tested in production, and it also isn't reporting all the events to the projects or stories i'm subscribed to | 16:32 |
krotscheck | yolanda: That table is populated by events being taken off of the worker queue. | 16:39 |
krotscheck | yolanda: So, if a POST/PUT/DELETE action is received by the API, an event is fired into a RabbitMQ queue. | 16:40 |
krotscheck | (Which has to be enabled via the config file) | 16:40 |
yolanda | krotscheck, how can i enable it, is that in docs? | 16:40 |
yolanda | i wanted to work in the events dashboard | 16:40 |
krotscheck | yolanda: The storyboard-worker-daemon command will spin up a number of subscribers to that queue that process the events. | 16:40 |
yolanda | krotschek, why is it done in that way, and not just associating subscriptions + events table? | 16:41 |
krotscheck | yolanda: Because an event can trigger on multiple subscriptions, which causes duplicates. If you are subbed to a project, and a project group, and you get an event that falls under both, a simple table join would result in two events. | 16:42 |
krotscheck | yolanda: Also, you would not have the ability to remove events from your feed. | 16:42 |
yolanda | k, i'll take a look at how to enable it for my local work | 16:42 |
krotscheck | yolanda: And event emails would require a lot of complicated joins. | 16:43 |
* krotscheck thought there was documentation for rabbit.... | 16:43 | |
yolanda | krotschek, another question i had. I was working in the configurable task status, the todo, in progress, etc... | 16:43 |
krotscheck | Right | 16:43 |
yolanda | but i found that is quite hard to just abstract it to a table at the moment, because we are relying a lot on the hardcoded status, such as todo, merged, etc... | 16:43 |
yolanda | so at the moment what i did is an api call in the backend that returns the list of task states, to consume that from the webclient | 16:44 |
krotscheck | That seems like a good first step. | 16:44 |
yolanda | k, wanted to check if you agree with that approach | 16:44 |
krotscheck | Is there a clear, incremental path we can take to our optimal solution? | 16:44 |
yolanda | krotscheck, well, next step could be to add a taskstatus table, and maybe have some flags for the todo, merged, etc... we rely on that for summary of tasks for example | 16:45 |
krotscheck | Yeah, I agree. I’m pondering the name of your API endpoint, but I don’t have any better ideas. | 16:45 |
krotscheck | Seems like a logical next step :) | 16:46 |
yolanda | krotschek and how will you load that on the webclient? I was thinking in loading the list in a constant when the storyboard module is loaded | 16:46 |
krotscheck | I’d give it its own resource implementation with the criteria decorator, and have it cache itself on the first request. | 16:47 |
krotscheck | Ultimately I’d love to use somethign like angular-data so we don’t even have to worry about caching | 16:47 |
yolanda | it's used on criteria, and in some directives, i think | 16:47 |
krotscheck | Enabling notifications is in the [notifications] block on storyboard.conf.sample | 16:48 |
yolanda | thx, i'll take a look at it | 16:48 |
*** alexismonville has quit IRC | 16:48 | |
*** jcoufal has quit IRC | 16:49 | |
krotscheck | If you don’t have mysql running locally, you can just go “vagrant up” and it’ll spin up a VM for ya. Config for that requires using “127.0.0.1” though because mysql changes its connection from IP to socket if it sees “localhost" | 16:49 |
krotscheck | Ugh. I need to spend like a week doign nothing but documentation. | 16:49 |
yolanda | oh, i have it locally, no problem for that | 16:49 |
krotscheck | Yeah, but do you have rabbit? :) | 16:50 |
krotscheck | dun dun duuuuuun. | 16:50 |
yolanda | i can have everything :) | 16:51 |
yolanda | i'll try to make that work for tomorrow to work on that | 16:53 |
krotscheck | Neat! | 16:54 |
yolanda | for the task states, i prefer to have the backend merged first | 16:54 |
yolanda | to make sure we are ok with the api names, content, etc | 16:54 |
*** k4n0 has quit IRC | 16:56 | |
*** alexismonville has joined #storyboard | 17:02 | |
*** jtomasek has quit IRC | 17:12 | |
*** alexismonville has quit IRC | 17:22 | |
*** wdutch has quit IRC | 17:36 | |
openstackgerrit | yolanda.robla proposed openstack-infra/storyboard: Add API call to return task statuses https://review.openstack.org/135221 | 17:52 |
*** MaxV has quit IRC | 17:55 | |
*** reed has quit IRC | 17:58 | |
*** alexismonville has joined #storyboard | 18:10 | |
*** reed has joined #storyboard | 18:11 | |
*** jedimike has quit IRC | 18:18 | |
*** alexismonville has quit IRC | 18:41 | |
*** MaxV has joined #storyboard | 19:06 | |
*** MaxV has quit IRC | 19:10 | |
*** jtomasek has joined #storyboard | 19:47 | |
*** MaxV has joined #storyboard | 19:55 | |
*** MaxV has quit IRC | 20:16 | |
*** MaxV has joined #storyboard | 20:16 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 20:25 | |
*** alexismonville has joined #storyboard | 20:29 | |
*** jtomasek has quit IRC | 20:46 | |
*** alexismonville has quit IRC | 21:02 | |
*** mrmartin has quit IRC | 21:56 | |
*** alexismonville has joined #storyboard | 22:06 | |
openstackgerrit | Michael Krotscheck proposed openstack-infra/storyboard-webclient: Streamlined task edit form. https://review.openstack.org/135739 | 22:08 |
*** miqui has quit IRC | 22:09 | |
*** openstackgerrit has quit IRC | 22:10 | |
*** openstackgerrit has joined #storyboard | 22:10 | |
*** alexismonville has quit IRC | 22:32 | |
*** alexismonville has joined #storyboard | 22:36 | |
*** ruhe_ has joined #storyboard | 22:45 | |
*** ruhe_ has left #storyboard | 22:46 | |
*** MaxV has quit IRC | 22:56 | |
*** alexismonville has quit IRC | 23:08 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!