Panda
Valued Contributor

@ErikJ I ran into a similar issue before—it was like calling the wrong twin by their sibling’s name! Instead of using job_parameters, I accidentally charmed my way through with notebook_params, and voila, it worked:

 

params = {
    "job_id": 12312312,
    "notebook_params": {
        "param1": "12",
        "param2": "test"
    }
}

 

So, lesson learned: If something isn’t working, maybe it’s not a bug—it’s just your parameters playing hide-and-seek. Always good to try the other twin!