Skip to content

Commit

Permalink
feat:add sql debug feature
Browse files Browse the repository at this point in the history
  • Loading branch information
duanxiaoqiu committed May 17, 2023
1 parent 2e12ffa commit d7934c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ export enum OP {


/**
* [c-s]
* @param selectedSettingIds
*/
* [c-s]
* @param selectedSettingIds
*/
SAVE_INTERPRETER_BINDINGS = 'SAVE_INTERPRETER_BINDINGS',

/**
Expand Down
4 changes: 2 additions & 2 deletions zeppelin-web-angular/projects/zeppelin-sdk/src/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export type SendArgumentsType<K extends keyof MessageSendDataTypeMap> = MessageS

export type ReceiveArgumentsType<
K extends keyof MessageReceiveDataTypeMap
> = MessageReceiveDataTypeMap[K] extends undefined ? () => void : (data?: MessageReceiveDataTypeMap[K]) => void;
> = MessageReceiveDataTypeMap[K] extends undefined ? () => void : (data?: MessageReceiveDataTypeMap[K]) => void;

export class Message {
public connectedStatus = false;
Expand Down Expand Up @@ -167,7 +167,7 @@ export class Message {

if (message.op === OP.PARAGRAPH) {
if (isResponseForRequestFromThisClient &&
this.lastMsgIdSeqSent > msgIdSeqReceived
this.lastMsgIdSeqSent > msgIdSeqReceived
) {
console.log('PARAPGRAPH is already updated by shortcircuit');
return false;
Expand Down

0 comments on commit d7934c5

Please sign in to comment.