Myriad Release update

2016-05-11 Thread Darin Johnson
OK, I got the updates merged.  I'm going to be updating documentation and
testing tomorrow.  If all goes well we should have a release tomorrow
evening.

Darin


[jira] [Commented] (MYRIAD-200) Increased Unit Test and Integration Testing

2016-05-11 Thread John Yost (JIRA)

[ 
https://issues.apache.org/jira/browse/MYRIAD-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15280028#comment-15280028
 ] 

John Yost commented on MYRIAD-200:
--

Hi Everyone,

I just created a branch off of my fork 
(https://github.com/hokiegeek2/incubator-myriad) and am currently working this 
ticket.

--John

> Increased Unit Test and Integration Testing
> ---
>
> Key: MYRIAD-200
> URL: https://issues.apache.org/jira/browse/MYRIAD-200
> Project: Myriad
>  Issue Type: Bug
>  Components: Executor, Scheduler
>Reporter: DarinJ
>
> Currently Unit Test coverage is weak in places also, a good integration test 
> framework would be helpful.  (potentially [minimesos|http://minimesos.org]?) 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (MYRIAD-198) Remove optionals when sane defaults are available

2016-05-11 Thread John Yost (JIRA)

[ 
https://issues.apache.org/jira/browse/MYRIAD-198?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15279991#comment-15279991
 ] 

John Yost commented on MYRIAD-198:
--

Wrapped up work, submitted pull request

> Remove optionals when sane defaults are available
> -
>
> Key: MYRIAD-198
> URL: https://issues.apache.org/jira/browse/MYRIAD-198
> Project: Myriad
>  Issue Type: Bug
>  Components: Executor, Scheduler
>Affects Versions: Myriad 0.2.0
>Reporter: DarinJ
>Priority: Minor
>  Labels: easyfix, newbie
>
> Currently we overuse Optionals in the config and then use an or method in 
> various factories later.  In many cases having the configuration return a 
> default when the parameter was specified would create cleaner code.  For 
> instance:
> {quote}
> Optional getCgroups() {
>   Optional.fromNullable(cgroups);
> }
> {quote}
> vs
> {quote}
> Boolean getCgroups() {
>   return cgroups != null ? cgroups : false;
> }
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)