Flow with trigger "repeat" is set to run as system, however, the context is created by a userIssue Flow with trigger "repeat" is set to run as system, however, the context is created by a user Steps to Reproduce: impersonate Fred Luddycreate a flow with a trigger set to "repeat" every 10 secondsand in the property set to run as systemadd 'log' action, and activate the flowlook at the flow executions, and notice how the flow contexts are created as fred luddysince the flow is set to run as system, it should say systemCausethe [sys_flow_trigger_auto_script] record that gets created is set to "run as" as fredd luddyhowever, this is not a defect because flow designer makes use of attributes that tell the engine how a flow should executeif you open the [sys_flow_context] that was created in the attribute column, you'll see a JSON object, in this object you'll see the attribute "run_as" set to "system"this can be further verified by running the following script in a log action: "flow running as user: " + gs.getUserName();