Error while running bench update

Hi,

While running bench update, I am getting this error:

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/uma/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 94, in
main()
File “/home/uma/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 18, in main
click.Group(commands=commands)(prog_name=‘bench’)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 722, in call
return self.main(*args, **kwargs)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 697, in main
rv = self.invoke(ctx)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 895, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 535, in invoke
return callback(*args, **kwargs)
File “/home/uma/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/uma/frappe-bench/apps/frappe/frappe/commands/init.py”, line 24, in _func
ret = f(frappe._dict(ctx.obj), *args, **kwargs)
File “/home/uma/frappe-bench/apps/frappe/frappe/commands/site.py”, line 222, in migrate
migrate(context.verbose, rebuild_website=rebuild_website)
File “/home/uma/frappe-bench/apps/frappe/frappe/migrate.py”, line 31, in migrate
frappe.modules.patch_handler.run_all()
File “/home/uma/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 29, in run_all
if not run_single(patchmodule = patch):
File “/home/uma/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 63, in run_single
return execute_patch(patchmodule, method, methodargs)
File “/home/uma/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 83, in execute_patch
frappe.get_attr(patchmodule.split()[0] + “.execute”)()
File “/home/uma/frappe-bench/apps/erpnext/erpnext/patches/v10_0/update_reserved_qty_for_purchase_order.py”, line 41, in execute
stock_bin.update_reserved_qty_for_sub_contracting()
File “/home/uma/frappe-bench/apps/erpnext/erpnext/stock/doctype/bin/bin.py”, line 129, in update_reserved_qty_for_sub_contracting
self.db_set(‘reserved_qty_for_sub_contract’, (reserved_qty_for_sub_contract - materials_transferred))
File “/home/uma/frappe-bench/apps/frappe/frappe/model/document.py”, line 962, in db_set
self.modified, self.modified_by, update_modified=update_modified)
File “/home/uma/frappe-bench/apps/frappe/frappe/database.py”, line 674, in set_value
values, debug=debug)
File “/home/uma/frappe-bench/apps/frappe/frappe/database.py”, line 166, in sql
self._cursor.execute(query, values)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/cursors.py”, line 166, in execute
result = self._query(query)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/cursors.py”, line 322, in _query
conn.query(q)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/connections.py”, line 856, in query
self._affected_rows = self._read_query_result(unbuffered=unbuffered)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/connections.py”, line 1057, in _read_query_result
result.read()
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/connections.py”, line 1340, in read
first_packet = self.connection._read_packet()
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/connections.py”, line 1014, in _read_packet
packet.check_error()
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/connections.py”, line 393, in check_error
err.raise_mysql_exception(self._data)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/pymysql/err.py”, line 107, in raise_mysql_exception
raise errorclass(errno, errval)
pymysql.err.InternalError: (1054, u"Unknown column ‘reserved_qty_for_sub_contract’ in ‘field list’")

Any idea how to resolve this issue?

Try this,
bench --force reload-doc buying doctype purchase_order_item_supplied

Thanks for the response Shreya… I am getting this error message when I am running this command.

bench --site site1.local --force reload-doc buying doctype purchase_order_item_supplied
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/uma/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 94, in
main()
File “/home/uma/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 18, in main
click.Group(commands=commands)(prog_name=‘bench’)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 722, in call
return self.main(*args, **kwargs)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 697, in main
rv = self.invoke(ctx)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 895, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 535, in invoke
return callback(*args, **kwargs)
File “/home/uma/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/uma/frappe-bench/apps/frappe/frappe/commands/init.py”, line 24, in _func
ret = f(frappe._dict(ctx.obj), *args, **kwargs)
File “/home/uma/frappe-bench/apps/frappe/frappe/commands/site.py”, line 254, in reload_doc
frappe.db.commit()
File “/home/uma/frappe-bench/apps/frappe/frappe/database.py”, line 753, in commit
enqueue_jobs_after_commit()
File “/home/uma/frappe-bench/apps/frappe/frappe/database.py”, line 903, in enqueue_jobs_after_commit
kwargs=job.get(“queue_args”))
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/rq/queue.py”, line 227, in enqueue_call
job = self.enqueue_job(job, at_front=at_front)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/rq/queue.py”, line 298, in enqueue_job
pipe.execute()
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/redis/client.py”, line 2641, in execute
return execute(conn, stack, raise_on_error)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/redis/client.py”, line 2495, in _execute_transaction
connection.send_packed_command(all_cmds)
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/redis/connection.py”, line 538, in send_packed_command
self.connect()
File “/home/uma/frappe-bench/env/local/lib/python2.7/site-packages/redis/connection.py”, line 442, in connect
raise ConnectionError(self._error_message(e))
redis.exceptions.ConnectionError: Error 111 connecting to localhost:11000. Connection refused.

Did you do a bench start on another shell?

No, I have not run a bench start on another shell.

You should have bench start started somewhere else, and then run a migrate

Thanks a ton guys. I was able to fix it with a bench start in another shell…

Thanks… :slight_smile: