You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Wei-Chiu Chuang (JIRA)" <ji...@apache.org> on 2018/12/19 15:11:00 UTC

[jira] [Created] (HBASE-21619) Fix warning message caused by incorrect ternary operator evaluation

Wei-Chiu Chuang created HBASE-21619:
---------------------------------------

             Summary: Fix warning message caused by incorrect ternary operator evaluation
                 Key: HBASE-21619
                 URL: https://issues.apache.org/jira/browse/HBASE-21619
             Project: HBase
          Issue Type: Bug
            Reporter: Wei-Chiu Chuang
            Assignee: Wei-Chiu Chuang


{code:title=LoadIncrementalHFiles#doBulkLoad}
LOG.warn(
          "Bulk load operation did not find any files to load in " + "directory " + hfofDir != null
              ? hfofDir.toUri().toString()
              : "" + ".  Does it contain files in " +
                  "subdirectories that correspond to column family names?");
{code}
JDK complains {{"Bulk load operation did not find any files to load in " + "directory " + hfofDir != null}} is always true, which is not what is intended, and that produces a wrong message.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)