-
Notifications
You must be signed in to change notification settings - Fork 20
multiline: respect comment and start space #462
Conversation
d00f3ed
to
c1121e7
Compare
@@ -23,7 +23,7 @@ | |||
examples: | |||
- name: Factories_ListByResourceGroup | |||
text: |- | |||
az datafactory list --resource-group "exampleResourceGroup" | |||
az datafactory list --resource-group "myResourceGroup2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this is myResourceGroup2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be the second resource-group in all example files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? They are exampleResourceGroup in all the examples.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed here: 6ec8b8a
@@ -32,7 +32,7 @@ | |||
examples: | |||
- name: Factories_Get | |||
text: |- | |||
az datafactory show --name "exampleFactoryName" --resource-group "exampleResourceGroup" | |||
az datafactory show --name "exampleFactoryName" --resource-group "myResourceGroup" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think what CLI team wanted is for all the resource name change it into myResourceName
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For ezample exampleFactoryName => myFactoryName
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal resource name are fixed in here: 9bf198e
@@ -181,8 +181,10 @@ export interface CodeModelAz { | |||
GetPreparerEntities(): any[]; | |||
GatherInternalResource(); | |||
FindExampleWaitById(id: string): string[][]; | |||
GetExampleItems(example: CommandExample, isTest: boolean, commandParams: any): string[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering when do we call this GetExampleItems and pass isTest as true?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. thx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's keep the referenceName for now
fix issue #429 #404 #406 #428