Github user ran-z commented on a diff in the pull request:

    https://github.com/apache/incubator-ariatosca/pull/138#discussion_r119428083
  
    --- Diff: aria/orchestrator/workflows/events_logging.py ---
    @@ -35,20 +35,20 @@ def _get_task_name(task):
     
     @events.start_task_signal.connect
     def _start_task_handler(task, **kwargs):
    -    # If the task has not implementation this is an empty task.
    -    if task.implementation:
    +    # If the task has no function this is an empty task.
    +    if task.function:
             suffix = 'started...'
             logger = task.context.logger.info
         else:
    -        suffix = 'has no implementation'
    +        suffix = 'has no function'
    --- End diff --
    
    actually, in this specific instance, it should probably remain 
`implementation` - function is an implementation (sorry for the confusing term 
in this context :D) detail, but in practice what the message means is that the 
user didn't input (there i go with the terms again.. :D) any implementation for 
the operation (AKA empty operation)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to