Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

TODO: add at least one Added, Changed, Deprecated, Removed, Fixed or Security section
### Fixed

- update cmempy user access token each time a workflow starts


## [0.6.0] 2025-08-04
Expand Down
2 changes: 2 additions & 0 deletions cmem_plugin_loopwf/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ def start(self) -> bool:
if self.logger:
self.logger.info(f"Starting workflow execution: {self.entity_as_json_str()}")
try:
if self.execution_context:
setup_cmempy_user_access(context=self.execution_context.user)
if self.schema.type_uri == FileEntitySchema().type_uri and self.input_mime_type != "":
response = execute_workflow_io(
project_name=self.project_id,
Expand Down