Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: third_party/boto/bin/route53

Issue 698893003: Update checked in version of gsutil to version 4.6 (Closed) Base URL: http://dart.googlecode.com/svn/third_party/gsutil/
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/boto/bin/mturk ('k') | third_party/boto/bin/s3put » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boto/bin/route53
===================================================================
--- third_party/boto/bin/route53 (revision 33376)
+++ third_party/boto/bin/route53 (working copy)
@@ -131,7 +131,7 @@
for old_value in response.resource_records:
change1.add_value(old_value)
- change2 = changes.add_change("CREATE", name, type, ttl,
+ change2 = changes.add_change("UPSERT", name, type, ttl,
identifier=identifier, weight=weight)
for new_value in newvalues.split(','):
change2.add_value(new_value)
@@ -148,11 +148,11 @@
continue
if response.identifier != identifier or response.weight != weight:
continue
- change1 = changes.add_change("DELETE", name, type,
+ change1 = changes.add_change("DELETE", name, type,
identifier=response.identifier,
weight=response.weight)
change1.set_alias(response.alias_hosted_zone_id, response.alias_dns_name)
- change2 = changes.add_change("CREATE", name, type, identifier=identifier, weight=weight)
+ change2 = changes.add_change("UPSERT", name, type, identifier=identifier, weight=weight)
change2.set_alias(new_alias_hosted_zone_id, new_alias_dns_name)
print changes.commit()
« no previous file with comments | « third_party/boto/bin/mturk ('k') | third_party/boto/bin/s3put » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698