You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote a Teams app which is already published in MS App store.
I deployed and publish same code under a different name to my organization only.
I installed the app and it is working.
I made changes in the typescript code. the changes was to add more logging.
I deployed the app without republishing it.
tried to send a notification and the notification did not reach my Teams chat.
uninstalled and installed the app again
everything is working
Expected behavior
when deploying new code that doesn't affect the manifest/permission/scope ... I expect that the application will work without the need to uninstall and install it again. after all, I did not republish it.
Actual behavior
after deploy of new Azure function, the notifications are not reaching my teams chat.
Error details
none. I am just getting an error that the member is not found.
//findMember is expecting a function that returns a predicate. therefore, we must use async function
//to return a promise that resolves to a predicate (even if the actual operation is synchronous)
async (m) => (m.account.userPrincipalName.toLowerCase() === userEmail.toLowerCase() ||
m.account.email.toLowerCase() === userEmail.toLowerCase())
).catch((error) => {
context.log.error(`Error finding member ${userEmail}:`, error);
});
The text was updated successfully, but these errors were encountered:
Hi lior-lew! Thank you for bringing this issue to our attention. We will investigate and if we require further information we will reach out in one business day. Please use this link to escalate if you don't get replies.
I do not understand why this is to be expected. if It was requiring a new publication or acceptance of new privileges, I would agree. However, if the only operations the customer need to perform is removing and installing of the app, it just causes inconvenience. moreover, if an issue is found with the code and I have many users, all of them will need to reinstall.
Steps to reproduce
Expected behavior
when deploying new code that doesn't affect the manifest/permission/scope ... I expect that the application will work without the need to uninstall and install it again. after all, I did not republish it.
Actual behavior
after deploy of new Azure function, the notifications are not reaching my teams chat.
Error details
none. I am just getting an error that the member is not found.
The text was updated successfully, but these errors were encountered: