Wednesday, 2014-12-24

*** signed8bit is now known as signed8bit_ZZZzz00:02
*** andreaf has quit IRC00:03
*** EmilienM is now known as EmilienM|afk00:05
*** andreaf has joined #heat00:05
*** pm90_ has joined #heat00:06
*** cdent has quit IRC00:17
*** signed8bit_ZZZzz is now known as signed8bit00:28
*** signed8bit has quit IRC00:33
*** pm90_ has quit IRC00:38
*** EricGonczer_ has joined #heat00:44
*** harlowja is now known as harlowja_away00:45
*** EricGonczer_ has quit IRC00:45
*** rm_work|away is now known as rm_work00:46
*** EricGonczer_ has joined #heat00:55
*** Marga_ has joined #heat00:55
*** Marga_ has quit IRC00:55
*** Marga_ has joined #heat00:56
*** rm_work is now known as rm_work|away01:03
*** rm_work|away is now known as rm_work01:04
*** Marga_ has quit IRC01:14
*** Marga_ has joined #heat01:14
*** rm_work is now known as rm_work|away01:15
*** alexheneveld has quit IRC01:18
*** EricGonczer_ has quit IRC01:19
*** rm_work|away is now known as rm_work01:19
*** tiantian has joined #heat01:28
*** pm90_ has joined #heat01:29
openstackgerrithuangtianhua proposed openstack/heat: Correct group's updates from a failed state  https://review.openstack.org/13552401:29
openstackgerrithuangtianhua proposed openstack/heat: Apply neutron network constraint  https://review.openstack.org/13582301:30
openstackgerrithuangtianhua proposed openstack/heat: Apply neutron port constraint  https://review.openstack.org/13583501:30
openstackgerrithuangtianhua proposed openstack/heat: Apply neutron subnet constraint  https://review.openstack.org/13587501:30
openstackgerrithuangtianhua proposed openstack/heat: Apply neutron router constraint  https://review.openstack.org/13588001:30
openstackgerritQiming Teng proposed openstack/heat: Avoid unnecessary passing of child_params in asg  https://review.openstack.org/14000301:37
openstackgerrithuangtianhua proposed openstack/heat: Split AWS/OS volume tests  https://review.openstack.org/14363401:41
openstackgerritQiming Teng proposed openstack/heat: Don't block stack deletion if user creds fail  https://review.openstack.org/13929901:49
*** nosnos has joined #heat01:50
*** Qiming has joined #heat01:50
openstackgerritQiming Teng proposed openstack/heat: Make Heat ASG always do rolling_updates  https://review.openstack.org/13794501:51
*** dsneddon_ has quit IRC01:52
openstackgerrithuangtianhua proposed openstack/heat: Reorganize user and access code  https://review.openstack.org/13995901:52
*** dsneddon_ has joined #heat01:52
openstackgerritQiming Teng proposed openstack/heat: Add InstanceList attr to AutoScalingGroup.  https://review.openstack.org/13707701:54
*** andreaf has quit IRC02:07
*** dsneddon_ has quit IRC02:12
*** dsneddon_ has joined #heat02:13
*** Marga_ has quit IRC02:21
*** pm90_ has quit IRC02:28
*** pm90_ has joined #heat02:29
*** pm90_ has quit IRC02:34
*** EricGonczer_ has joined #heat02:37
openstackgerritMiguel Grinberg proposed openstack/heat: proper handling of unsupported request methods  https://review.openstack.org/12091402:39
*** EricGonczer_ has quit IRC02:40
openstackgerritMiguel Grinberg proposed openstack/heat: Authenticate the domain user with id instead of username  https://review.openstack.org/14200502:42
*** erkules_ has joined #heat02:49
*** erkules has quit IRC02:49
openstackgerrithuangtianhua proposed openstack/heat: Implement 'InstanceId' for LaunchConfiguration  https://review.openstack.org/13340102:52
*** EricGonczer_ has joined #heat02:57
*** dims has joined #heat03:03
openstackgerrithuangtianhua proposed openstack/heat: Implement 'InstanceId' for LaunchConfiguration  https://review.openstack.org/13340103:04
*** nosnos has quit IRC03:04
*** dims_ has joined #heat03:04
tiantianasalkeld: hi, https://review.openstack.org/#/c/135524/ has been changed according your comment, please have a look :)03:04
*** dims_ has quit IRC03:06
*** dims has quit IRC03:07
*** dims has joined #heat03:07
*** dsneddon_ has quit IRC03:13
*** dsneddon_ has joined #heat03:14
*** EricGonczer_ has quit IRC03:15
openstackgerrithuangtianhua proposed openstack/heat: Implement 'InstanceId' for autoscaling group  https://review.openstack.org/13390503:16
asalkeldtiantian: will do03:26
openstackgerritQiming Teng proposed openstack/heat: Avoid unnecessary passing of child_params in asg  https://review.openstack.org/14000303:32
*** boris-42 has quit IRC03:33
openstackgerrithuangtianhua proposed openstack/heat-specs: Reorganize the code structure of resources  https://review.openstack.org/12977703:35
*** dims has quit IRC03:36
*** dims has joined #heat03:36
asalkeldtiantian: doesn't iter(stack) return fail resources too?03:37
asalkeldnot sure, how your patch works03:37
openstackgerritQiming Teng proposed openstack/heat: Add InstanceList attr to AutoScalingGroup.  https://review.openstack.org/13707703:38
*** jrist has quit IRC03:38
tiantianasalkeld: Can you be specific?03:40
*** zaneb has quit IRC03:40
asalkeldtotal_number = len(self.nested()) if self.nested() else 003:40
asalkeldtiantian: what does that ^ do?03:40
*** dims has quit IRC03:41
tiantianasalkeld: the number include failed ones03:41
asalkeldok, so is that adding anything to the patch?03:42
asalkeldi am struggling to see the logical change03:43
tiantianif there are some failed member in group, we should create new one and delete the failed one03:43
asalkeldok, so how is that patch achieving that?03:43
*** nosnos has joined #heat03:44
asalkeldshouldn't we check the state of the resources then?03:44
*** dims has joined #heat03:50
tiantiana group(has no DesiredCapacity prop) has 3 members, 2 create successful and 1 failed, so the group state is (CREATE, FAILED), to update the group, current_capacity = grouputils.get_size(self)=2, so self.adjust(2, adjustment_type=EXACT_CAPACITY)03:50
*** ccrouch has joined #heat03:51
*** zaneb has joined #heat03:51
tiantianthe new_capacity will equal current capacity in adjust(), so add the logic of total_number to make sure to do resize03:53
*** Marga_ has joined #heat03:53
asalkeldtiantian: so this is more likely to catch the case of reducing instances03:54
*** dims has quit IRC03:54
*** ccrouch has quit IRC03:55
asalkeldtiantian: shouldn't we just pass an option to get_size() to include failed?03:56
tiantianasalkeld: ok, will try and do test03:59
asalkeldi see that we need both healthy and total membership03:59
asalkeldwhich is fine03:59
asalkeldbut it would be nice to use the same api04:00
tiantianasalkeld: agree, thanks:)04:06
openstackgerrithuangtianhua proposed openstack/heat: Implement 'InstanceId' for LaunchConfiguration  https://review.openstack.org/13340104:08
openstackgerrithuangtianhua proposed openstack/heat: Implement 'InstanceId' for autoscaling group  https://review.openstack.org/13390504:11
*** Marga_ has quit IRC04:11
*** Marga_ has joined #heat04:14
*** dsneddon_ has quit IRC04:15
*** dsneddon has joined #heat04:16
*** Putns has quit IRC04:20
*** EricGonczer_ has joined #heat04:37
*** Marga_ has quit IRC04:38
*** Marga_ has joined #heat04:38
*** EricGonczer_ has quit IRC04:38
*** chlong has quit IRC04:48
*** Marga__ has joined #heat04:52
*** Marga_ has quit IRC04:52
*** Marga__ has quit IRC04:52
*** Marga_ has joined #heat04:52
*** unmeshg has joined #heat05:12
openstackgerritQiming Teng proposed openstack/heat: Avoid unnecessary passing of child_params in asg  https://review.openstack.org/14000305:13
*** Marga_ has quit IRC05:14
*** tiantian has quit IRC05:18
*** nkhare has joined #heat05:18
*** Qiming_ has joined #heat05:22
*** Qiming has quit IRC05:25
*** ishant has joined #heat05:29
cmystermorning05:30
*** hdd has joined #heat05:30
openstackgerritunmesh-gurjar proposed openstack/heat: Return available info for uncreated resource  https://review.openstack.org/14342505:30
*** unmeshg1 has joined #heat05:45
*** boris-42 has joined #heat05:46
*** unmeshg has quit IRC05:47
*** unmeshg1 has left #heat05:50
*** Marga_ has joined #heat05:51
*** unmeshg has joined #heat05:52
*** nosnos has quit IRC05:53
*** nosnos has joined #heat05:54
*** nosnos_ has joined #heat05:57
*** nosnos has quit IRC05:58
*** Marga_ has quit IRC06:00
skraynevgood morning06:00
*** hdd has quit IRC06:10
*** kopparam has joined #heat06:31
*** kopparam has quit IRC06:32
*** kopparam has joined #heat06:35
*** rm_work is now known as rm_work|away06:37
*** achanda has joined #heat06:39
*** kopparam has quit IRC06:41
openstackgerrithuangtianhua proposed openstack/heat: Correct group's updates from a failed state  https://review.openstack.org/13552406:45
*** k4n0 has joined #heat06:49
*** k4n0 has quit IRC06:50
asalkeldhi skraynev06:52
*** reed has quit IRC06:54
*** Marga_ has joined #heat06:56
*** tiantian has joined #heat06:58
*** Marga_ has quit IRC07:01
*** nosnos_ has quit IRC07:04
*** nosnos has joined #heat07:04
openstackgerrithuangtianhua proposed openstack/heat: Reorganize volume code  https://review.openstack.org/13992507:07
asalkeldlater07:11
openstackgerrithuangtianhua proposed openstack/heat: Split instance code into seperate file  https://review.openstack.org/13995507:14
*** pas-ha has joined #heat07:15
pas-hamorning and merry Christmas all :)07:16
tiantianmerry Christmas :)07:16
*** unmeshg has quit IRC07:18
*** serg_melikyan has joined #heat07:19
*** pas-ha has quit IRC07:21
* asalkeld heads out for last minute panic shopping07:24
*** serg_melikyan has quit IRC07:25
openstackgerrithuangtianhua proposed openstack/heat: Split AWS/OS volume tests  https://review.openstack.org/14363407:26
*** achanda has quit IRC07:30
*** pas-ha has joined #heat07:34
*** asalkeld has quit IRC07:36
openstackgerrithuangtianhua proposed openstack/heat: Split wait condition into separate files  https://review.openstack.org/13899307:38
openstackgerrithuangtianhua proposed openstack/heat: Split wait condition handle into separate files  https://review.openstack.org/13930307:38
openstackgerrithuangtianhua proposed openstack/heat: Split tests for AWS/OS waitconditions  https://review.openstack.org/14362607:38
*** unmeshg has joined #heat07:43
*** andreaf has joined #heat07:49
*** EmilienM|afk is now known as EmilienM07:51
*** andreaf has quit IRC07:56
*** Marga_ has joined #heat07:57
skraynevhi asalkeld :)08:01
openstackgerritMerged openstack/heat: Don't block stack deletion if user creds fail  https://review.openstack.org/13929908:01
*** Marga_ has quit IRC08:02
*** rm_work|away is now known as rm_work08:03
*** piccata has quit IRC08:06
*** piccata has joined #heat08:10
*** andreaf has joined #heat08:13
*** Qiming__ has joined #heat08:19
*** unmeshg has left #heat08:20
*** Qiming_ has quit IRC08:21
*** inc0 has joined #heat08:25
inc0good morning and merry christmas08:25
*** Qiming_ has joined #heat08:29
*** rm_work is now known as rm_work|away08:29
*** Qiming__ has quit IRC08:31
*** achanda has joined #heat08:33
*** kopparam has joined #heat08:40
*** rm_work|away is now known as rm_work08:45
*** Marga_ has joined #heat08:48
*** Marga_ has quit IRC08:50
*** alexheneveld has joined #heat09:00
*** derekh has joined #heat09:08
*** Flcn has quit IRC09:13
*** julienvey has joined #heat09:16
*** rm_work is now known as rm_work|away09:18
*** achanda has quit IRC09:19
*** achanda has joined #heat09:19
*** andreaf has quit IRC09:20
*** andreaf has joined #heat09:20
*** achanda_ has joined #heat09:21
*** achanda has quit IRC09:21
*** Marga_ has joined #heat09:21
*** tiantian has quit IRC09:23
*** harlowja_away has quit IRC09:26
*** Marga_ has quit IRC09:26
*** julienvey has quit IRC09:29
*** achanda_ has quit IRC09:38
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - Event  https://review.openstack.org/14276909:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - WatchRule  https://review.openstack.org/14277009:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - Resource  https://review.openstack.org/14178809:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - SoftwareConfig  https://review.openstack.org/14366809:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - WatchData  https://review.openstack.org/14365309:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - UserCreds  https://review.openstack.org/14180109:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - RawTemplate  https://review.openstack.org/14104609:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - SoftwareDeployment  https://review.openstack.org/14366909:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - Snapshot  https://review.openstack.org/14367009:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: First placeholder for versioned objects  https://review.openstack.org/14039309:42
openstackgerritMichal Jastrzebski (inc0) proposed openstack/heat: Versioned objects placeholder - ResourceData  https://review.openstack.org/14105209:42
*** Flcn has joined #heat09:44
*** tomek_adamczewsk has joined #heat09:50
*** Qiming_ has quit IRC09:54
*** Marga_ has joined #heat10:22
*** kopparam_ has joined #heat10:27
*** Marga_ has quit IRC10:27
*** kopparam has quit IRC10:28
*** tspatzier__ has joined #heat10:42
*** tomek_adamczewsk has quit IRC10:45
*** tomek_adamczewsk has joined #heat10:46
*** Marga_ has joined #heat10:58
*** kopparam_ has quit IRC11:06
*** derekh has quit IRC11:09
*** dims has joined #heat11:13
*** dims has quit IRC11:18
*** naohirot has quit IRC11:27
*** tspatzier__ has quit IRC11:29
*** Qiming has joined #heat11:36
*** k4n0 has joined #heat11:44
*** k4n0 has quit IRC11:44
*** Marga_ has quit IRC11:50
*** Marga_ has joined #heat11:52
*** Marga_ has quit IRC11:53
*** nkhare has quit IRC11:58
*** rm_work|away is now known as rm_work11:59
*** rm_work is now known as rm_work|away12:00
openstackgerritPavlo Shchelokovskyy proposed openstack/heat: Use AWS LoadBalancer with selinux-enabled image  https://review.openstack.org/12626312:03
*** killer_prince has quit IRC12:09
*** killer_prince has joined #heat12:10
*** killer_prince is now known as lazy_prince12:10
cmystershardy: any chance you are here ?12:12
*** nosnos has quit IRC12:13
*** nosnos has joined #heat12:13
*** ishant has quit IRC12:14
*** nosnos has quit IRC12:18
*** yassine has joined #heat12:18
*** erkules_ is now known as erkules12:21
*** dims has joined #heat12:49
*** rpothier has joined #heat13:04
*** tspatzier__ has joined #heat13:10
*** cdent has joined #heat13:13
*** prazumovsky has joined #heat13:20
*** dims has quit IRC13:34
*** pm90_ has joined #heat13:35
*** dims has joined #heat13:42
*** EricGonczer_ has joined #heat13:43
*** tspatzier__ has quit IRC13:44
*** Flcn has quit IRC14:01
openstackgerritPeter Razumovsky proposed openstack/heat: Improve Property error msg for properties validate  https://review.openstack.org/12715014:01
*** alexpilotti has joined #heat14:02
openstackgerritPeter Razumovsky proposed openstack/heat: Change Nova::FloatingIPAssociation resource's id  https://review.openstack.org/13762814:02
openstackgerritPeter Razumovsky proposed openstack/heat: Change Neutron::FloatingIPAssociation res's name  https://review.openstack.org/13779914:03
openstackgerritPeter Razumovsky proposed openstack/heat: Add attributes to Neutron::FloatingIPAssociation  https://review.openstack.org/13837614:03
openstackgerritPeter Razumovsky proposed openstack/heat: Add attributes to RouterInterface resource  https://review.openstack.org/13833514:03
openstackgerritPeter Razumovsky proposed openstack/heat: Change RouterInterface resource's resource_id  https://review.openstack.org/13833614:04
openstackgerritPeter Razumovsky proposed openstack/heat: Add property 'router' to RouterInterface  https://review.openstack.org/13958714:04
openstackgerritPeter Razumovsky proposed openstack/heat: Add property 'router' to Neutron::VPNService  https://review.openstack.org/13958814:04
openstackgerritPeter Razumovsky proposed openstack/heat: Don't validate custom constraints on default values  https://review.openstack.org/14104314:06
openstackgerritPeter Razumovsky proposed openstack/heat: Add property 'port' to RouterInterface  https://review.openstack.org/14105314:07
openstackgerritPeter Razumovsky proposed openstack/heat: Remove deprecated prop from Neutron::FloatingIP  https://review.openstack.org/14284814:08
openstackgerritPeter Razumovsky proposed openstack/heat: Remove depr prop SUBNET_ID from Neutron::Pool  https://review.openstack.org/14311114:08
openstackgerritPeter Razumovsky proposed openstack/heat: Remove depr NETWORK_ID in Neutron::NetworkGateway  https://review.openstack.org/14311914:08
openstackgerritPeter Razumovsky proposed openstack/heat: Remove deprecated NETWORK_ID from Neutron::Port  https://review.openstack.org/14313114:08
*** GonZo2K has joined #heat14:16
*** alexheneveld has quit IRC14:19
*** dims has quit IRC14:28
*** hdd has joined #heat14:29
*** hdd has quit IRC14:35
*** GonZo2K has quit IRC14:37
*** GonZo2K has joined #heat14:44
*** GonZo2K has quit IRC14:50
*** GonZo2K has joined #heat14:50
*** achanda has joined #heat14:52
*** Qiming has quit IRC14:53
*** randallburt has joined #heat14:57
*** randallburt has quit IRC14:57
*** randallburt has joined #heat14:58
*** jasond has joined #heat14:58
*** jasond has quit IRC15:02
*** jasond has joined #heat15:03
openstackgerritTetiana Lashchova proposed openstack/heat: Add 'required' attribute to OS::Heat::CWLiteAlarm properties  https://review.openstack.org/13713715:05
*** ccrouch has joined #heat15:11
*** achanda has quit IRC15:14
*** GonZo2K has quit IRC15:16
*** pm90_ has quit IRC15:17
*** dims__ has joined #heat15:18
*** GonZo2K has joined #heat15:19
*** achanda has joined #heat15:19
*** GonZo2K has quit IRC15:26
*** andreaf has quit IRC15:27
*** Flcn has joined #heat15:30
*** Flcn_ has joined #heat15:32
*** Flcn has quit IRC15:35
*** lazy_prince is now known as killer_prince15:44
*** alexpilotti_ has joined #heat15:48
*** pas-ha has quit IRC15:48
*** alexpilotti has quit IRC15:50
*** alexpilotti_ is now known as alexpilotti15:50
*** pm90_ has joined #heat15:56
openstackgerritJason Dunsmore proposed openstack/heat-specs: Stack Tags  https://review.openstack.org/13507616:00
*** hdd has joined #heat16:02
openstackgerritPeter Razumovsky proposed openstack/heat: Don't validate custom constraints on default values  https://review.openstack.org/14104316:03
*** pm90_ has quit IRC16:16
*** pm90_ has joined #heat16:17
openstackgerritPeter Razumovsky proposed openstack/heat: Don't validate custom constraints on default values  https://review.openstack.org/14104316:18
*** yassine has quit IRC16:19
*** alexpilotti has quit IRC16:31
*** hdd has quit IRC16:31
*** alexpilotti has joined #heat16:34
openstackgerritPeter Razumovsky proposed openstack/heat: Improve Property error msg for properties validate  https://review.openstack.org/12715016:34
openstackgerritPeter Razumovsky proposed openstack/heat: Improve Property error msg for properties validate  https://review.openstack.org/12715016:35
openstackgerritPeter Razumovsky proposed openstack/heat: Add property 'port' to RouterInterface  https://review.openstack.org/14105316:48
*** achanda has quit IRC16:48
*** achanda has joined #heat16:48
*** prazumovsky has quit IRC16:49
*** achanda has quit IRC16:53
openstackgerritMerged openstack/heat: Refactor Zaqar plugin client access  https://review.openstack.org/14371217:05
*** achanda has joined #heat17:07
*** tomek_adamczewsk has quit IRC17:07
*** tomek_adamczewsk has joined #heat17:07
*** EricGonc_ has joined #heat17:13
*** EricGonczer_ has quit IRC17:16
*** inc0_ has joined #heat17:27
*** serg_melikyan has joined #heat17:29
*** inc0 has quit IRC17:30
*** inc0_ has quit IRC17:32
*** serg_melikyan has quit IRC17:33
*** tomek_adamczewsk has quit IRC17:38
*** cdent has quit IRC17:47
*** Flcn_ has quit IRC17:56
*** bnemec has quit IRC18:03
*** hdd has joined #heat18:15
*** kebray has quit IRC18:34
*** alexheneveld has joined #heat18:34
*** EricGonc_ has quit IRC18:40
*** alexpilotti has quit IRC18:44
*** Marga_ has joined #heat18:46
*** alexheneveld has quit IRC18:46
*** Marga_ has quit IRC18:47
*** alexheneveld has joined #heat18:47
*** alexheneveld has quit IRC18:52
*** alexheneveld has joined #heat19:11
*** alexheneveld has quit IRC19:15
*** Marga_ has joined #heat19:18
*** swygue has quit IRC19:19
*** openstackgerrit has quit IRC19:19
*** openstackgerrit has joined #heat19:19
*** Marga_ has quit IRC19:22
*** serg_melikyan has joined #heat19:30
*** swygue has joined #heat19:33
*** serg_melikyan has quit IRC19:34
*** achanda has quit IRC19:38
*** EricGonczer_ has joined #heat19:39
*** hdd has quit IRC19:47
*** ccrouch has quit IRC19:58
*** ccrouch has joined #heat19:58
*** ccrouch has quit IRC20:02
*** EricGonczer_ has quit IRC20:02
*** pm90_ has quit IRC20:18
*** Marga_ has joined #heat20:19
*** boris-42 has quit IRC20:23
*** Marga_ has quit IRC20:23
*** pm90_ has joined #heat20:41
*** pm90_ has quit IRC20:41
*** pm90_ has joined #heat20:42
openstackgerritMerged openstack/heat: Remove default value from Port binding:vnic_type parameter  https://review.openstack.org/14373220:45
*** randallburt has quit IRC21:03
*** Marga_ has joined #heat21:20
*** Marga_ has quit IRC21:24
*** EricGonczer_ has joined #heat21:25
*** dims__ has quit IRC21:29
*** pm90_ has quit IRC21:33
*** pm90_ has joined #heat21:36
openstackgerritJason Dunsmore proposed openstack/heat: Add a "tags" parameter to stack-create  https://review.openstack.org/14390821:37
*** jasond has quit IRC21:37
*** EricGonczer_ has quit IRC21:40
*** rpothier has quit IRC21:47
*** sdake has joined #heat21:48
*** alexpilotti has joined #heat21:54
*** bnemec has joined #heat22:00
*** alexpilotti has quit IRC22:04
*** alexheneveld has joined #heat22:08
*** Marga_ has joined #heat22:20
*** Marga_ has quit IRC22:25
*** dims__ has joined #heat22:30
*** EricGonczer_ has joined #heat22:34
*** dims__ has quit IRC22:35
*** rm_work|away is now known as rm_work22:37
*** alexheneveld has quit IRC22:43
*** alexheneveld has joined #heat22:46
*** pm90_ has quit IRC23:06
*** pm90_ has joined #heat23:08
*** EricGonczer_ has quit IRC23:14
*** boris-42 has joined #heat23:34
*** alexheneveld has quit IRC23:35
*** tellesnobrega has quit IRC23:55
*** rm_work is now known as rm_work|away23:56

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