Skip to content

Commit 53b2c9e

Browse files
committed
Fix typo in debug messages
1 parent a837828 commit 53b2c9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/src/main/resources/plugins/oozie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def start_component(self, application_name, create_data):
6161
self._start_oozie(create_data['job_handle'])
6262

6363
def stop_component(self, application_name, create_data):
64-
logging.debug("start_component: %s %s", application_name, json.dumps(create_data))
64+
logging.debug("stop_component: %s %s", application_name, json.dumps(create_data))
6565
self._stop_oozie(create_data['job_handle'])
6666

6767
def create_component(self, staged_component_path, application_name, component, properties):

api/src/main/resources/plugins/sparkStreaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def start_component(self, application_name, create_data):
5757
self._control_component(create_data['start_cmds'])
5858

5959
def stop_component(self, application_name, create_data):
60-
logging.debug("start_component: %s %s", application_name, json.dumps(create_data))
60+
logging.debug("stop_component: %s %s", application_name, json.dumps(create_data))
6161
self._control_component(create_data['stop_cmds'])
6262

6363
def _control_component(self, cmds):

0 commit comments

Comments
 (0)