From fd50b1e05413a69a3ac3e758e418401d5608d616 Mon Sep 17 00:00:00 2001 From: Unbit Date: Tue, 5 Mar 2013 19:23:17 +0100 Subject: [PATCH] allows loading custom classes --- plugins/jvm/jvm_plugin.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/jvm/jvm_plugin.c b/plugins/jvm/jvm_plugin.c index a5fcc8c9..59cf0e25 100644 --- a/plugins/jvm/jvm_plugin.c +++ b/plugins/jvm/jvm_plugin.c @@ -605,6 +605,12 @@ static void uwsgi_jvm_create(void) { usl = usl->next; } + usl = ujvm.classes; + while(usl) { + uwsgi_jvm_class(usl->value); + usl = usl->next; + } + // load request_handlers setup functions int i; for(i=0;i