Ben Jackson
Ben Jackson
> Currently Vimspector won't do this for you correction : can't.
@dansomething - if you're feeling generous, would you mind writing this up on the vimspector wiki? I really appreciate the work you put in to make that smooth and to...
Was this feature removed? > project.gui.motd.display=projectList As you can see from the screenshots, we're using it to display project-specific links and info.
> At some point in the 3.4 series we changed how the MOTD was displayed. Do you see the icon highlighted here? > > Once the MOTD has been seen...
related ? https://github.com/rundeck/rundeck/issues/4795
Took a brief look at [the code](https://github.com/rundeck/rundeck/blob/master/rundeckapp/grails-app/domain/rundeck/Option.groovy#L167-L169). I guess the issue is that the java.net.URL strictly validates (and requires RFC2396 addresses), and thus validates on construction (attempting to convert the...
FYI I have changed this locally (from URL type to String) and it seems to work.
you can do this: ``` project.globals.options_server=localhost:5555 ``` then you can set the option provider to: ``` valuesUrl: http://${globals.options_server}/options/.... ``` Which is what we ended up doing. What you _can't_ do...
you're welcome.
Using global still works for me on rundeck 3.2.8. The only problem with this approach is that if/when the request fails of times out, the URL printed to the UI...