This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 4858cd7cb97354ae54f8e7d47aeaaddad714c9dd | |
Author: Dustin Lundquist <[email protected]> | |
Date: Mon Jul 6 13:53:46 2015 -0700 | |
Ensure floating IPs only use IPv4 addresses | |
Description: | |
Presently Neutron doesn't validate the address family of floating IP | |
addresses or the internal addresses they are associated with. It merely | |
associates the first IP of the floating IP's port with the first IP of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cinder/volume/drivers/rbd.py b/cinder/volume/drivers/rbd.py | |
index 7dae2ec..f1d4d85 100644 | |
--- a/cinder/volume/drivers/rbd.py | |
+++ b/cinder/volume/drivers/rbd.py | |
@@ -710,9 +710,27 @@ class RBDDriver(driver.VolumeDriver): | |
with RBDVolumeProxy(self, volume_name) as volume: | |
try: | |
volume.unprotect_snap(snap_name) | |
+ except self.rbd.InvalidArgument: | |
+ LOG.info(_LI("Unable to unprotect snapshot %s. InvalidArgument"), snap_name) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'twitter' | |
require 'json' | |
require 'faraday' | |
# things you must configure | |
PATH_TO_DROPBOX = "/Users/your_name/Dropbox/backup/tweets/" # you need to create this folder | |
TWITTER_USER = "your_twitter_username" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This script will create an external file datagroup. | |
This is the same of creating the data group from the web interface at: | |
System -> File Management -> Data Group File List | |
Create on your computer a file called datagroup.txt with the following content: | |
"name1" := "value1", | |
"name2" := "value2", | |
"name3" := "value3", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/wp-content/plugins/qtranslate/qtranslate_core.php b/wp-content/plugins/qtranslate/qtranslate_core.php | |
index 17b4669..9ac128a 100644 | |
--- a/wp-content/plugins/qtranslate/qtranslate_core.php | |
+++ b/wp-content/plugins/qtranslate/qtranslate_core.php | |
@@ -414,6 +414,7 @@ function qtrans_updateTermLibrary() { | |
function qtrans_strftime($format, $date, $default = '', $before = '', $after = '') { | |
// don't do anything if format is not given | |
+ return $default; |
NewerOlder