Skip to content

Commit 936d996

Browse files
committed
Updating issue template
1 parent 3d2279c commit 936d996

File tree

1 file changed

+18
-26
lines changed

1 file changed

+18
-26
lines changed

ISSUE_TEMPLATE.md

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11

22
<!--
3-
Please provide a succinct description of the issue. Please make an effort to fill in the all the sections below or we may close your issue for being low quality.
3+
Please describe your issue or feature request below.
44
-->
55

66
#### Investigative information
77

88
Please provide the following:
99

1010
- Timestamp:
11-
- Function App version (1.0 or 2.0-beta):
1211
- Function App name:
1312
- Function name(s) (as appropriate):
14-
- Invocation ID:
15-
- Region:
16-
17-
<!--
18-
If you don't want to share your Function App name or Functions names on GitHub, please be sure to provide your Invocation ID, Timestamp, and Region - we can use this to look up your Function App/Function. Provide an invocation id per Function. See the [wiki](https://github.com/Azure/azure-webjobs-sdk-script/wiki/Sharing-Your-Function-App-name-privately) for more details.
19-
-->
2013

2114
#### Repro steps
2215

@@ -27,6 +20,7 @@ Example:
2720
2821
1. Step A
2922
2. Step B
23+
3024
-->
3125

3226
#### Expected behavior
@@ -63,33 +57,31 @@ Example:
6357

6458
Provide any related information
6559

66-
* Programming language used
6760
* Links to source
6861
* Bindings used
62+
* Dependencies
63+
6964
<!-- Uncomment this if you want to include your source (wrap it in details to make browsing easier)
7065
<details>
7166
<summary>Source</summary>
7267
73-
```csharp
74-
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.AuthLevelValue, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
75-
{
76-
log.Info("C# HTTP trigger function processed a request.");
77-
78-
// parse query parameter
79-
string name = req.GetQueryNameValuePairs()
80-
.FirstOrDefault(q => string.Compare(q.Key, "name", true) == 0)
81-
.Value;
68+
```python
69+
# __init__.py
8270
83-
// Get request body
84-
dynamic data = await req.Content.ReadAsAsync<object>();
71+
def main(req: func.HttpRequest) -> func.HttpResponse:
72+
logging.info('Python HTTP trigger function processed a request.')
8573
86-
// Set name to query string or body data
87-
name = name ?? data?.name;
74+
return "Done"
75+
```
8876
89-
return name == null
90-
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
91-
: req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
92-
}
77+
```txt
78+
azure-functions==1.0.0a4
79+
azure-functions-worker==1.0.0a4
80+
grpcio==1.14.2
81+
grpcio-tools==1.14.2
82+
protobuf==3.6.1
83+
six==1.11.0
9384
```
85+
9486
</details>
9587
-->

0 commit comments

Comments
 (0)