Listening on http://127.0.0.1:7440
Warning: Error in isTRUE: object 'lang' not found
[No stack trace available]
I am not sure why. This problem came after I ran:
update.packages(lib.loc = "/data/R-libs/x86_64-pc-linux-gnu-library/3.4/", ask=FALSE, checkBuilt=TRUE)
The object '<name>' not found error usually happens when you have not defined a variable and are then using it in a function. SO try and look through your code and see if there is one called 'lang'. If not, this might be an error within a package you're using and they have to update their code.
#Error
print(myText)
#> Error in print(myText): object 'myText' not found
#Fixed
myText = "hello"
print(myText)
#> [1] "hello"
Thank you for your feedback. The truth is that something so strange is going on. When I move the code to other user in the server and I run it I get the app working just fine. It's incredible strange!
I think this points towards some issue with one of the packages your code is dependent on indeed. Did you try and update all packages the code is using?