-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2690 from cloudfoundry/azure-bump-rebase
Azure bump rebase
- Loading branch information
Showing
5 changed files
with
113 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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 file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
require 'fog/core' | ||
|
||
# This can be removed once fog-google fixes | ||
# https://github.com/fog/fog-google/issues/421, which will allow us to upgrade | ||
# fog-core to 2.2.4. | ||
original = Fog::Logger[:deprecation] | ||
Fog::Logger[:deprecation] = nil | ||
|
||
require 'fog/aliyun' | ||
# Hack until https://github.com/fog/fog-aliyun/pull/155 is merged and released | ||
Fog::Aliyun::Compute = Fog::Compute::Aliyun | ||
|
||
require 'fog/aws' | ||
require 'fog/local' | ||
require 'fog/google' | ||
require 'fog/azurerm' | ||
require 'fog/openstack' | ||
|
||
Fog::Logger[:deprecation] = original |
This file contains 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