Time |
Nick |
Message |
00:28 |
|
troy joined #evergreen |
07:14 |
|
rjackson_isl_hom joined #evergreen |
07:49 |
|
RFrasur joined #evergreen |
07:54 |
|
collum joined #evergreen |
08:32 |
|
mantis joined #evergreen |
08:38 |
|
mmorgan joined #evergreen |
09:19 |
|
Dyrcona joined #evergreen |
10:05 |
berick |
miker: hey. so I looked at streams and pub/sub and didn't see it offering any particular advantage over lists. early days, though, so i could easily have missed something good. the lists scale nicely, btw, since you can have any number of consumers (e.g. listeners) and each message is guaranteed to be popped by only one consumer |
10:21 |
Dyrcona |
I am trying to jog my memory on how things like icon_format work. There's obviously a table that links to config.coded_value_map that doesn't show up with I do \dt config.coded_value_map. The only foreign kesy that I get are config.record_attr_definition and config.composite_record_attr_entry_definition. Neither of these are correct for icon_format. |
10:23 |
berick |
Dyrcona: select * from config.composite_attr_entry_definition where coded_value in (select id from config.coded_value_map where ctype = 'icon_format'); |
10:25 |
Dyrcona |
berick: Yeah, I did that. Zero rows. |
10:26 |
Dyrcona |
Also, I typoed the table name. It's actually config.composite_attr_entry_definition. |
10:27 |
Dyrcona |
icon_format is not a composite attr. So, It looks like I have to go through config.record_attr_defintion to one of its linked tables. |
10:27 |
Dyrcona |
berick++ |
10:29 |
Dyrcona |
Hmm.. I misspoke. It says it is composite, but nothing in the composite_attr_entry_definition table. |
10:34 |
Dyrcona |
I used to just 'know' this, 'cause I used to add them with SQL. Guess I'll poke around in the client to see if I can figure out what I'm missing. |
10:41 |
Dyrcona |
Typos--- |
10:42 |
Dyrcona |
'icon_fomat' != 'icon_format' |
10:44 |
berick |
:) |
11:12 |
mantis |
Does anyone have a doc on the hotkeys in the web client? I'll update the documentation website. |
11:15 |
berick |
mantis: not exactly, but if you are on an Angular (eg2) page, Control-h shows the eg2 hotkeys |
11:15 |
berick |
which overlap w/ the angjs hotkeys in most cases |
11:22 |
mmorgan |
mantis: ? shows the hotkeys on the angjs pages. Also, fyi, there's bug 1842148 |
11:22 |
pinesol |
Launchpad bug 1842148 in Evergreen "angular: bring parity to keyboard shortcuts help menu" [Undecided,New] https://launchpad.net/bugs/1842148 |
11:33 |
berick |
oh i forgot all about ? |
11:33 |
berick |
mmorgan++ |
11:41 |
mantis |
mmorgan++ |
11:41 |
mantis |
berick++ |
12:01 |
|
jihpringle joined #evergreen |
13:37 |
mantis |
Are hotkeys only available for Angular pages (outside of accessing the top banner options)? |
13:55 |
jihpringle |
mantis: I think they work on angular and angularjs pages but not on pages that are still dojo |
14:07 |
|
collum joined #evergreen |
14:08 |
|
jihpringle joined #evergreen |
14:22 |
mantis |
jihpringle++ |
16:05 |
|
jihpringle joined #evergreen |
16:53 |
|
jihpringle joined #evergreen |
17:17 |
|
mmorgan left #evergreen |
18:17 |
|
rjackson_isl_hom joined #evergreen |
19:30 |
miker |
berick: thanks. traveling today for the first time in 2yr, but I'll put some more thoughts down than "hey, what about X!" soon-ish. for exiting functionality (that I personally don't want to lose) there's listing the consumers of a stream (like listing the registered listeners at a router). for new stuff at a glance, observability and recoverable failures seem very useful if we're going to switch to something that has that naturally. (lists just |
19:30 |
miker |
kinda float out there, like a fifo queue) |