Skip to content
New issue

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

Azure LogicApp recurrence schedule first of month specific time not saved to JSON file #36306

Closed
MWielen opened this issue Aug 1, 2019 · 5 comments

Comments

@MWielen
Copy link

MWielen commented Aug 1, 2019

Hi,

I want to set recurrence schedule to 1st of month starting at 03:00 AM
When I try to save the following JSON only monthDays is saved but hours and minutes is lost when saving.

"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Month",
"interval": 1,
"schedule": {
"minutes":[0],
"hours":[3],
"monthDays": [
1
]
},
"startTime": "2019-08-01T03:00:00Z",
"timeZone": "UTC"
},
"type": "Recurrence"
}
}

Result after saving:

"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Month",
"interval": 1,
"schedule": {
"monthDays": [
1
]
},
"startTime": "2019-08-01T03:00:00Z",
"timeZone": "UTC"
},
"type": "Recurrence"
}
}

What should I do? Thanks!


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

@mikeurnun
Copy link
Contributor

Hi @MWielen - Thank you for your feedback! Since this channel is driving improvements towards MS Docs, were you following specific documentation that your feedback is applicable to? If so, could you provide us with its URL?

@MWielen
Copy link
Author

MWielen commented Aug 5, 2019

Hi @mike-urnun-msft, please see the following url:
#26707

@mikeurnun
Copy link
Contributor

mikeurnun commented Aug 8, 2019

@MWielen There's currently a bug between Designer and Code views where the use of advanced scheduling set in Code view such as yours wouldn't be preserved when you switch to Designer and save your Logic Apps. As such, we recommend you save your changes in your Code view and not switch to the Designer view.

Below works for me for your scenario:

"Recurrence": {
    "recurrence": {
        "frequency": "Month",
        "interval": 1,
        "schedule": {
            "hours": [
                3
            ],
            "minutes": [
                0
            ],
            "monthDays": [
                1
            ]
        },
        "timeZone": "Pacific Standard Time"
    },
    "type": "Recurrence"
}

Since there aren't any changes to be made on this documentation, we will now proceed to close this thread. If there are further questions regarding this matter, please reopen it and we will gladly continue the discussion.

@ranmax123
Copy link

Can we fix this pls? This bug is still there..

@ecfan
Copy link
Contributor

ecfan commented Sep 30, 2020

Hi @ranmax123,

Thanks for your feedback! For these issues, please let the engineering team know by posting in the Logic Apps user feedback site:

https://feedback.azure.com/forums/287593-logic-apps?category_id=152859

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants