Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Scriptable annotation not working in NodeLauncher #3756

benprim ·

With QB 12 and server wide variables I wanted to retest getting information trhought script in our custom openstack plugin.
but when I do this

private String imageName;

	@Editable(order = 500)
	@NotEmpty
	@Scriptable	
	public String getImageName() {
		return imageName;
	}

	public void setImageName(String ImageName) {
		this.imageName = ImageName;
	}

when I call getImageName() from our launchNode method, I still get the content of the string (instead of the interpreted script)
Am i missing something ?

  • replies 2
  • views 1368
  • stars 0
robinshen ADMIN ·
benprim ·

Thanks Robin !