How to fix: Error (use-package): org-projectile :config: Symbol’s function definition is void: org-projectile:per-repo - spacemacs

Running spacemacs 0.200.9#25.1.1
Everytime I start spacemacs I get the following error and not sure how to resolve it.
Error (use-package): org-projectile :config: Symbol’s function definition is void: org-projectile:per-repo
Tried googling the issue and some suggest to switch to the dev branch which I don't know how to do.
Thanks

It appears to be a known issue according to the #pmilosev
Thanks for pointing it out.

Related

Can you specify why ggsave function is not working?

I have run a meta-analysis in metafor and created a forest plot.
I then tried to save this, using ggsave, as below:
ggsave("../Desktop/ASPD_META_ANALYSIS_LAPTOP/CVR.png")
But I get the error:
Error in grDevices::dev.off() : QuartzBitmap_Output - unable to open
file '../Desktop/ASPD_META_ANALYSIS_LAPTOP/CVR.png'
Can someone please advise? I need a high res version of this image.
Try using
ggsave("./Desktop/ASPD_META_ANALYSIS_LAPTOP/CVR.png")
with just one point . before /Desktop

Error when trying to create a project under a GitLab group

I just discovered GitLab's groups and decided that it would be ideal for the kind of work I am doing. I created a private group and am getting the following error when I try to create a project under it:
The form contains the following error:
PG::QueryCanceled: ERROR: canceling statement due to statement timeout CONTEXT: while rechecking updated tuple (0,187) in relation "site_statistics" : UPDATE "site_statistics" SET "repositories_count" = "repositories_count"+1
I attempted to do the same in a new subgroup; however, I still get the same error. I must add that I am not using a paid plan of GitLab.
Thank you.
I have the same issue. I think only thing that we can to do is to wait until this error will fix.
Found this issue page: https://gitlab.com/gitlab-org/gitlab-ce/issues/53778

grammar.y error happended when compiled Cobalt

When compile Cobalt, the following error happend, is there anyone who knows why?
It said the 'ShadowType' is not a class or namespace in grammy.y:3421, I did not know what is used for grammy.y, and try to trace and modify the code, it does not work.
grammar.y error details
Your issue is that C++ version before C++0x does not support ShadowType::kBoxShadow(member in enum type) use at all, you can change the cflags_cc from "-std=gnu++98" to "-std=gnu++0x"in third_party/starboard/linux/shared/gyp_configuration.gypi, and try again.

jackson2.2.0 can not work on android2.2

When using jackson2.2.0 on android2.2(API8), I got this error:
Could not find class java.util.concurrent.ConcurrentNavigableMap, referenced from method com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.<clinit>
I've tested my code on android2.3.3(API10) and android4.0.3(API15), it both works.
Does any one knows how to fix this? Or I have to use another jason parser instead.
This has already been reported on Jackson's issue tracker. A fix is due in 2.2.2 next week or so.

Append database record in HTML5 builder fatal error

I have some code in my application:
$dmMain->tblOrgList->append();
This code written with auto-completion, so everything is correct.
But, when I trying to execute this code, I have error:
Fatal error: Call to a member function append() on a non-object in
C:\Users\ASAP\Documents\HTML5 Builder\Projects\VitoOrgList\index.php
on line 18
Can somebody advice, where I can find a trouble?
Thanks
I found the solution.
Really, I have no big PHP experience :-]
I just added before calling $dmMain methods in function body:
global $dmMain;