microsoft / azdo-databricks

A set of Build and Release tasks for Building, Deploying and Testing Databricks notebooks
MIT License
25 stars 30 forks source link

Execute Databricks Notebook Component Wording Issue #65

Open joshuawoodmars opened 9 months ago

joshuawoodmars commented 9 months ago

When adding a Execute Databricks Notebook Component, the Notebook parameters step has an information box that says "The parameters to override the ones defined on the Job Configuration File. These will be used on this notebook execution, and should be provided in JSON. i.e., {\"myParameter\":\"myValue\"}. Quotes should be preceeded by backslash."

This is unclear as {\"PARAM\":\"VALUE\"} returns SyntaxError: Unexpected token \ in JSON at position 1. However, if you use values {"PARAM":"VALUE"}, then these are parsed to the Databricks notebook correctly. I'm happy to do a PR to fix the wording.