Uploaded image for project: 'Hadoop Common'
  1. Hadoop Common
  2. HADOOP-10236

Fix typo in o.a.h.ipc.Client#checkResponse

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Trivial
    • Resolution: Fixed
    • 2.2.0
    • 2.3.0
    • None
    • Reviewed

    Description

      There's a typo in o.a.h.ipc.Client.java.

                throw new IOException("Client IDs not matched: local ID="
                    + StringUtils.byteToHexString(clientId) + ", ID in reponse="
                    + StringUtils.byteToHexString(header.getClientId().toByteArray()));
      

      It should be fixed as follows:

                throw new IOException("Client IDs not matched: local ID="
                    + StringUtils.byteToHexString(clientId) + ", ID in response="
                    + StringUtils.byteToHexString(header.getClientId().toByteArray()));
      

      Attachments

        1. HADOOP-10236.patch
          0.9 kB
          Akira Ajisaka

        Activity

          People

            aajisaka Akira Ajisaka
            aajisaka Akira Ajisaka
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: