class ZuoraConnect::AppInstanceBase

def self.without_sticking

def self.without_sticking
   if self.connection.respond_to?(:without_sticking)
    self.connection.without_sticking do
      yield
    end
  else
    yield
  end
end