Error on bench migrate and bench update

bench migrate
Migrating test_acerp
Updating frappe : [========================================]
Updating acumen_erpnext : [========================================]
Updating erpnext : [========================================]
Updating discuit : [========================================]
Traceback (most recent call last):
File “/usr/lib/python2.7/runpy.py”, line 174, in _run_module_as_main
main”, fname, loader, pkg_name)
File “/usr/lib/python2.7/runpy.py”, line 72, in _run_code
exec code in run_globals
File “/home/vishal/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 79, in
main()
File “/home/vishal/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 16, in main
click.Group(commands=commands)(prog_name=‘bench’)
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 716, in call
return self.main(*args, **kwargs)
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 696, in main
rv = self.invoke(ctx)
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 534, in invoke
return callback(*args, **kwargs)
File “/home/vishal/frappe-bench/env/local/lib/python2.7/site-packages/click/decorators.py”, line 17, in new_func
return f(get_current_context(), *args, **kwargs)
File “/home/vishal/frappe-bench/apps/frappe/frappe/commands/init.py”, line 24, in func
ret = f(frappe.dict(ctx.obj), *args, **kwargs)
File “/home/vishal/frappe-bench/apps/frappe/frappe/commands/site.py”, line 207, in migrate
migrate(context.verbose, rebuild_website=rebuild_website)
File “/home/vishal/frappe-bench/apps/frappe/frappe/migrate.py”, line 33, in migrate
sync_fixtures()
File “/home/vishal/frappe-bench/apps/frappe/frappe/utils/fixtures.py”, line 24, in sync_fixtures
ignore_links=True, overwrite=True)
File “/home/vishal/frappe-bench/apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py”, line 95, in import_doc
frappe.modules.import_file.import_file_by_path(f, data_import=True, force=True, pre_process=pre_process)
File “/home/vishal/frappe-bench/apps/frappe/frappe/modules/import_file.py”, line 54, in import_file_by_path
import_doc(doc, force=force, data_import=data_import, pre_process=pre_process)
File “/home/vishal/frappe-bench/apps/frappe/frappe/modules/import_file.py”, line 122, in import_doc
doc.insert()
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 212, in insert
self.run_before_save_methods()
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 710, in run_before_save_methods
self.run_method(“validate”)
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 661, in run_method
return Document.hook(fn)(self, *args, **kwargs)
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 839, in composer
return composed(self, method, *args, **kwargs)
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 822, in runner
add_to_return_value(self, fn(self, *args, **kwargs))
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 655, in
fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
File “/home/vishal/frappe-bench/apps/frappe/frappe/custom/doctype/custom_field/custom_field.py”, line 27, in validate
meta = frappe.get_meta(self.dt)
File “/home/vishal/frappe-bench/apps/frappe/frappe/init.py”, line 596, in get_meta
return frappe.model.meta.get_meta(doctype, cached=cached)
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/meta.py”, line 30, in get_meta
return frappe.cache().hget(“meta”, doctype, lambda: Meta(doctype))
File “/home/vishal/frappe-bench/apps/frappe/frappe/utils/redis_wrapper.py”, line 161, in hget
value = generator()
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/meta.py”, line 30, in
return frappe.cache().hget(“meta”, doctype, lambda: Meta(doctype))
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/meta.py”, line 62, in init
super(Meta, self).init(“DocType”, doctype)
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 80, in init
self.load_from_db()
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/meta.py”, line 67, in load_from_db
super(Meta, self).load_from_db()
File “/home/vishal/frappe-bench/apps/frappe/frappe/model/document.py”, line 111, in load_from_db
frappe.throw(
(“{0} {1} not found”).format(
(self.doctype), self.name), frappe.DoesNotExistError)
File “/home/vishal/frappe-bench/apps/frappe/frappe/init.py”, line 300, in throw
msgprint(msg, raise_exception=exc, title=title, indicator=‘red’)
File “/home/vishal/frappe-bench/apps/frappe/frappe/init.py”, line 293, in msgprint
_raise_exception()
File “/home/vishal/frappe-bench/apps/frappe/frappe/init.py”, line 266, in _raise_exception
raise raise_exception, encode(msg)
frappe.exceptions.DoesNotExistError: DocType OAuth Authorization Code not found

Hi @vishdha,

Seems you have custom field for doctype “OAuth Authorization Code” which is not available. Either add doctype “OAuth Authorization Code” or remove the field from fixtures

Thanks

thanks