# File lib/rhc/context_helper.rb, line 10
    def namespace_context
      # right now we don't have any logic since we only support one domain
      # :nocov: remove nocov when cart tests go back in
      domain = rest_client.domains[0]
      raise RHC::DomainNotFoundException("No domains configured for this user.  You may create one using 'rhc domain create'.") if domain.nil?

      domain.id
    end