Skip to content

Commit 21601ce

Browse files
authored
Update message variable in DBMS_PIPE handling
Replaced l_msg with l_jsonMain in DBMS_PIPE.PACK_MESSAGE.
1 parent 8863e07 commit 21601ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/package/lilam.pkb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ raise;
10661066
)
10671067
as
10681068
l_pipeName VARCHAR2(100);
1069-
l_msg JSON_OBJ_LILAM;
1069+
-- l_msg JSON_OBJ_LILAM;
10701070
l_status PLS_INTEGER;
10711071
l_now TIMESTAMP := SYSTIMESTAMP;
10721072
l_retryInterval INTERVAL DAY TO SECOND := INTERVAL '30' SECOND;
@@ -1094,7 +1094,7 @@ raise;
10941094
end if ;
10951095
if l_status = 2 then
10961096
DBMS_PIPE.RESET_BUFFER;
1097-
DBMS_PIPE.PACK_MESSAGE(l_msg);
1097+
DBMS_PIPE.PACK_MESSAGE(l_jsonMain);
10981098
end if;
10991099
dbms_session.sleep(0.3);
11001100
end loop;

0 commit comments

Comments
 (0)