Method: Puppet::Network::ClientRequest#call

Defined in:
lib/puppet/network/client_request.rb

#callObject

A common way of talking about the full call. Individual servers are responsible for setting the values correctly, but this common format makes it possible to check rights.

Raises:

  • (ArgumentError)


14
15
16
17
18
# File 'lib/puppet/network/client_request.rb', line 14

def call
  raise ArgumentError, _("Request is not set up; cannot build call") unless handler and method

  [handler, method].join(".")
end