I've configured an active Geo replication for Azure SQL DB. I have primary and secondary database without failover policy. Also, I have an App Service which fetches data by using primary database connection string. After doing forced failover, reads are working fine most of time but my inserts/updates were failed.
My question is do I need to update my connection string(pointing to secondary database which has become primary database now due to failover) in the App Service to make insert/update work or is there any other way to make my application work without changing connection string in my app service?
Thanks In Advance!!!
P.S - I am new to Azure.