File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### Miscellaneous
4
4
5
+ * Now the error message that ` rsc stop ` produces when it failed to
6
+ stop an RStudio Server instance running on another machine, will
7
+ report on both the machine where it thinks RStudio is running and
8
+ the current machine.
9
+
5
10
* Now ` rsc ` assert that all files it creates are non-empty. This
6
11
helps troubleshooting obscure errors, e.g. when user runs out of
7
12
disk space.
Original file line number Diff line number Diff line change 63
63
# ## rsc config --full
64
64
# ## rsc log
65
65
# ##
66
- # ## Version: 0.16.0-9004
66
+ # ## Version: 0.16.0-9005
67
67
# ## Copyright: Henrik Bengtsson (2022-2024) and Harry Putnam (2022)
68
68
# ## License: ISC
69
69
@@ -1792,7 +1792,7 @@ elif [[ "${action}" == "stop" ]]; then
1792
1792
lockfile=${workdir} /pid.lock
1793
1793
# # If running, make sure we're stopping from the correct machine
1794
1794
if [[ -f " ${lockfile} " ]] && [[ " $( hostname) " != " $( rserver_hostname) " ]]; then
1795
- error " Stopping the RStudio Server can only be made from the machine ($( rserver_hostname) ) where it was started from"
1795
+ error " Stopping the RStudio Server can only be made from the machine ($( rserver_hostname) ) where it was started from - not from $( hostname ) "
1796
1796
fi
1797
1797
1798
1798
# # Terminate rsession
You can’t perform that action at this time.
0 commit comments