Investigative information
Please provide the following:
- Timestamp: Irrelevant
- Function App name: local development
- Function name(s) (as appropriate): local development
- Core Tools version: 3.0.3442
Repro steps
Provide the steps required to reproduce the problem:
- Create and ordinary timer triggered function
- Declare entrypoint as usual:
- def main(mytimer: func.TimerRequest) -> None:
Expected behavior
Provide a description of the expected behavior.
Content expect in mytimer object (sample):
{
"schedule":{
},
"scheduleStatus": {
"last":"2016-10-04T10:15:00+00:00",
"lastUpdated":"2016-10-04T10:16:00+00:00",
"next":"2016-10-04T10:20:00+00:00"
},
"isPastDue":false
}
Actual behavior
Provide a description of the actual behavior observed.
This the current behavior:

Only the flag past_due is present
Known workarounds
Provide a description of any known workarounds.
None
Contents of the requirements.txt file:
Provide the requirements.txt file to help us find out module related issues.
# Do not include azure-functions-worker as it may conflict with the Azure Functions platform
# Microsoft function app package
azure-functions
# AAD authetincation and blob storage packages
azure-identity
azure-storage-file-datalake
# Database access packages
sqlalchemy
pyodbc
# Packages for ETL
urllib3
pandas
fastparquet
xlrd
# Debug package
debugpy
# Logging
opencensus-ext-azure
Related information
Provide any related information
- Links to source: Can't provide, corporate content
- Bindings used
-
{
"scriptFile": "__init__.py",
"bindings": [
{
"name": "functimer",
"authLevel": "function",
"direction": "in",
"type": "timerTrigger",
"schedule": "%COFFEE_STOCKS_SCHEDULE%",
"useMonitor": true
}
]
}
Investigative information
Please provide the following:
Repro steps
Provide the steps required to reproduce the problem:
Expected behavior
Provide a description of the expected behavior.
Content expect in mytimer object (sample):
{ "schedule":{ }, "scheduleStatus": { "last":"2016-10-04T10:15:00+00:00", "lastUpdated":"2016-10-04T10:16:00+00:00", "next":"2016-10-04T10:20:00+00:00" }, "isPastDue":false }Actual behavior
Provide a description of the actual behavior observed.
This the current behavior:

Only the flag past_due is present
Known workarounds
Provide a description of any known workarounds.
None
Contents of the requirements.txt file:
Provide the requirements.txt file to help us find out module related issues.
Related information
Provide any related information
{ "scriptFile": "__init__.py", "bindings": [ { "name": "functimer", "authLevel": "function", "direction": "in", "type": "timerTrigger", "schedule": "%COFFEE_STOCKS_SCHEDULE%", "useMonitor": true } ] }