[ 
https://issues.apache.org/jira/browse/MESOS-4416?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15124796#comment-15124796
 ] 

Jingang Li commented on MESOS-4416:
-----------------------------------

Hi Benjamin,

Thanks for your fix. I think it should work for my ENV.

Have a nice day!

> Get the perf version function return fail
> -----------------------------------------
>
>                 Key: MESOS-4416
>                 URL: https://issues.apache.org/jira/browse/MESOS-4416
>             Project: Mesos
>          Issue Type: Bug
>          Components: c++ api
>    Affects Versions: 0.26.0
>         Environment: Suse SLE 12 SP1
>            Reporter: Jingang Li
>            Assignee: Benjamin Mahler
>             Fix For: 0.28.0
>
>
> When check the perf version with the "perf::version" gets the command output 
> of "perf --version". The command return string includes a "return key". It 
> cause the version parse fails. If add the strings::trim, the issue is fixed.
> The old code:
> {code}
> Future<Version> version()
> {
>   internal::Perf* perf = new internal::Perf({"--version"});
>   Future<string> output = perf->output();
>   spawn(perf, true);
>   return output
>     .then([](const string& output) -> Future<Version> {
>       // Trim off the leading 'perf version ' text to convert.
>       return Version::parse(strings::remove(
>           output, "perf version ", strings::PREFIX));
>     });
> };
> {code}
> Change to below, issue is fixed:
> {code}
> Future<Version> version()
> {
>   internal::Perf* perf = new internal::Perf({"--version"});
>   Future<string> output = perf->output();
>   spawn(perf, true);
>   return output
>     .then([](const string& output) -> Future<Version> {
>       // Trim off the leading 'perf version ' text to convert.
>       return Version::parse(strings::trim(strings::remove(
>           output, "perf version ", strings::PREFIX)));
>     });
> };
> {code}



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

Reply via email to