[ 
https://issues.apache.org/jira/browse/FLINK-27694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

LuNng Wang updated FLINK-27694:
-------------------------------
    Description: 
Some logs are in the wrong location, we need to move them to the inside of the 
'if' statement.

before

 
{code:java}
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]" {code}
after

 
{code:java}
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
{code}
 

 

 

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

```

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]"

```


> Move lint-python log location
> -----------------------------
>
>                 Key: FLINK-27694
>                 URL: https://issues.apache.org/jira/browse/FLINK-27694
>             Project: Flink
>          Issue Type: Improvement
>          Components: API / Python
>    Affects Versions: 1.15.0
>            Reporter: LuNng Wang
>            Priority: Major
>
> Some logs are in the wrong location, we need to move them to the inside of 
> the 'if' statement.
> before
>  
> {code:java}
> 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]" {code}
> after
>  
> {code:java}
> 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
> {code}
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

Reply via email to