Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-27694

Move lint-python log location

    XMLWordPrintableJSON

Details

    Description

      Some logs are in the wrong location, we need to move them to the inside of the 'if' statement.

       

      before

      print_function "STEP" "installing wget..."
      if [ $STEP -lt 1 ]; then
        install_wget ${SUPPORT_OS[$os_index]}
        STEP=1
        checkpoint_stage $STAGE $STEP
      fi
      print_function "STEP" "install wget... [SUCCESS]" 

      after

      if [ $STEP -lt 1 ]; then
        print_function "STEP" "installing wget..."
        install_wget ${SUPPORT_OS[$os_index]}
        STEP=1
        checkpoint_stage $STAGE $STEP
        print_function "STEP" "install wget... [SUCCESS]" 
      fi
      

       

       

       

      Attachments

        Issue Links

          Activity

            People

              ana4 Luning Wang
              ana4 Luning Wang
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: