*** harlowja has quit IRC | 00:23 | |
*** livelace has quit IRC | 00:35 | |
*** livelace has joined #heat | 00:35 | |
*** ricolin has joined #heat | 00:42 | |
*** dmellado has quit IRC | 01:22 | |
*** rcernin_ has joined #heat | 01:23 | |
*** stevebaker has quit IRC | 01:24 | |
*** rcernin has quit IRC | 01:25 | |
*** rcernin has joined #heat | 02:00 | |
*** rcernin_ has quit IRC | 02:03 | |
*** hongbin has joined #heat | 02:22 | |
*** dmellado has joined #heat | 02:38 | |
*** edmondsw has quit IRC | 02:45 | |
*** stevebaker has joined #heat | 02:48 | |
*** nicolasbock has quit IRC | 03:32 | |
*** hongbin has quit IRC | 03:33 | |
*** sdake has quit IRC | 05:13 | |
*** hjensas has quit IRC | 05:52 | |
*** cnsstnthstrs has quit IRC | 05:58 | |
*** gkadam has joined #heat | 06:31 | |
*** hjensas has joined #heat | 06:56 | |
*** dmellado has quit IRC | 07:04 | |
*** dmellado has joined #heat | 07:06 | |
*** rcernin has quit IRC | 07:07 | |
*** dmellado has quit IRC | 07:12 | |
*** sshnaidm|afk is now known as sshnaidm | 07:17 | |
*** dmellado has joined #heat | 07:19 | |
*** shardy has joined #heat | 07:38 | |
*** jtomasek has joined #heat | 07:42 | |
*** ricolin has quit IRC | 09:04 | |
*** ricolin has joined #heat | 10:23 | |
*** nicolasbock has joined #heat | 10:44 | |
*** slagle has quit IRC | 11:01 | |
*** edmondsw has joined #heat | 11:33 | |
*** sdake has joined #heat | 12:15 | |
*** jcoufal has joined #heat | 13:01 | |
*** hjensas has quit IRC | 13:28 | |
*** shardy is now known as shardy_mtg | 13:31 | |
*** jcoufal has quit IRC | 13:33 | |
*** jcoufal has joined #heat | 13:47 | |
ricolin | A reminder for all, I just send release patches out https://review.openstack.org/#/q/topic:release-heat+(status:open+OR+status:merged) | 13:58 |
---|---|---|
ricolin | to release heat cycle-with-intermediary repos, heat Rocky rc2, and stable branches | 13:58 |
ricolin | since we don't got enought core around, that's do a office hour this week | 14:00 |
*** dmellado has quit IRC | 14:01 | |
*** stevebaker has quit IRC | 14:01 | |
*** shardy_mtg is now known as shardy | 14:01 | |
zaneb | o/ | 14:01 |
ricolin | zaneb, o/ | 14:01 |
*** nicolasbock has quit IRC | 14:04 | |
zaneb | looks like all the stable stuff merged | 14:04 |
ricolin | and it will released | 14:04 |
ricolin | once I figure out what's going on in https://review.openstack.org/#/c/594949/ | 14:05 |
zaneb | ricolin: you have 8.0.6 in there twice | 14:07 |
ricolin | http://logs.openstack.org/49/594949/1/check/openstack-tox-validate/da415c2/job-output.txt.gz#_2018-08-22_12_50_09_005606 | 14:07 |
ricolin | yep, | 14:07 |
*** pbourke has quit IRC | 14:07 | |
zaneb | new one should be 8.0.7 | 14:07 |
ricolin | done! | 14:08 |
*** hjensas has joined #heat | 14:09 | |
*** pbourke has joined #heat | 14:09 | |
*** pbourke has quit IRC | 14:23 | |
*** pbourke has joined #heat | 14:25 | |
*** nicolasbock has joined #heat | 14:31 | |
*** jrist has joined #heat | 14:45 | |
*** openstackgerrit has quit IRC | 15:31 | |
*** nicolasbock has quit IRC | 15:43 | |
*** dmellado has joined #heat | 15:45 | |
*** nicolasbock has joined #heat | 15:49 | |
*** gkadam is now known as gkadam-afk | 15:52 | |
*** gkadam-afk is now known as gkadam | 16:49 | |
*** gkadam has quit IRC | 16:54 | |
*** ricolin has quit IRC | 17:21 | |
*** DinaBelova has quit IRC | 17:25 | |
*** mchlumsky has quit IRC | 17:25 | |
*** EmilienM has quit IRC | 17:25 | |
*** afazekas_ has quit IRC | 17:25 | |
*** EmilienM has joined #heat | 17:31 | |
jillr | is there any way to include a number value in a list_join, or some native functionality to convert the param to a string? | 18:04 |
jillr | I know I can use yaql to do the str(), but I'd really prefer not to have a whole mess of yaql if I can avoid it | 18:05 |
*** shardy is now known as shardy_afk | 18:15 | |
*** ChanServ has quit IRC | 18:16 | |
*** stevebaker has joined #heat | 18:18 | |
*** ChanServ has joined #heat | 18:22 | |
*** barjavel.freenode.net sets mode: +o ChanServ | 18:22 | |
*** dmellado has quit IRC | 18:22 | |
*** stevebaker has quit IRC | 18:23 | |
*** stevebaker has joined #heat | 20:31 | |
*** harlowja has joined #heat | 20:42 | |
*** jcoufal has quit IRC | 20:49 | |
*** jtomasek has quit IRC | 20:57 | |
zaneb | jillr: I'd have expected it to Just Work(TM) | 21:06 |
zaneb | because non-strings get serialised as JSON https://ask.openstack.org/en/question/98902/serialise-data-to-json-in-hot/ | 21:06 |
jillr | zaneb: hrm, ok I was getting an error like 'list elements must be string, json, or sth', running it again now without the yaql str() conversion and will get the exact failure again | 21:17 |
zaneb | ugh, looking at the code I see we only do that for dicts and lists :( | 21:19 |
zaneb | jillr: your only options are probably to use yaql or create an OS::Heat::Value resource with type string | 21:21 |
zaneb | unless the number is being passed as a parameter or something somewhere, in which case you can adjust the parameter type to string | 21:21 |
jillr | zaneb: it's a parameter, but I really need to restrict the input to numbers http://paste.openstack.org/show/728639/ | 21:22 |
jillr | so, yaql it is :) will toss over a bug too as an rfe. | 21:22 |
*** livelace has quit IRC | 22:24 | |
*** rcernin has joined #heat | 22:34 | |
*** livelace has joined #heat | 22:37 | |
*** ChanServ has quit IRC | 22:49 | |
*** ChanServ has joined #heat | 23:03 | |
*** barjavel.freenode.net sets mode: +o ChanServ | 23:03 | |
zaneb | jillr: I wonder if you can use str_replace instead of list_join there | 23:13 |
* jillr looks ... hrm, maybe - I'll give that a shot. | 23:14 | |
jillr | thx | 23:14 |
zaneb | jillr: http://paste.openstack.org/show/728646/ | 23:17 |
*** slagle has joined #heat | 23:17 | |
jillr | zaneb: sweet - ty | 23:20 |
zaneb | good news, it allows numbers according to my reading of the code | 23:20 |
* jillr kicks off a new deploy | 23:21 | |
jillr | zaneb: that worked! | 23:31 |
zaneb | w00t | 23:31 |
* jillr gleefully nukes the yaql | 23:32 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!