You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2013/03/01 10:38:05 UTC

[2/3] git commit: CIMI: Fixed typo in volume_image column name in database

CIMI: Fixed typo in volume_image column name in database


Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/6216a34d
Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/6216a34d
Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/6216a34d

Branch: refs/heads/master
Commit: 6216a34dddf13b4b87bb01ad5e3ffa75fdd18861
Parents: 99a1198
Author: Michal Fojtik <mf...@redhat.com>
Authored: Mon Feb 25 12:03:55 2013 +0100
Committer: Michal fojtik <mf...@redhat.com>
Committed: Fri Mar 1 10:37:12 2013 +0100

----------------------------------------------------------------------
 server/lib/db/volume_template.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltacloud/blob/6216a34d/server/lib/db/volume_template.rb
----------------------------------------------------------------------
diff --git a/server/lib/db/volume_template.rb b/server/lib/db/volume_template.rb
index da7d4f7..7f54c33 100644
--- a/server/lib/db/volume_template.rb
+++ b/server/lib/db/volume_template.rb
@@ -18,7 +18,7 @@ module Deltacloud
 
     class VolumeTemplate < Entity
       validates_presence_of :volume_config
-      validates_presence_of :volume_Image
+      validates_presence_of :volume_image
     end
 
   end