Hello again, thank you very much for the information you provided. I tried again with 19064
records, but I couldn't reproduce it again. I'll add more records and try, but I have one more question.
What kind of result do you get when you run queries that cover the following situations on the database server? https://www.mongodb.com/docs/compass/current/query/skip/
{"skip": 0, "limit": 1, "batchSize": 2, "sort": { "Name": 1 }}
{"skip": 1, "limit": 1, "batchSize": 2, "sort": { "Name": 1 }}
{"skip": 2, "limit": 1, "batchSize": 2, "sort": { "Name": 1 }}
I need this answer to make sure the problem is not data related.
Hi, I've spent quite a bit of time on the problem but I'm having trouble reproducing it. I don't think the problem is related to static-proxy, but to confirm my assumption, I need to know if you are facing the same problem when you send a request to product-service via swagger. Also, I would appreciate it if you could provide a minimally reproducible example for healthier tests.
Yes, it may be enough to change the configuration so that it cannot access the Redis server.
The tenant exists in the database but still we are getting this error. Step 1: The user is using the applicaiton for say 10 minutes. Step2 : After say 10 mins when trying to access the application we get this error, Tenant not found. Step 3: After clearing cache ,it works.
Hello, can we just turn off Redis temporarily? I know the application will be very slow, but we will see if the problem is entirely with Redis.
I see an accepted answer so I'm closing this issue but if you have more questions about it feel free to reopen it.
Thanks for the PR @maliming.
I merged the relevant pull request, it will be available in the next version.
Thanks for the enhancement request @imranStem.
Closing the issue. Feel free to re-open, if you have any further questions on this topic.
Hello,
I am going to explain how to do this step by step below.
1-) Create menu.js
and menu.css
in Themes/Lepton/Component/Header
folder.
$(function () {
var menuItems = document.querySelectorAll('li.has-drop');
Array.prototype.forEach.call(menuItems, function (el, i) {
el.querySelector('a').addEventListener("click", function (event) {
if (this.parentNode.classList.contains("has-drop")) {
this.parentNode.classList.add('open'); // The important thing is that you add this class because we will arrange it accordingly on the css side.
} else {
this.parentNode.className = "has-submenu";
this.setAttribute('aria-expanded', "false");
}
event.preventDefault();
return false;
});
});
});
.lp-topmenu .lp-sidebar .lp-sidebar-wrapper nav ul li.open {
background: rgba(0, 0, 0, 0.1);
}
.lp-topmenu .lp-sidebar .lp-sidebar-wrapper nav ul li.open > ul {
display: block !important;
}
.lp-topmenu .lp-sidebar .lp-sidebar-wrapper nav ul li.open .lp-icon {
color: #feba57;
}
.lp-topmenu .lp-sidebar .lp-sidebar-wrapper nav ul li.open a {
color: #000000;
}
2-) Finally, add the following code to the ConfigureServices
method of MyProjectNameWebPublicModule
.
Configure<AbpBundlingOptions>(options =>
{
options.ScriptBundles
.Configure(
StandardBundles.Scripts.Global,
bundleConfig =>
{
bundleConfig.AddFiles("/Themes/Lepton/Components/Header/menu.js");
});
options.StyleBundles
.Configure(
StandardBundles.Styles.Global,
bundleConfig => { bundleConfig.AddFiles("/Themes/Lepton/Components/Header/menu.css");
});
});
Got it, I'm going to add a module to the sample application you provided and try to reproduce the problem.
Can you provide an online website?
Hi again, sorry but I can't reproduce the problem. After running the project, I created a tenant and logged in to the application with that tenant's admin user, then I waited for 10 minutes, but I could not see a problem. Is there something I missed? Please guide me so that I can reproduce the error.