ContributionsMost RecentMost LikesSolutionsRe: "Fail safe upon execution" checkbox in the Type Converter Thank you @mbowen "Fail safe upon execution" checkbox in the Type Converter Hello, I noted checkbox “Fail safe upon execution” in Type Converter. Looks like this was added recently. I cannot find this checkbox in the documentation. Documentation of the Type Converter contain screenshot without this checkbox. Is this new thing? Thanks, Vlad Re: Issue (or bug) with mapper snap Thank you, @del and @ptaylor ! Re: Issue (or bug) with mapper snap Hi @bojanvelevski , Unfortunately your pipeline works in correct way only for cases where Gate don’t have any input snaps. I modified your pipeline by adding Filter between JSON Generator and Gate ( SnapLogic_Bug_Gate_Count_reproduce_alternative_2022_01_11.slp (7.3 KB) ). Filter snap don’t return any documents (I did it specially). In this case you will see result “File exists”. But I need calculate count of input documents. And if this count equal zero then I am expecting to have “File not found” as a result. Anyway, thank you for your help. Issue (or bug) with mapper snap Hello, I have found something like bug. I cannot understand the strange result of the following pipeline. When I run validation of this pipeline, I see following results. As expected count of the input documents in the Gate output equal zero. You can see it on the screenshot below. Following screenshot shows the settings of the mapper “Log File Not Found”: If open Exression builder then you can see expression (as showed on the screenshot below). Window “Output Preview” contain expected result “File Not Found” (because count = 0). However, result of this mapper contain value “File exists” (as showed on the screenshot below). As a result the whole pipeline works incorrect during execution process. Could somebody help me to sort out with this strange behavior of the Mapper snap? I am attaching my pipeline. SnapLogic_Bug_Gate_Count_reproduce_2022_01_11.slp (9.8 KB) Thanks Issue with "Copy" snap after "Scipt" snap Hello, I have a question about strange behavior of the snap Copy. Part of the my pipeline looks like you can see from the screenshot below: By logic of the Copy snap, input and output of this should be the same but, in this case “folder” property is change as you can see from the following screenshot. The snap “Copy (Debug)” has following settings: Snap “Script Folder List” contain the following Python script: from com.snaplogic.scripting.language import ScriptHook #from com.snaplogic.scripting.language.ScriptHook import * from datetime import datetime class TransformScript(ScriptHook): def __init__(self, input, output, error, log): self.input = input self.output = output self.error = error self.log = log def execute(self): self.log.info("Executing Transform script") while self.input.hasNext(): data = self.input.next() try: dt1 = datetime.strptime(data["FileLastUploadDate"], '%Y-%m-%d') dt2 = datetime.now() data["CurrentDate"] = datetime.now() m = dt1.month p_list = [] for y in range(dt1.year, dt2.year + 1): while m <= 12: data["folder"] = str(y) + '_P' + str(m).zfill(2) m += 1 self.output.write(data) m = 1 except Exception as e: data["errorMessage"] = e.message self.error.write(data) self.log.info("Finished executing the Transform script") hook = TransformScript(input, output, error, log) Please advise what I should do to fix it. Why it’s happened? Actually the same thing happened with mapper (this snap convert the “folder” property in the same way as Copy snap). I can’t understand why this “transformation” is happened. Thanks