RejectedSoftware Forums

Sign up

MacOs Exception on start: std.json.JSONException@std/json.d(155): JSONValue is not a string

Hello, i try to build minimal app on MacOs:

import vibe.core.core; // this import cause the issue
import std.stdio;
void main()
{
    written("hi");
}

App is immediately finished with Exception:

Running ./test_app
std.json.JSONException@std/json.d(155): JSONValue is not a string
Program exited with code 1

Compile with dmd 2.084, try with vibe-d versions 0.83, 0.84, 0.85-beta.1

Re: MacOs Exception on start: std.json.JSONException@std/json.d(155): JSONValue is not a string

std.json.JSONException@std/json.d(155): JSONValue is not a string
Program exited with code 1

By unknown reason my /etc/vibe/vibe.conf file contains follow data:

{
	"uid": 70,
	"gid": 70
}

I just remove this file, it solve this issue.