We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before creating a new issue, please check the FAQ to see if your question is answered there.
import debugpy; print(debugpy.__version__)
Server[pid=XXXX] is already being debugged
No message
blob_trigger
sample-workitems
The related files are both in gist for easy reading, and in [repository](https://github.com/[felipewhitaker/azfunc](https://github.com/felipewhitaker/azfunc) for reproduction.
In short, starting the following resulted in Server[pid=4768] is already being debugged.
Server[pid=4768] is already being debugged
{ "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "UseDevelopmentStorage=true", "FUNCTIONS_WORKER_RUNTIME": "python", "4931ba_STORAGE": "UseDevelopmentStorage=true" } }
# function_app.py import azure.functions as func import logging app = func.FunctionApp() @app.blob_trigger(arg_name="myblob", path="sample-workitems", connection="4931ba_STORAGE") def blob_triggered(myblob: func.InputStream): logging.info(f"Python blob trigger function processed blob" f"Name: {myblob.name}" f"Blob Size: {myblob.length} bytes")
As shown in logs below (see 14):
... 8 Client --> Adapter: { "command": "attach", "arguments": { "name": "Attach to Python Functions", "type": "debugpy", "request": "attach", "connect": { "host": "localhost", "port": 9091 }, "logToFile": true, "preLaunchTask": "func: host start", "__configurationTarget": 6, "clientOS": "windows", "debugOptions": [ "RedirectOutput", "ShowReturnValue" ], "justMyCode": true, "showReturnValue": true, "workspaceFolder": "c:\\Users\\u61819\\OneDrive - Statkraft AS\\Documents\\code\\azurite", "__sessionId": "29c362e7-1f3b-4939-a221-372123f2e87d" }, "type": "request", "seq": 2 } 9 Client <-- Adapter: { "seq": 4, "type": "event", "event": "debugpyWaitingForServer", "body": { "host": "127.0.0.1", "port": 55693 } } ... 14 Client <-- Adapter: { "seq": 5, "type": "response", "request_seq": 2, "success": false, "command": "attach", "message": "Server[pid=4768] is already being debugged." } ...
The text was updated successfully, but these errors were encountered:
Possibly related to #168
Sorry, something went wrong.
Closing in favor of Azure/Azurite#2530
debonte
No branches or pull requests
Before creating a new issue, please check the FAQ to see if your question is answered there.
Environment data
import debugpy; print(debugpy.__version__)
if uncertain): 1.8.9Actual behavior
Server[pid=XXXX] is already being debugged
Expected behavior
No message
Steps to reproduce:
blob_trigger
sample-workitems
)The related files are both in gist for easy reading, and in [repository](https://github.com/[felipewhitaker/azfunc](https://github.com/felipewhitaker/azfunc) for reproduction.
In short, starting the following resulted in
Server[pid=4768] is already being debugged
.As shown in logs below (see 14):
The text was updated successfully, but these errors were encountered: