]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/files/default/replication-bin/replicate-changesets
Add Time to whitelist of classes to load for YAML.safe_load
[chef.git] / cookbooks / planet / files / default / replication-bin / replicate-changesets
index 9e16151471b5a695f5d3cd858d6056268e9f6b06..a5312e1e6d52344e755f304790a1f1fd604f0375 100644 (file)
@@ -141,8 +141,8 @@ end
 # replicated to a file.
 class Replicator
   def initialize(config)
-    @config = YAML.load(File.read(config))
-    @state = YAML.load(File.read(@config["state_file"]))
+    @config = YAML.safe_load(File.read(config))
+    @state = YAML.safe_load(File.read(@config["state_file"]), [Time])
     @conn = PGconn.connect(@config["db"])
     # get current time from the database rather than the current system
     @now = @conn.exec("select now() as now").map { |row| Time.parse(row["now"]) }[0]