Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Is It Not Possible To Add Artifacts To A Completed Task?

Is it not possible to add artifacts to a completed task?

  
  
Posted 2 years ago
Votes Newest

Answers 8


I was thinking such limitations will exist only for published

Published Task could not me "marked started" even when with force flag

  
  
Posted 2 years ago

👍

  
  
Posted 2 years ago

Thanks that works. Had to use Task.completed() for my version

  
  
Posted 2 years ago

I was thinking such limitations will exist only for published

  
  
Posted 2 years ago

tasks.add_or_update_artifacts/v2.10 (Invalid task status: expected=created, status=completed

  
  
Posted 2 years ago

Can I force add or something?

  
  
Posted 2 years ago

task = Task.get_task('task_id_here') task.mark_started(force=True) task.upload_artifact(..., wait_on_upload=True) task.mark_completed()

  
  
Posted 2 years ago

I think you can force it to be started, let me check (I pretty sure you can on aborted Task).

  
  
Posted 2 years ago