Reputation: 2077
This what I did:
I have tried changing the major and minor version numbers in both the psd1 and the mof schema. I also tried deleting and redeploying the entire node! It is stuck on 1.0.1. Is there a cache in the Azure Automation pull server that could cause this?
Module version. Note the time it was uploaded:
Error reported from node. Notice the time reported and module version:
Upvotes: 2
Views: 481
Reputation: 11
Have you re-compiled your configuration after the new module is imported? The node configuration (mof) is tied to a specific module version. So if you haven't re-compile the node configuration, the node configuration still refers to your previous module version therefore the node will pull the previous version.
Upvotes: 1
Reputation: 31
I guess your node's LCM has this setting "AllowModuleOverwrite" set to true :
AllowModuleOverwrite = $True
Upvotes: 0