mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix typo
This commit is contained in:
parent
5cfed2a7b8
commit
42dde76080
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ public class RemoteEventClient implements RemoteEventClientWrapper {
|
|||
|
||||
@Override
|
||||
public void onMetaInfosReceived(Map<String, String> infos) {
|
||||
client.onMetaInfodReceived(infos);
|
||||
client.onMetaInfosReceived(infos);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -279,7 +279,7 @@ public class RemoteInterpreterEventClient implements ResourcePoolConnector {
|
|||
gson.toJson(appendOutput)));
|
||||
}
|
||||
|
||||
public void onMetaInfodReceived(Map<String, String> infos) {
|
||||
public void onMetaInfosReceived(Map<String, String> infos) {
|
||||
sendEvent(new RemoteInterpreterEvent(RemoteInterpreterEventType.META_INFOS,
|
||||
gson.toJson(infos)));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue