diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-06-14 15:08:24 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-06-14 15:08:24 -0400 |
commit | 780f88f4dd8ddd36c54e217ea5af3b18b7339758 (patch) | |
tree | e753155e3a6f7eaa68b2493902e5a43758ed403b /cloudinit | |
parent | d4e9f5d1a9afa5728094cb863dc0a9a0dc09dd04 (diff) | |
download | vyos-cloud-init-780f88f4dd8ddd36c54e217ea5af3b18b7339758.tar.gz vyos-cloud-init-780f88f4dd8ddd36c54e217ea5af3b18b7339758.zip |
[Revert] Remove trailing dot from GCE metadata URL
This change broke tox tests.
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/sources/DataSourceGCE.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceGCE.py b/cloudinit/sources/DataSourceGCE.py index c660a350..9234d1f8 100644 --- a/cloudinit/sources/DataSourceGCE.py +++ b/cloudinit/sources/DataSourceGCE.py @@ -25,7 +25,7 @@ from cloudinit import util LOG = logging.getLogger(__name__) BUILTIN_DS_CONFIG = { - 'metadata_url': 'http://metadata.google.internal/computeMetadata/v1/' + 'metadata_url': 'http://metadata.google.internal./computeMetadata/v1/' } REQUIRED_FIELDS = ('instance-id', 'availability-zone', 'local-hostname') |