From e5a78009f6bd593e7e3957f0dadb470e623396dd Mon Sep 17 00:00:00 2001 From: Jesse Wolfe Date: Mon, 15 Mar 2010 14:16:09 -0700 Subject: Feature #3347 REST-ified FileBucket FileBucket Files have been reimplemented as an indirector terminus so that they can be transmitted over REST. The old Network::Client.dipper has been replaced with a compatibility later in FileBucket::Dipper that uses the indirector to access filebucket termini. Slightly revised patch: * No longer allows nil contents in FileBucket outside of initialization * Uses File.exist? instead of the deprecated File.exists? * Tweaks JSON serialization and de-serialization to include "path" Deferred issues: * Feature #3371 "FileBucket should not keep files in memory". * Feature #3372 "Replace FileBucket Dipper with more idiomatic calls" --- lib/puppet/application/server.rb | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/puppet/application/server.rb') diff --git a/lib/puppet/application/server.rb b/lib/puppet/application/server.rb index afdad54fb..7aeb6ad5d 100644 --- a/lib/puppet/application/server.rb +++ b/lib/puppet/application/server.rb @@ -81,7 +81,6 @@ Puppet::Application.new(:server) do require 'etc' require 'puppet/file_serving/content' require 'puppet/file_serving/metadata' - require 'puppet/checksum' xmlrpc_handlers = [:Status, :FileServer, :Master, :Report, :Filebucket] -- cgit