Good Afternoon All,
I’ve been running into " Export Controls Violated" error in my code. I understand this means that there is export controls above it that restrict the usage of the Input into my code. The error I receive is :
One or more inputs to this build has markings or organizations applied that were not meant to be exported: {Provides a marking pull that I am unable to find}
Yet after attempting to resolve it, I find myself unable to fix it.
Workflow:
Pulled in data from a REST API into a datasheet, that then gets processed in Pipeline Builder to a new datasheet that I am trying to take the values in the rows to do new API pulls.
I have added the Data Connection source to the Code Repo’s External Systems. Enabled everything in Export Configuration and Code Import configuration. I have rebuilt the pipeline output to ensure there are no markings attached. Yet I still receive this error with a marking ID that I can’t recognize or find everywhere. I am the owner of it all. I’ve removed all markings in a attempt to resolve this. No luck.
Code looks like:
from transforms.api import transform_df, Output, Input
from transforms.external.systems import external_systems, Source
from datetime import datetime, timedelta
import time
import pandas as pd
# A few def's for the api pull
@external_systems(
OPENF1=Source("...")
)
@transform_df(
Output("..."),
input_df=Input("...")
)
def compute_position(ctx, OPENF1, input_df):
Does anyone have any idea’s?