It appears to have never really work? At least as far as phabricator.uri (empirically).
Details
Details
- Reviewers
avivey - Commits
- rARC0d0b8abcdd71: set custom arcrc file earlier
removed ~/.arcrc, run call-conduit user.whoami with --arcrc-file and --trace.
set-config, get-config and alias also read and write to the right place now.
Diff Detail
Diff Detail
- Repository
- rARC Arcanist
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
Is it possible you updated, picked up rARC85b6c58, and that fixed it? I don't immediately see why this would fix anything...
Comment Actions
No...
With this change (And no ~/.arcrc):
avive@vm:~/tmp$ echo {} | arc --trace --arcrc-file=./jenkins-arcrc call-conduit user.whoami libphutil loaded from '/home/avive/devtools/libphutil/src'. arcanist loaded from '/home/avive/devtools/arcanist/src'. Config: Reading user configuration file "./jenkins-arcrc"... Config: Did not find system configuration at "/etc/arcconfig". Working Copy: No candidate locations for .arcconfig from this working directory. Working Copy: Path "/tmp" is not in any working copy. >>> [0] <conduit> conduit.connect() <bytes = 507> >>> [1] <http> http://phabricator-app1-uat.snc1/api/conduit.connect <<< [1] <http> 178,642 us <<< [0] <conduit> 178,990 us Waiting for JSON parameters on stdin... >>> [2] <conduit> user.whoami() <bytes = 159> >>> [3] <http> http://phabricator-app1-uat.snc1/api/user.whoami <<< [3] <http> 167,431 us <<< [2] <conduit> 167,734 us {"error":null,"errorMessage":null,"response":{"userName":"Jenkins",......
reset arcanist to f64dee0
avive@vm:~/tmp$ echo {} | arc --trace --arcrc-file=./jenkins-arcrc call-conduit user.whoami libphutil loaded from '/home/avive/devtools/libphutil/src'. arcanist loaded from '/home/avive/devtools/arcanist/src'. Config: Did not find user configuration at "/home/avive/.arcrc". Config: Did not find system configuration at "/etc/arcconfig". Working Copy: No candidate locations for .arcconfig from this working directory. Working Copy: Path "/tmp" is not in any working copy. Usage Exception: This command requires arc to connect to a Phabricator install, but no Phabricator installation is configured. To configure a Phabricator URI: - set a default location with `arc set-config default <uri>`; or - specify '--conduit-uri=uri' explicitly; or - run 'arc' in a working copy with an '.arcconfig'. [2014-05-22 23:09:34] EXCEPTION: (ArcanistUsageException) This command requires arc to connect to a Phabricator install, but no Phabricator installation is configured. To configure a Phabricator URI: - set a default location with `arc set-config default <uri>`; or - specify '--conduit-uri=uri' explicitly; or - run 'arc' in a working copy with an '.arcconfig'. at [/home/avive/devtools/arcanist/scripts/arcanist.php:253]
I'm not exactly sure what's going on. The code doesn't look like this should change anything.
scripts/arcanist.php | ||
---|---|---|
133–137 | This is changed in any case (global_config is arcrc here). I never used it, but I think it's better to load from the provided arcrc than from the user's home. |
src/configuration/ArcanistConfigurationManager.php | ||
---|---|---|
167 | Why not just clear this when setCustom... is called? |
src/configuration/ArcanistConfigurationManager.php | ||
---|---|---|
168 | Oh, I thought get/set were static because of this callsite. I'll fix that. |