>
> AzureLiveTestUtils.defaultProperties(properties);
> checkNotNull(setIfTestSystemPropertyPresent(properties,
> "oauth.endpoint"), "test.oauth.endpoint");
>
> return properties;
>
> }
> +
> + // @Override
> + protected Template refreshTemplate() {
> + return this.template =
> addRunScriptToTemplateWithDelay(this.buildTemplate(this.client.templateBuilder()));
> + }
> +
> + protected static Template addRunScriptToTemplateWithDelay(Template
> template) {
> + template.getOptions().runScript(Statements.newStatementList(new
> Statement[]{AdminAccess.standard(), Statements.exec("sleep 50"),
> InstallJDK.fromOpenJDK()}));
> + return template;
> + }
Already done :) You should be able to rebase to the latest master and use it!
https://github.com/jclouds/jclouds/pull/977
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r68015387