From b474d0b6fc4a9b0079b571faad16d5e57c9331c6 Mon Sep 17 00:00:00 2001 From: Kris Shannon Date: Mon, 15 Feb 2016 15:56:21 +1100 Subject: [PATCH] Patch missing rename from 4760defd05348b The fix for joyent/node-triton#88 renamed the metadataandtags function 'tagsFromOpts' to 'tagsFromCreateOpts' but didn't rename all of it's uses. --- lib/do_image/do_create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/do_image/do_create.js b/lib/do_image/do_create.js index d577ea7..1142208 100644 --- a/lib/do_image/do_create.js +++ b/lib/do_image/do_create.js @@ -41,7 +41,7 @@ function do_create(subcmd, opts, args, cb) { vasync.pipeline({arg: {}, funcs: [ function loadTags(ctx, next) { - mat.tagsFromOpts(opts, log, function (err, tags) { + mat.tagsFromCreateOpts(opts, log, function (err, tags) { if (err) { next(err); return;