浏览代码

replace ... with .

ooooo 1 年之前
父节点
当前提交
cdac82cbc8
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      taipy/core/_core.py
  2. 1 1
      taipy/core/_orchestrator/_dispatcher/_job_dispatcher.py

+ 1 - 1
taipy/core/_core.py

@@ -61,7 +61,7 @@ class Core:
             self.__class__._is_running = True
 
         self._manage_version_and_block_config()
-        self.__logger.info("Core service started...")
+        self.__logger.info("Core service started.")
         self.__start_dispatcher(force_restart)
 
     def stop(self, wait: bool = True, timeout: Optional[float] = None):

+ 1 - 1
taipy/core/_orchestrator/_dispatcher/_job_dispatcher.py

@@ -61,7 +61,7 @@ class _JobDispatcher(threading.Thread):
             self.join(timeout=timeout)
 
     def run(self):
-        self._logger.debug("Job dispatcher started...")
+        self._logger.debug("Job dispatcher started.")
         while not self._STOP_FLAG:
             try:
                 if self._can_execute():