Skip to content
Snippets Groups Projects
Commit fa609326 authored by Mateus Rambo Strey's avatar Mateus Rambo Strey
Browse files

small fix in builder cache key

parent 69a83250
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,9 @@ class Builder ...@@ -3,7 +3,9 @@ class Builder
protected protected
def self.cache_key(rid, last_modified) def self.cache_key(rid, last_modified)
last_modified = Time.at(0).to_s if last_modified.nil?
rid + '/' + last_modified rid + '/' + last_modified
end end
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment