MCPcopy Index your code
hub / github.com/pgadmin-org/pgadmin4 / update_cloud_process

Function update_cloud_process

web/pgadmin/misc/cloud/__init__.py:206–213  ·  view source on GitHub ↗

Update Cloud Server Process

(sid)

Source from the content-addressed store, hash-verified

204)
205@pga_login_required
206def update_cloud_process(sid):
207 """Update Cloud Server Process"""
208 _process = Process.for_user(server_id=sid).first()
209 if _process is None:
210 return success_return()
211 _process.acknowledge = None
212 db.session.commit()
213 return success_return()
214
215
216@blueprint.route(

Callers

nothing calls this directly

Calls 3

success_returnFunction · 0.90
for_userMethod · 0.80
firstMethod · 0.65

Tested by

no test coverage detected