Remove return code for parallel serializer (#4747)

closes #4586
This commit is contained in:
Lars Hvam 2021-05-05 07:32:38 +02:00 committed by GitHub
parent 1b74a3f9a8
commit 5e789531e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -421,11 +421,11 @@ CLASS zcl_abapgit_serialize IMPLEMENTATION.
RECEIVE RESULTS FROM FUNCTION 'Z_ABAPGIT_SERIALIZE_PARALLEL'
IMPORTING
ev_result = lv_result
ev_path = lv_path
ev_result = lv_result
ev_path = lv_path
EXCEPTIONS
error = 1
system_failure = 2 MESSAGE lv_mess
error = 1
system_failure = 2 MESSAGE lv_mess
communication_failure = 3 MESSAGE lv_mess
OTHERS = 4.
IF sy-subrc <> 0.
@ -433,7 +433,7 @@ CLASS zcl_abapgit_serialize IMPLEMENTATION.
IF NOT lv_mess IS INITIAL.
mi_log->add_error( lv_mess ).
ELSE.
mi_log->add_error( |{ sy-msgv1 }{ sy-msgv2 }{ sy-msgv3 }{ sy-msgv3 }, { sy-subrc }| ).
mi_log->add_error( |{ sy-msgv1 }{ sy-msgv2 }{ sy-msgv3 }{ sy-msgv3 }| ).
ENDIF.
ENDIF.
ELSE.