You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(SERVER-2470) list_all_transports implementation for puppetserver
This change implements a `list_all_transports(env)` method that loads
all available transports from a specified environment.
To test out, run `rake spec_prep` and use the following setup in pry:
```
require 'puppet'
require 'puppet/resource_api/transport'
require 'puppet/settings'
Puppet.initialize_settings
Puppet[:modulepath] = 'spec/fixtures/modules'
Puppet::ResourceApi::Transport.list_all_transports('production')
```
0 commit comments