Parameter Changes Not Reflected in Function Call #1799
Unanswered
Subham7201
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hey @Subham7201, In theory, you can listen to the
However, there are multiple reasons why this might be difficult and why I wouldn't recommend doing this at all:
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Team,
This is how the DSL looks.
If a document is being referenced from multiple places, and changes (such as adding or removing parameters) are made in the document from another location. I want these changes (e.g., adding/removing parameters) to automatically propagate wherever the document is being referenced, and for the changes to be initialized with default values.
For example, I have a call to document like this:
call ABC(a=10 b=13)
However, when I modify the parameters of the ABC (e.g., adding a new parameter, say, 'c'), the changes don't get reflected.
What approach should I take to ensure that any changes to the document's parameters are immediately reflected in the call? Any advice or best practices would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions